From 5d20ebe24b72a3b77048ca46f16f329b942c5cc9 Mon Sep 17 00:00:00 2001 From: laschweinski Date: Wed, 17 Aug 2011 11:18:58 +0800 Subject: [PATCH 01/31] modified: HelloWorld/AppDelegate.cpp modified: HelloWorld/HelloWorldScene.cpp modified: cocos2dx/cocoa/CCNS.cpp modified: cocos2dx/include/CCActionInstant.h modified: cocos2dx/misc_nodes/CCRenderTexture.cpp modified: cocos2dx/particle_nodes/CCParticleSystemQuad.cpp modified: cocos2dx/platform/CCAccelerometer_platform.h modified: cocos2dx/platform/CCApplication_platform.h modified: cocos2dx/platform/CCArchOptimalParticleSystem.h modified: cocos2dx/platform/CCCommon.cpp modified: cocos2dx/platform/CCEGLView_platform.h modified: cocos2dx/platform/CCGL.cpp modified: cocos2dx/platform/CCGL.h modified: cocos2dx/platform/CCImage.cpp modified: cocos2dx/platform/CCPlatformConfig.h modified: cocos2dx/platform/CCPlatformMacros.h modified: cocos2dx/platform/CCSAXParser.h modified: cocos2dx/platform/CCStdC.h modified: cocos2dx/support/CCUserDefault.cpp modified: cocos2dx/support/data_support/ccCArray.h modified: tests/AppDelegate.cpp deleted: tests/Res/music.mid modified: tests/tests/controller.cpp modified: tests/tests/tests.h HelloWorld/Linux/ cocos2dx/.settings/ cocos2dx/platform/Linux/ tests/test.linux/ --- HelloWorld/AppDelegate.cpp | 79 +++--- HelloWorld/HelloWorldScene.cpp | 4 +- cocos2dx/cocoa/CCNS.cpp | 1 + cocos2dx/include/CCActionInstant.h | 3 +- cocos2dx/misc_nodes/CCRenderTexture.cpp | 2 +- .../particle_nodes/CCParticleSystemQuad.cpp | 6 +- cocos2dx/platform/CCAccelerometer_platform.h | 2 + cocos2dx/platform/CCApplication_platform.h | 2 + .../platform/CCArchOptimalParticleSystem.h | 3 +- cocos2dx/platform/CCCommon.cpp | 37 ++- cocos2dx/platform/CCEGLView_platform.h | 2 + cocos2dx/platform/CCGL.cpp | 2 + cocos2dx/platform/CCGL.h | 71 ++++- cocos2dx/platform/CCImage.cpp | 8 +- cocos2dx/platform/CCPlatformConfig.h | 12 + cocos2dx/platform/CCPlatformMacros.h | 4 + cocos2dx/platform/CCSAXParser.h | 5 +- cocos2dx/platform/CCStdC.h | 248 +++++++++--------- cocos2dx/support/CCUserDefault.cpp | 10 +- cocos2dx/support/data_support/ccCArray.h | 5 +- tests/AppDelegate.cpp | 23 +- tests/tests/controller.cpp | 14 +- tests/tests/tests.h | 10 +- 23 files changed, 359 insertions(+), 194 deletions(-) diff --git a/HelloWorld/AppDelegate.cpp b/HelloWorld/AppDelegate.cpp index 75804b9b7e..80fd446ce8 100644 --- a/HelloWorld/AppDelegate.cpp +++ b/HelloWorld/AppDelegate.cpp @@ -3,38 +3,34 @@ #include "cocos2d.h" #include "HelloWorldScene.h" +#include "CCEGLView.h" + USING_NS_CC; -AppDelegate::AppDelegate() -{ +AppDelegate::AppDelegate() { } -AppDelegate::~AppDelegate() -{ +AppDelegate::~AppDelegate() { } -bool AppDelegate::initInstance() -{ - bool bRet = false; - do - { +bool AppDelegate::initInstance() { + bool bRet = false; + do { #if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) - // Initialize OpenGLView instance, that release by CCDirector when application terminate. - // The HelloWorld is designed as HVGA. - CCEGLView * pMainWnd = new CCEGLView(); - CC_BREAK_IF(! pMainWnd - || ! pMainWnd->Create(TEXT("cocos2d: Hello World"), 480, 320)); + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView * pMainWnd = new CCEGLView(); + CC_BREAK_IF(! pMainWnd + || ! pMainWnd->Create(TEXT("cocos2d: Hello World"), 480, 320)); #endif // CC_PLATFORM_WIN32 - #if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) - // OpenGLView initialized in testsAppDelegate.mm on ios platform, nothing need to do here. + // OpenGLView initialized in testsAppDelegate.mm on ios platform, nothing need to do here. #endif // CC_PLATFORM_IOS - #if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) // OpenGLView initialized in HelloWorld/android/jni/helloworld/main.cpp @@ -45,37 +41,44 @@ bool AppDelegate::initInstance() // cocos2d::CCFileUtils::setResourcePath("/sdcard"); #endif // CC_PLATFORM_ANDROID - #if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) - // Initialize OpenGLView instance, that release by CCDirector when application terminate. - // The HelloWorld is designed as HVGA. - CCEGLView* pMainWnd = new CCEGLView(this); - CC_BREAK_IF(! pMainWnd || ! pMainWnd->Create(320,480, WM_WINDOW_ROTATE_MODE_CW)); + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView* pMainWnd = new CCEGLView(this); + CC_BREAK_IF(! pMainWnd || ! pMainWnd->Create(320,480, WM_WINDOW_ROTATE_MODE_CW)); #ifndef _TRANZDA_VM_ - // on wophone emulator, we copy resources files to Work7/NEWPLUS/TDA_DATA/Data/ folder instead of zip file - cocos2d::CCFileUtils::setResource("HelloWorld.zip"); + // on wophone emulator, we copy resources files to Work7/NEWPLUS/TDA_DATA/Data/ folder instead of zip file + cocos2d::CCFileUtils::setResource("HelloWorld.zip"); #endif #endif // CC_PLATFORM_WOPHONE - #if (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) // MaxAksenov said it's NOT a very elegant solution. I agree, haha CCDirector::sharedDirector()->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); #endif - bRet = true; - } while (0); - return bRet; +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView * pMainWnd = new CCEGLView(); + CC_BREAK_IF(! pMainWnd + || ! pMainWnd->Create("cocos2d: Hello World", 800, 480,480, 320)); + +#endif // CC_PLATFORM_LINUX + bRet = true; + } while (0); + return bRet; } -bool AppDelegate::applicationDidFinishLaunching() -{ +bool AppDelegate::applicationDidFinishLaunching() { // initialize director CCDirector *pDirector = CCDirector::sharedDirector(); - pDirector->setOpenGLView(&CCEGLView::sharedOpenGLView()); - // enable High Resource Mode(2x, such as iphone4) and maintains low resource on other devices. + pDirector->setOpenGLView(&CCEGLView::sharedOpenGLView()); + + // enable High Resource Mode(2x, such as iphone4) and maintains low resource on other devices. // pDirector->enableRetinaDisplay(true); // turn on display FPS @@ -96,19 +99,17 @@ bool AppDelegate::applicationDidFinishLaunching() } // This function will be called when the app is inactive. When comes a phone call,it's be invoked too -void AppDelegate::applicationDidEnterBackground() -{ - CCDirector::sharedDirector()->pause(); +void AppDelegate::applicationDidEnterBackground() { + CCDirector::sharedDirector()->pause(); // if you use SimpleAudioEngine, it must be pause // SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); } // this function will be called when the app is active again -void AppDelegate::applicationWillEnterForeground() -{ - CCDirector::sharedDirector()->resume(); - +void AppDelegate::applicationWillEnterForeground() { + CCDirector::sharedDirector()->resume(); + // if you use SimpleAudioEngine, it must resume here // SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); } diff --git a/HelloWorld/HelloWorldScene.cpp b/HelloWorld/HelloWorldScene.cpp index 76d2dbbd3d..7a11f93cc5 100644 --- a/HelloWorld/HelloWorldScene.cpp +++ b/HelloWorld/HelloWorldScene.cpp @@ -49,13 +49,13 @@ bool HelloWorld::init() // add a label shows "Hello World" // create and initialize a label - CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello World", "Thonburi", 34); + CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello\nWorld", CCSize(400,100), CCTextAlignmentRight,"Materhorn.", 34); // ask director the window size CCSize size = CCDirector::sharedDirector()->getWinSize(); // position the label on the center of the screen - pLabel->setPosition( ccp(size.width / 2, size.height - 20) ); + pLabel->setPosition( ccp(size.width / 2, size.height - 200) ); // add the label as a child to this layer this->addChild(pLabel, 1); diff --git a/cocos2dx/cocoa/CCNS.cpp b/cocos2dx/cocoa/CCNS.cpp index 7e74974f3f..a5ead7b8ac 100644 --- a/cocos2dx/cocoa/CCNS.cpp +++ b/cocos2dx/cocoa/CCNS.cpp @@ -24,6 +24,7 @@ THE SOFTWARE. #include "CCNS.h" #include #include +#include #include typedef std::vector strArray; diff --git a/cocos2dx/include/CCActionInstant.h b/cocos2dx/include/CCActionInstant.h index 1057906184..0ec71c2a3c 100644 --- a/cocos2dx/include/CCActionInstant.h +++ b/cocos2dx/include/CCActionInstant.h @@ -174,8 +174,9 @@ namespace cocos2d { public: CCCallFunc() : m_pSelectorTarget(NULL) - , m_pCallFunc(NULL) , m_scriptFuncName("") + , m_pCallFunc(NULL) + { } virtual ~CCCallFunc() diff --git a/cocos2dx/misc_nodes/CCRenderTexture.cpp b/cocos2dx/misc_nodes/CCRenderTexture.cpp index d233ec9d67..d9bb1237f1 100644 --- a/cocos2dx/misc_nodes/CCRenderTexture.cpp +++ b/cocos2dx/misc_nodes/CCRenderTexture.cpp @@ -109,7 +109,7 @@ bool CCRenderTexture::initWithWidthAndHeight(int w, int h, CCTexture2DPixelForma w *= (int)CC_CONTENT_SCALE_FACTOR(); h *= (int)CC_CONTENT_SCALE_FACTOR(); - glGetIntegerv(GL_FRAMEBUFFER_BINDING_OES, &m_nOldFBO); + glGetIntegerv(GL_FRAMEBUFFER_BINDING, &m_nOldFBO); // textures must be power of two squared unsigned int powW = ccNextPOT(w); diff --git a/cocos2dx/particle_nodes/CCParticleSystemQuad.cpp b/cocos2dx/particle_nodes/CCParticleSystemQuad.cpp index 490a790603..790317f03e 100644 --- a/cocos2dx/particle_nodes/CCParticleSystemQuad.cpp +++ b/cocos2dx/particle_nodes/CCParticleSystemQuad.cpp @@ -67,13 +67,15 @@ bool CCParticleSystemQuad::initWithTotalParticles(unsigned int numberOfParticles this->initIndices(); #if CC_USES_VBO + glEnable(GL_VERTEX_ARRAY); + // create the VBO buffer glGenBuffers(1, &m_uQuadsID); // initial binding glBindBuffer(GL_ARRAY_BUFFER, m_uQuadsID); - glBufferData(GL_ARRAY_BUFFER, sizeof(m_pQuads[0])*m_uTotalParticles, m_pQuads, GL_DYNAMIC_DRAW); - glBindBuffer(GL_ARRAY_BUFFER, 0); + glBufferData(GL_ARRAY_BUFFER, sizeof(m_pQuads[0])*m_uTotalParticles, m_pQuads, GL_DYNAMIC_DRAW); + glBindBuffer(GL_ARRAY_BUFFER, 0); #endif return true; } diff --git a/cocos2dx/platform/CCAccelerometer_platform.h b/cocos2dx/platform/CCAccelerometer_platform.h index d4a921798e..cecd502590 100644 --- a/cocos2dx/platform/CCAccelerometer_platform.h +++ b/cocos2dx/platform/CCAccelerometer_platform.h @@ -36,6 +36,8 @@ THE SOFTWARE. #include "ios/CCAccelerometer_ios.h" #elif (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) #include "airplay/CCAccelerometer_airplay.h" +#elif (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + #include "Linux/CCAccelerometer_linux.h" #else #error #endif diff --git a/cocos2dx/platform/CCApplication_platform.h b/cocos2dx/platform/CCApplication_platform.h index 6da181b9f0..445aedb3a1 100644 --- a/cocos2dx/platform/CCApplication_platform.h +++ b/cocos2dx/platform/CCApplication_platform.h @@ -37,6 +37,8 @@ THE SOFTWARE. #include "wophone/CCApplication_wophone.h" #elif (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) #include "airplay/CCApplication_airplay.h" +#elif (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + #include "Linux/CCAplication_linux.h" #else #error #endif diff --git a/cocos2dx/platform/CCArchOptimalParticleSystem.h b/cocos2dx/platform/CCArchOptimalParticleSystem.h index bf60e97752..c9fc6766ee 100644 --- a/cocos2dx/platform/CCArchOptimalParticleSystem.h +++ b/cocos2dx/platform/CCArchOptimalParticleSystem.h @@ -33,7 +33,8 @@ (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || \ (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || \ (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) || \ - (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) + (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || \ + (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) #include "CCParticleSystemQuad.h" #define ARCH_OPTIMAL_PARTICLE_SYSTEM CCParticleSystemQuad diff --git a/cocos2dx/platform/CCCommon.cpp b/cocos2dx/platform/CCCommon.cpp index e9f212515c..08e1028631 100644 --- a/cocos2dx/platform/CCCommon.cpp +++ b/cocos2dx/platform/CCCommon.cpp @@ -185,6 +185,37 @@ void CCMessageBox(const char * pszMsg, const char * pszTitle) NS_CC_END; #endif // CC_PLATFORM_ANDROID +/**************************************************** + * linux + ***************************************************/ +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + +#include +#include "CCStdC.h" + +NS_CC_BEGIN; + +void CCLog(const char * pszFormat, ...) +{ + char buf[MAX_LEN]; + + va_list args; + va_start(args, pszFormat); + vsprintf(buf, pszFormat, args); + va_end(args); + + //TODO will copy how orx do + printf(buf); +} + +// airplay no MessageBox, use CCLog instead +void CCMessageBox(const char * pszMsg, const char * pszTitle) +{ + CCLog("%s: %s", pszTitle, pszMsg); +} + +NS_CC_END; +#endif /**************************************************** * airplay ***************************************************/ @@ -201,12 +232,12 @@ NS_CC_BEGIN; void CCLog(const char * pszFormat, ...) { char buf[MAX_LEN]; - + va_list args; - va_start(args, pszFormat); + va_start(args, pszFormat); vsprintf(buf, pszFormat, args); va_end(args); - + IwTrace(GAME, (buf)); } diff --git a/cocos2dx/platform/CCEGLView_platform.h b/cocos2dx/platform/CCEGLView_platform.h index 4fce108e33..6184c0efe1 100644 --- a/cocos2dx/platform/CCEGLView_platform.h +++ b/cocos2dx/platform/CCEGLView_platform.h @@ -37,6 +37,8 @@ THE SOFTWARE. #include "ios/CCEGLView_ios.h" #elif (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) #include "airplay/CCEGLView_airplay.h" +#elif (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + #include "Linux/CCEGLView_linux.h" #else #error #endif diff --git a/cocos2dx/platform/CCGL.cpp b/cocos2dx/platform/CCGL.cpp index 85145e935e..3e1fe9c7cc 100644 --- a/cocos2dx/platform/CCGL.cpp +++ b/cocos2dx/platform/CCGL.cpp @@ -36,6 +36,8 @@ void gluPerspective(GLfloat fovy, GLfloat aspect, GLfloat zNear, GLfloat zFar) xmin = ymin * aspect; xmax = ymax * aspect; + + glFrustumf(xmin, xmax, ymin, ymax, zNear, zFar); diff --git a/cocos2dx/platform/CCGL.h b/cocos2dx/platform/CCGL.h index 2352994a6e..d22fbd5d64 100644 --- a/cocos2dx/platform/CCGL.h +++ b/cocos2dx/platform/CCGL.h @@ -69,6 +69,71 @@ THE SOFTWARE. #include #endif +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) +#include +#include "GL/glext.h" + +//declare here while define in CCEGLView_linux.cpp +extern PFNGLGENFRAMEBUFFERSEXTPROC glGenFramebuffersEXT; +extern PFNGLDELETEFRAMEBUFFERSEXTPROC glDeleteFramebuffersEXT; +extern PFNGLBINDFRAMEBUFFEREXTPROC glBindFramebufferEXT; +extern PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC glCheckFramebufferStatusEXT; +extern PFNGLFRAMEBUFFERTEXTURE2DEXTPROC glFramebufferTexture2DEXT; +extern PFNGLGENERATEMIPMAPEXTPROC glGenerateMipmapEXT; + +extern PFNGLGENBUFFERSARBPROC glGenBuffersARB; +extern PFNGLBINDBUFFERARBPROC glBindBufferARB; +extern PFNGLBUFFERDATAARBPROC glBufferDataARB; +extern PFNGLBUFFERSUBDATAARBPROC glBufferSubDataARB; +extern PFNGLDELETEBUFFERSARBPROC glDeleteBuffersARB; + + + + +#undef ccglOrtho +#undef ccglClearDepth +#undef ccglTranslate +#undef ccglGenerateMipmap +#undef ccglGenFramebuffers +#undef ccglBindFramebuffer +#undef ccglFramebufferTexture2D +#undef ccglDeleteFramebuffers +#undef ccglCheckFramebufferStatus + +#undef CC_GL_FRAMEBUFFER +#undef CC_GL_FRAMEBUFFER_BINDING +#undef CC_GL_COLOR_ATTACHMENT0 +#undef CC_GL_FRAMEBUFFER_COMPLETE + +#define ccglOrtho glOrtho +#define ccglClearDepth glClearDepth +#define ccglTranslate glTranslated + +#define ccglGenerateMipmap glGenerateMipmapEXT +#define ccglGenFramebuffers glGenFramebuffersEXT +#define ccglBindFramebuffer glBindFramebufferEXT +#define ccglFramebufferTexture2D glFramebufferTexture2DEXT +#define ccglDeleteFramebuffers glDeleteFramebuffersEXT +#define ccglCheckFramebufferStatus glCheckFramebufferStatusEXT + + +#define glFrustumf glFrustum +#define glGenBuffers glGenBuffersARB +#define glBindBuffer glBindBufferARB +#define glBufferData glBufferDataARB +#define glBufferSubData glBufferSubDataARB +#define glDeleteBuffers glDeleteBuffersARB + +#define CC_GL_FRAMEBUFFER GL_FRAMEBUFFER +#define CC_GL_FRAMEBUFFER_BINDING GL_FRAMEBUFFER_BINDING +#define CC_GL_COLOR_ATTACHMENT0 GL_COLOR_ATTACHMENT0 +#define CC_GL_FRAMEBUFFER_COMPLETE GL_FRAMEBUFFER_COMPLETE + +#define GL_POINT_SPRITE_OES GL_POINT_SPRITE_ARB +#define GL_COORD_REPLACE_OES GL_COORD_REPLACE_ARB +#define GL_POINT_SIZE_ARRAY_OES GL_POINT_SIZE +#endif + #if (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) #include #endif @@ -79,9 +144,11 @@ NS_CC_BEGIN; OpenGL GLU implementation */ +typedef float GLfloat; + /** OpenGL gluLookAt implementation */ -void CC_DLL gluLookAt(GLfloat fEyeX, GLfloat fEyeY, GLfloat fEyeZ, - GLfloat fLookAtX, GLfloat fLookAtY, GLfloat fLookAtZ, +void CC_DLL gluLookAt(GLfloat fEyeX, GLfloat fEyeY, GLfloat fEyeZ, + GLfloat fLookAtX, GLfloat fLookAtY, GLfloat fLookAtZ, GLfloat fUpX, GLfloat fUpY, GLfloat fUpZ); /** OpenGL gluPerspective implementation */ diff --git a/cocos2dx/platform/CCImage.cpp b/cocos2dx/platform/CCImage.cpp index f762c0d7a7..43667541f0 100644 --- a/cocos2dx/platform/CCImage.cpp +++ b/cocos2dx/platform/CCImage.cpp @@ -146,7 +146,13 @@ bool CCImage::_initWithJpgData(void * data, int nSize) jpeg_create_decompress( &cinfo ); /* this makes the library read from infile */ - jpeg_mem_src( &cinfo, (unsigned char *) data, nSize ); + //TODO in some linux release it use libjpeg62 which does not support jpeg_mem_src instead of libjpeg8 +// jpeg_mem_src( &cinfo, (unsigned char *) data, nSize ); + // load memory data as stream + FILE * source = fmemopen(data, nSize, "rb"); + CC_BREAK_IF(!source); + jpeg_stdio_src(&cinfo, source); + fclose(source); /* reading the image header which contains image information */ jpeg_read_header( &cinfo, true ); diff --git a/cocos2dx/platform/CCPlatformConfig.h b/cocos2dx/platform/CCPlatformConfig.h index 5866f616c0..f3ebbcb488 100644 --- a/cocos2dx/platform/CCPlatformConfig.h +++ b/cocos2dx/platform/CCPlatformConfig.h @@ -43,6 +43,7 @@ build for which target platform #define CC_PLATFORM_WOPHONE 3 #define CC_PLATFORM_WIN32 4 #define CC_PLATFORM_AIRPLAY 5 +#define CC_PLATFORM_LINUX 7 // Determine tartet platform by compile environment macro. #define CC_TARGET_PLATFORM CC_PLATFORM_UNKNOWN @@ -80,6 +81,13 @@ build for which target platform #define CC_SUPPORT_UNICODE 0 #endif #endif + +// linux +#if ! CC_TARGET_PLATFORM && defined(LINUX) + #undef CC_TARGET_PLATFORM + #define CC_TARGET_PLATFORM CC_PLATFORM_LINUX +#endif + // airplay #if ! CC_TARGET_PLATFORM && defined(AIRPLAY) #undef CC_TARGET_PLATFORM @@ -114,6 +122,10 @@ build for which target platform #undef CC_TARGET_PLATFORM #define CC_TARGET_PLATFORM CC_PLATFORM_AIRPLAY #endif +#if defined(CC_UNDER_LINUX) +#undef CC_TARGET_PLATFORM +#define CC_TARGET_PLATFORM CC_PLATFORM_LINUX +#endif // Check user assigned supportive of multi-thread #if defined(CC_ENABLE_MULTITHREAD) #undef CC_SUPPORT_MULTITHREAD diff --git a/cocos2dx/platform/CCPlatformMacros.h b/cocos2dx/platform/CCPlatformMacros.h index 113aadb9f6..a293c19b0a 100644 --- a/cocos2dx/platform/CCPlatformMacros.h +++ b/cocos2dx/platform/CCPlatformMacros.h @@ -143,6 +143,10 @@ public: inline void set##funName(varType var){ varName = var; } #define CC_ASSERT(cond) assert(cond) #define CC_UNUSED_PARAM(unusedparam) (void)unusedparam +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) +#undef CC_UNUSED_PARAM +#define CC_UNUSED_PARAM(unusedparam) //unusedparam +#endif // platform depended macros diff --git a/cocos2dx/platform/CCSAXParser.h b/cocos2dx/platform/CCSAXParser.h index 8217d9aed7..c75f0a67ae 100644 --- a/cocos2dx/platform/CCSAXParser.h +++ b/cocos2dx/platform/CCSAXParser.h @@ -33,7 +33,8 @@ NS_CC_BEGIN; #if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) || \ (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || \ (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || \ - (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) + (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || \ + (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) typedef unsigned char CC_XML_CHAR; #elif (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) typedef char CC_XML_CHAR; @@ -67,4 +68,4 @@ public: }; NS_CC_END; -#endif //__CCSAXPARSER_H__ \ No newline at end of file +#endif //__CCSAXPARSER_H__ diff --git a/cocos2dx/platform/CCStdC.h b/cocos2dx/platform/CCStdC.h index c4269bead5..c597f60761 100644 --- a/cocos2dx/platform/CCStdC.h +++ b/cocos2dx/platform/CCStdC.h @@ -1,119 +1,129 @@ -/**************************************************************************** -Copyright (c) 2010 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. -****************************************************************************/ - -#ifndef __CC_STD_C_H__ -#define __CC_STD_C_H__ - -#include "CCPlatformMacros.h" - -#include - -// for math.h on win32 platform -#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) - - #if ! defined(_USE_MATH_DEFINES) - #define _USE_MATH_DEFINES // make M_PI can be use - #endif - - #if ! defined(isnan) - #define isnan _isnan - #endif - -#endif // CC_PLATFORM_WIN32 - -#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE && defined(_TRANZDA_VM_)) - - #if ! defined(_USE_MATH_DEFINES) - #define _USE_MATH_DEFINES // make M_PI can be use - #endif - - #if ! defined(isnan) - #define isnan _isnan - #endif - -#endif // CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE && defined(_TRANZDA_VM_) - -#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) - -#include "TG3.h" - -#endif // CC_PLATFORM_WOPHONE - -#include - -#include -#include -#include -#include -#include - -// for MIN MAX and sys/time.h on win32 platform -#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) - -#define MIN min -#define MAX max - -// Structure timeval has define in winsock.h, include windows.h for it. -#include - -struct timezone -{ - int tz_minuteswest; - int tz_dsttime; -}; - -int CC_DLL gettimeofday(struct timeval *, struct timezone *); - -#endif // CC_PLATFORM_WIN32 - -#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) - -#include - -#ifndef MIN -#define MIN(x,y) (((x) > (y)) ? (y) : (x)) -#endif // MIN - -#ifndef MAX -#define MAX(x,y) (((x) < (y)) ? (y) : (x)) -#endif // MAX - -#endif // CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID - -#if (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) - -#include -#include - -#ifndef MIN -#define MIN(x,y) (((x) > (y)) ? (y) : (x)) -#endif // MIN - -#ifndef MAX -#define MAX(x,y) (((x) < (y)) ? (y) : (x)) -#endif // MAX - -#endif // CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY - -#endif // __CC_STD_C_H__ \ No newline at end of file +/**************************************************************************** +Copyright (c) 2010 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. +****************************************************************************/ + +#ifndef __CC_STD_C_H__ +#define __CC_STD_C_H__ + +#include "CCPlatformMacros.h" + +#include + +// for math.h on win32 platform +#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) + + #if ! defined(_USE_MATH_DEFINES) + #define _USE_MATH_DEFINES // make M_PI can be use + #endif + + #if ! defined(isnan) + #define isnan _isnan + #endif + +#endif // CC_PLATFORM_WIN32 + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE && defined(_TRANZDA_VM_)) + + #if ! defined(_USE_MATH_DEFINES) + #define _USE_MATH_DEFINES // make M_PI can be use + #endif + + #if ! defined(isnan) + #define isnan _isnan + #endif + +#endif // CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE && defined(_TRANZDA_VM_) + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) + +#include "TG3.h" + +#endif // CC_PLATFORM_WOPHONE + +#include + +#include +#include +#include +#include +#include + +// for MIN MAX and sys/time.h on win32 platform +#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) + +#define MIN min +#define MAX max + +// Structure timeval has define in winsock.h, include windows.h for it. +#include + +struct timezone +{ + int tz_minuteswest; + int tz_dsttime; +}; + +int CC_DLL gettimeofday(struct timeval *, struct timezone *); + +#endif // CC_PLATFORM_WIN32 + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + +#include + +#ifndef MIN +#define MIN(x,y) (((x) > (y)) ? (y) : (x)) +#endif // MIN + +#ifndef MAX +#define MAX(x,y) (((x) < (y)) ? (y) : (x)) +#endif // MAX + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + +// some function linux do not have +#define tanf tan +#define sqrtf sqrt +#define cosf cos +#define sinf sin + +#endif + +#endif // CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) + +#include +#include + +#ifndef MIN +#define MIN(x,y) (((x) > (y)) ? (y) : (x)) +#endif // MIN + +#ifndef MAX +#define MAX(x,y) (((x) < (y)) ? (y) : (x)) +#endif // MAX + +#endif // CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY + +#endif // __CC_STD_C_H__ diff --git a/cocos2dx/support/CCUserDefault.cpp b/cocos2dx/support/CCUserDefault.cpp index e217479979..4d95a628c1 100644 --- a/cocos2dx/support/CCUserDefault.cpp +++ b/cocos2dx/support/CCUserDefault.cpp @@ -23,9 +23,15 @@ THE SOFTWARE. ****************************************************************************/ #include "CCUserDefault.h" #include "platform/CCFileUtils.h" - + +//#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) #include -#include +#include +//#else +//#include +//#include +//#endif + // root name of xml #define USERDEFAULT_ROOT_NAME "userDefaultRoot" diff --git a/cocos2dx/support/data_support/ccCArray.h b/cocos2dx/support/data_support/ccCArray.h index dc361faad3..b305dbf8c6 100644 --- a/cocos2dx/support/data_support/ccCArray.h +++ b/cocos2dx/support/data_support/ccCArray.h @@ -38,8 +38,9 @@ THE SOFTWARE. #ifndef CC_ARRAY_H #define CC_ARRAY_H -#include -#include +#include +#include +#include #include "CCObject.h" #include "ccMacros.h" diff --git a/tests/AppDelegate.cpp b/tests/AppDelegate.cpp index 0c5c355899..ff730d1228 100644 --- a/tests/AppDelegate.cpp +++ b/tests/AppDelegate.cpp @@ -2,10 +2,10 @@ #include "cocos2d.h" #include "tests/controller.h" -#include "SimpleAudioEngine.h" +//#include "SimpleAudioEngine.h" USING_NS_CC; -using namespace CocosDenshion; +//using namespace CocosDenshion; AppDelegate::AppDelegate() { @@ -14,7 +14,7 @@ AppDelegate::AppDelegate() AppDelegate::~AppDelegate() { - SimpleAudioEngine::end(); +// SimpleAudioEngine::end(); } bool AppDelegate::initInstance() @@ -63,6 +63,19 @@ bool AppDelegate::initInstance() CCDirector::sharedDirector()->setDeviceOrientation(CCDeviceOrientationLandscapeLeft); #endif +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView * pMainWnd = new CCEGLView(); + CC_BREAK_IF(! pMainWnd + || ! pMainWnd->Create("cocos2d: tests", 800, 480, 480, 320)); + + //set the base resource folder pay attention to add "/" + CCFileUtils::setResourcePath("Res/"); + +#endif // CC_PLATFORM_LINUX + bRet = true; } while (0); return bRet; @@ -101,12 +114,12 @@ bool AppDelegate::applicationDidFinishLaunching() void AppDelegate::applicationDidEnterBackground() { CCDirector::sharedDirector()->pause(); - SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); +// SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); } // this function will be called when the app is active again void AppDelegate::applicationWillEnterForeground() { CCDirector::sharedDirector()->resume(); - SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); +// SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); } diff --git a/tests/tests/controller.cpp b/tests/tests/controller.cpp index 3229ec6331..7ac3598503 100644 --- a/tests/tests/controller.cpp +++ b/tests/tests/controller.cpp @@ -27,7 +27,7 @@ static TestScene* CreateTestScene(int nIdx) case TEST_ROTATE_WORLD: pScene = new RotateWorldTestScene(); break; case TEST_PARTICLE: - pScene = new ParticleTestScene(); break; +// pScene = new ParticleTestScene(); break; case TEST_EASE_ACTIONS: pScene = new EaseActionsTestScene(); break; case TEST_MOTION_STREAK: @@ -54,7 +54,7 @@ static TestScene* CreateTestScene(int nIdx) pScene = new IntervalTestScene(); break; case TEST_CHIPMUNK: #if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY) - pScene = new ChipmunkTestScene(); break; +// pScene = new ChipmunkTestScene(); break; #else #ifdef AIRPLAYUSECHIPMUNK #if (AIRPLAYUSECHIPMUNK == 1) @@ -77,9 +77,9 @@ static TestScene* CreateTestScene(int nIdx) case TEST_TEXTURE2D: pScene = new TextureTestScene(); break; case TEST_BOX2D: - pScene = new Box2DTestScene(); break; +// pScene = new Box2DTestScene(); break; case TEST_BOX2DBED: - pScene = new Box2dTestBedScene(); break; +// pScene = new Box2dTestBedScene(); break; case TEST_EFFECT_ADVANCE: pScene = new EffectAdvanceScene(); break; case TEST_HIRES: @@ -91,14 +91,14 @@ static TestScene* CreateTestScene(int nIdx) case TEST_KEYPAD: pScene = new KeypadTestScene(); break; case TEST_COCOSDENSHION: - pScene = new CocosDenshionTestScene(); break; +// pScene = new CocosDenshionTestScene(); break; case TEST_PERFORMANCE: - pScene = new PerformanceTestScene(); break; +// pScene = new PerformanceTestScene(); break; case TEST_ZWOPTEX: pScene = new ZwoptexTestScene(); break; #if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY) case TEST_CURL: - pScene = new CurlTestScene(); break; +// pScene = new CurlTestScene(); break; case TEST_USERDEFAULT: pScene = new UserDefaultTestScene(); break; #endif diff --git a/tests/tests/tests.h b/tests/tests/tests.h index 3a8e967f18..25479d8eb5 100644 --- a/tests/tests/tests.h +++ b/tests/tests/tests.h @@ -28,16 +28,16 @@ #include "SpriteTest/SpriteTest.h" #include "SchedulerTest/SchedulerTest.h" #include "RenderTextureTest/RenderTextureTest.h" -#include "Box2DTest/Box2dTest.h" -#include "Box2DTestBed/Box2dView.h" +//#include "Box2DTest/Box2dTest.h" +//#include "Box2DTestBed/Box2dView.h" #include "EffectsAdvancedTest/EffectsAdvancedTest.h" #include "HiResTest/HiResTest.h" #include "AccelerometerTest/AccelerometerTest.h" #include "KeypadTest/KeypadTest.h" #include "PerformanceTest/PerformanceTest.h" #include "ZwoptexTest/ZwoptexTest.h" -#include "CocosDenshionTest/CocosDenshionTest.h" -#include "CurlTest/CurlTest.h" +//#include "CocosDenshionTest/CocosDenshionTest.h" +//#include "CurlTest/CurlTest.h" #include "UserDefaultTest/UserDefaultTest.h" #include "DirectorTest/DirectorTest.h" #include "BugsTest/BugsTest.h" @@ -45,7 +45,7 @@ #include "FontTest/FontTest.h" #if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY) - #include "ChipmunkTest/cocos2dChipmunkDemo.h" +// #include "ChipmunkTest/cocos2dChipmunkDemo.h" #else #ifdef AIRPLAYUSECHIPMUNK #if (AIRPLAYUSECHIPMUNK == 1) From dbf3a94200cb744630862fe3073b47ef934a2b1a Mon Sep 17 00:00:00 2001 From: laschweinski Date: Wed, 17 Aug 2011 18:09:51 +0800 Subject: [PATCH 02/31] modified: HelloWorld/HelloWorldScene.cpp modified: tests/AppDelegate.cpp HelloWorld/Linux/ cocos2dx/.settings/ cocos2dx/platform/Linux/ tests/test.linux/ --- HelloWorld/HelloWorldScene.cpp | 2 +- tests/AppDelegate.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HelloWorld/HelloWorldScene.cpp b/HelloWorld/HelloWorldScene.cpp index 7a11f93cc5..794823e80f 100644 --- a/HelloWorld/HelloWorldScene.cpp +++ b/HelloWorld/HelloWorldScene.cpp @@ -49,7 +49,7 @@ bool HelloWorld::init() // add a label shows "Hello World" // create and initialize a label - CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello\nWorld", CCSize(400,100), CCTextAlignmentRight,"Materhorn.", 34); + CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello\nWorld", CCSize(0,0), CCTextAlignmentCenter,"Materhorn.", 34); // ask director the window size CCSize size = CCDirector::sharedDirector()->getWinSize(); diff --git a/tests/AppDelegate.cpp b/tests/AppDelegate.cpp index ff730d1228..5611bea08d 100644 --- a/tests/AppDelegate.cpp +++ b/tests/AppDelegate.cpp @@ -95,7 +95,7 @@ bool AppDelegate::applicationDidFinishLaunching() // pDirector->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); // turn on display FPS - pDirector->setDisplayFPS(true); +// pDirector->setDisplayFPS(true); // set FPS. the default value is 1.0/60 if you don't call this pDirector->setAnimationInterval(1.0 / 60); From e3ea2bd136229fb7aea37a7216493f626cb698ae Mon Sep 17 00:00:00 2001 From: laschweinski Date: Thu, 18 Aug 2011 22:11:19 +0800 Subject: [PATCH 03/31] modified: tests/tests/CocosDenshionTest/CocosDenshionTest.cpp modified: tests/tests/controller.cpp modified: tests/tests/tests.h CocosDenshion/Linux/ CocosDenshion/third_party/ HelloWorld/Linux/ cocos2dx/.settings/ cocos2dx/platform/Linux/ tests/test.linux/ --- .../tests/CocosDenshionTest/CocosDenshionTest.cpp | 15 ++++++++------- tests/tests/controller.cpp | 2 +- tests/tests/tests.h | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/tests/tests/CocosDenshionTest/CocosDenshionTest.cpp b/tests/tests/CocosDenshionTest/CocosDenshionTest.cpp index 61035d2b08..78bd9279f1 100644 --- a/tests/tests/CocosDenshionTest/CocosDenshionTest.cpp +++ b/tests/tests/CocosDenshionTest/CocosDenshionTest.cpp @@ -67,8 +67,8 @@ m_nSoundId(0) setIsTouchEnabled(true); // preload background music and effect - SimpleAudioEngine::sharedEngine()->preloadBackgroundMusic(MUSIC_FILE); - SimpleAudioEngine::sharedEngine()->preloadEffect(EFFECT_FILE); + SimpleAudioEngine::sharedEngine()->preloadBackgroundMusic(std::string(CCFileUtils::fullPathFromRelativePath(MUSIC_FILE)).c_str()); + SimpleAudioEngine::sharedEngine()->preloadEffect(std::string(CCFileUtils::fullPathFromRelativePath(EFFECT_FILE)).c_str()); // set default volume SimpleAudioEngine::sharedEngine()->setEffectsVolume(0.5); @@ -96,7 +96,8 @@ void CocosDenshionTest::menuCallback(CCObject * pSender) { // play background music case 0: - SimpleAudioEngine::sharedEngine()->playBackgroundMusic(MUSIC_FILE, true); + + SimpleAudioEngine::sharedEngine()->playBackgroundMusic(std::string(CCFileUtils::fullPathFromRelativePath(MUSIC_FILE)).c_str(), true); break; // stop background music case 1: @@ -127,11 +128,11 @@ void CocosDenshionTest::menuCallback(CCObject * pSender) break; // play effect case 6: - m_nSoundId = SimpleAudioEngine::sharedEngine()->playEffect(EFFECT_FILE); + m_nSoundId = SimpleAudioEngine::sharedEngine()->playEffect(std::string(CCFileUtils::fullPathFromRelativePath(EFFECT_FILE)).c_str()); break; // play effect case 7: - m_nSoundId = SimpleAudioEngine::sharedEngine()->playEffect(EFFECT_FILE, true); + m_nSoundId = SimpleAudioEngine::sharedEngine()->playEffect(std::string(CCFileUtils::fullPathFromRelativePath(EFFECT_FILE)).c_str(), true); break; // stop effect case 8: @@ -139,7 +140,7 @@ void CocosDenshionTest::menuCallback(CCObject * pSender) break; // unload effect case 9: - SimpleAudioEngine::sharedEngine()->unloadEffect(EFFECT_FILE); + SimpleAudioEngine::sharedEngine()->unloadEffect(std::string(CCFileUtils::fullPathFromRelativePath(EFFECT_FILE)).c_str()); break; // add bakcground music volume case 10: @@ -205,4 +206,4 @@ void CocosDenshionTestScene::runThisTest() pLayer->autorelease(); CCDirector::sharedDirector()->replaceScene(this); -} \ No newline at end of file +} diff --git a/tests/tests/controller.cpp b/tests/tests/controller.cpp index 7ac3598503..f6c8f87701 100644 --- a/tests/tests/controller.cpp +++ b/tests/tests/controller.cpp @@ -91,7 +91,7 @@ static TestScene* CreateTestScene(int nIdx) case TEST_KEYPAD: pScene = new KeypadTestScene(); break; case TEST_COCOSDENSHION: -// pScene = new CocosDenshionTestScene(); break; + pScene = new CocosDenshionTestScene(); break; case TEST_PERFORMANCE: // pScene = new PerformanceTestScene(); break; case TEST_ZWOPTEX: diff --git a/tests/tests/tests.h b/tests/tests/tests.h index 25479d8eb5..cbf1d7522a 100644 --- a/tests/tests/tests.h +++ b/tests/tests/tests.h @@ -36,7 +36,7 @@ #include "KeypadTest/KeypadTest.h" #include "PerformanceTest/PerformanceTest.h" #include "ZwoptexTest/ZwoptexTest.h" -//#include "CocosDenshionTest/CocosDenshionTest.h" +#include "CocosDenshionTest/CocosDenshionTest.h" //#include "CurlTest/CurlTest.h" #include "UserDefaultTest/UserDefaultTest.h" #include "DirectorTest/DirectorTest.h" From ad305648c04a71c72bce82ee5ed7c67217164bc0 Mon Sep 17 00:00:00 2001 From: laschweinski Date: Fri, 19 Aug 2011 13:07:50 +0800 Subject: [PATCH 04/31] modified: cocos2dx/misc_nodes/CCRenderTexture.cpp modified: cocos2dx/platform/CCGL.h modified: cocos2dx/platform/CCImage.cpp CocosDenshion/Linux/ CocosDenshion/third_party/ HelloWorld/Linux/ cocos2dx/.settings/ cocos2dx/platform/Linux/ tests/test.linux/ --- cocos2dx/misc_nodes/CCRenderTexture.cpp | 2 +- cocos2dx/platform/CCGL.h | 2 +- cocos2dx/platform/CCImage.cpp | 5 ++++- tests/test.android/build_native.sh | 7 ++++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/cocos2dx/misc_nodes/CCRenderTexture.cpp b/cocos2dx/misc_nodes/CCRenderTexture.cpp index d9bb1237f1..a10c74fa85 100644 --- a/cocos2dx/misc_nodes/CCRenderTexture.cpp +++ b/cocos2dx/misc_nodes/CCRenderTexture.cpp @@ -109,7 +109,7 @@ bool CCRenderTexture::initWithWidthAndHeight(int w, int h, CCTexture2DPixelForma w *= (int)CC_CONTENT_SCALE_FACTOR(); h *= (int)CC_CONTENT_SCALE_FACTOR(); - glGetIntegerv(GL_FRAMEBUFFER_BINDING, &m_nOldFBO); + glGetIntegerv(CC_GL_FRAMEBUFFER_BINDING, &m_nOldFBO); // textures must be power of two squared unsigned int powW = ccNextPOT(w); diff --git a/cocos2dx/platform/CCGL.h b/cocos2dx/platform/CCGL.h index d22fbd5d64..098070fc11 100644 --- a/cocos2dx/platform/CCGL.h +++ b/cocos2dx/platform/CCGL.h @@ -144,7 +144,7 @@ NS_CC_BEGIN; OpenGL GLU implementation */ -typedef float GLfloat; +//typedef float GLfloat; /** OpenGL gluLookAt implementation */ void CC_DLL gluLookAt(GLfloat fEyeX, GLfloat fEyeY, GLfloat fEyeZ, diff --git a/cocos2dx/platform/CCImage.cpp b/cocos2dx/platform/CCImage.cpp index 43667541f0..284ac85076 100644 --- a/cocos2dx/platform/CCImage.cpp +++ b/cocos2dx/platform/CCImage.cpp @@ -147,12 +147,15 @@ bool CCImage::_initWithJpgData(void * data, int nSize) /* this makes the library read from infile */ //TODO in some linux release it use libjpeg62 which does not support jpeg_mem_src instead of libjpeg8 -// jpeg_mem_src( &cinfo, (unsigned char *) data, nSize ); // load memory data as stream +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) FILE * source = fmemopen(data, nSize, "rb"); CC_BREAK_IF(!source); jpeg_stdio_src(&cinfo, source); fclose(source); +#else + jpeg_mem_src( &cinfo, (unsigned char *) data, nSize ); +#endif /* reading the image header which contains image information */ jpeg_read_header( &cinfo, true ); diff --git a/tests/test.android/build_native.sh b/tests/test.android/build_native.sh index 9142cf5722..555230edd8 100644 --- a/tests/test.android/build_native.sh +++ b/tests/test.android/build_native.sh @@ -1,6 +1,7 @@ +#!/bin/bash # set params -ANDROID_NDK_ROOT=/cygdrive/e/android-ndk-r5 -COCOS2DX_ROOT=/cygdrive/d/Work7/cocos2d-x +ANDROID_NDK_ROOT=/home/laschweinski/android/android-ndk-r5/ +COCOS2DX_ROOT=/home/laschweinski/git/cocos2d-x TESTS_ROOT=$COCOS2DX_ROOT/tests/test.android # make sure assets is exist @@ -25,7 +26,7 @@ done # remove test_image_rgba4444.pvr.gz rm -f $TESTS_ROOT/assets/Images/test_image_rgba4444.pvr.gz -# build + #build pushd $ANDROID_NDK_ROOT ./ndk-build -C $TESTS_ROOT $* popd From 60e794fcc895ca6548f96949f028b91bb3884eaf Mon Sep 17 00:00:00 2001 From: laschweinski Date: Fri, 19 Aug 2011 14:43:19 +0800 Subject: [PATCH 06/31] add files include test and cocosDenshion --- CocosDenshion/Linux/AudioPlayer.h | 112 +++ CocosDenshion/Linux/FmodAudioPlayer.cpp | 345 ++++++++ CocosDenshion/Linux/FmodAudioPlayer.h | 140 ++++ CocosDenshion/Linux/SimpleAudioEngine.cpp | 137 ++++ CocosDenshion/third_party/fmod/Makefile | 65 ++ .../fmod/api/inc/fmod.h.REMOVED.git-id | 1 + .../third_party/fmod/api/inc/fmod.hpp | 607 ++++++++++++++ .../third_party/fmod/api/inc/fmod_codec.h | 159 ++++ .../third_party/fmod/api/inc/fmod_dsp.h | 752 ++++++++++++++++++ .../third_party/fmod/api/inc/fmod_errors.h | 127 +++ .../fmod/api/inc/fmod_memoryinfo.h | 201 +++++ .../third_party/fmod/api/inc/fmod_output.h | 93 +++ .../third_party/fmod/api/inc/fmodlinux.h | 36 + .../lib/libfmodex-4.36.01.so.REMOVED.git-id | 1 + .../fmod/api/lib/libfmodex.so.REMOVED.git-id | 1 + .../lib/libfmodexL-4.36.01.so.REMOVED.git-id | 1 + .../fmod/api/lib/libfmodexL.so.REMOVED.git-id | 1 + HelloWorld/Linux/app.config.txt | 5 + .../Linux/cocos2dx-hello.REMOVED.git-id | 1 + .../Linux/libcocos2dx.so.REMOVED.git-id | 1 + HelloWorld/Linux/main.cpp | 11 + HelloWorld/Linux/main.h | 7 + .../org.eclipse.cdt.codan.core.prefs | 66 ++ .../platform/Linux/CCAccelerometer_linux.h | 29 + .../platform/Linux/CCAplication_linux.cpp | 86 ++ cocos2dx/platform/Linux/CCAplication_linux.h | 99 +++ cocos2dx/platform/Linux/CCEGLView_linux.cpp | 357 +++++++++ cocos2dx/platform/Linux/CCEGLView_linux.h | 94 +++ cocos2dx/platform/Linux/CCFileUtils_Linux.cpp | 86 ++ cocos2dx/platform/Linux/CCImage_Linux.cpp | 344 ++++++++ tests/test.linux/main.cpp | 13 + tests/test.linux/main.h | 13 + 32 files changed, 3991 insertions(+) create mode 100644 CocosDenshion/Linux/AudioPlayer.h create mode 100644 CocosDenshion/Linux/FmodAudioPlayer.cpp create mode 100644 CocosDenshion/Linux/FmodAudioPlayer.h create mode 100644 CocosDenshion/Linux/SimpleAudioEngine.cpp create mode 100644 CocosDenshion/third_party/fmod/Makefile create mode 100644 CocosDenshion/third_party/fmod/api/inc/fmod.h.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/api/inc/fmod.hpp create mode 100644 CocosDenshion/third_party/fmod/api/inc/fmod_codec.h create mode 100644 CocosDenshion/third_party/fmod/api/inc/fmod_dsp.h create mode 100644 CocosDenshion/third_party/fmod/api/inc/fmod_errors.h create mode 100644 CocosDenshion/third_party/fmod/api/inc/fmod_memoryinfo.h create mode 100644 CocosDenshion/third_party/fmod/api/inc/fmod_output.h create mode 100644 CocosDenshion/third_party/fmod/api/inc/fmodlinux.h create mode 100644 CocosDenshion/third_party/fmod/api/lib/libfmodex-4.36.01.so.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/api/lib/libfmodex.so.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/api/lib/libfmodexL-4.36.01.so.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/api/lib/libfmodexL.so.REMOVED.git-id create mode 100644 HelloWorld/Linux/app.config.txt create mode 100644 HelloWorld/Linux/cocos2dx-hello.REMOVED.git-id create mode 100644 HelloWorld/Linux/libcocos2dx.so.REMOVED.git-id create mode 100644 HelloWorld/Linux/main.cpp create mode 100644 HelloWorld/Linux/main.h create mode 100644 cocos2dx/.settings/org.eclipse.cdt.codan.core.prefs create mode 100644 cocos2dx/platform/Linux/CCAccelerometer_linux.h create mode 100644 cocos2dx/platform/Linux/CCAplication_linux.cpp create mode 100644 cocos2dx/platform/Linux/CCAplication_linux.h create mode 100644 cocos2dx/platform/Linux/CCEGLView_linux.cpp create mode 100644 cocos2dx/platform/Linux/CCEGLView_linux.h create mode 100644 cocos2dx/platform/Linux/CCFileUtils_Linux.cpp create mode 100644 cocos2dx/platform/Linux/CCImage_Linux.cpp create mode 100644 tests/test.linux/main.cpp create mode 100644 tests/test.linux/main.h diff --git a/CocosDenshion/Linux/AudioPlayer.h b/CocosDenshion/Linux/AudioPlayer.h new file mode 100644 index 0000000000..c4ce8c4cf4 --- /dev/null +++ b/CocosDenshion/Linux/AudioPlayer.h @@ -0,0 +1,112 @@ +/* + * AudioPlayer.h + * + * Created on: Aug 18, 2011 + * Author: laschweinski + */ + +#ifndef AUDIOPLAYER_H_ +#define AUDIOPLAYER_H_ + +namespace CocosDenshion { + +class AudioPlayer { +public: + virtual void close() = 0; + + /** + @brief Preload background music + @param pszFilePath The path of the background music file,or the FileName of T_SoundResInfo + */ + virtual void preloadBackgroundMusic(const char* pszFilePath) = 0; + + /** + @brief Play background music + @param pszFilePath The path of the background music file,or the FileName of T_SoundResInfo + @param bLoop Whether the background music loop or not + */ + virtual void playBackgroundMusic(const char* pszFilePath, bool bLoop = false) = 0; + + /** + @brief Stop playing background music + @param bReleaseData If release the background music data or not.As default value is false + */ + virtual void stopBackgroundMusic(bool bReleaseData = false) = 0; + + /** + @brief Pause playing background music + */ + virtual void pauseBackgroundMusic() = 0; + + /** + @brief Resume playing background music + */ + virtual void resumeBackgroundMusic() = 0; + + /** + @brief Rewind playing background music + */ + virtual void rewindBackgroundMusic() = 0; + + virtual bool willPlayBackgroundMusic() = 0; + + /** + @brief Whether the background music is playing + @return If is playing return true,or return false + */ + virtual bool isBackgroundMusicPlaying() = 0; + + // properties + /** + @brief The volume of the background music max value is 1.0,the min value is 0.0 + */ + virtual float getBackgroundMusicVolume() = 0; + + /** + @brief set the volume of background music + @param volume must be in 0.0~1.0 + */ + virtual void setBackgroundMusicVolume(float volume) = 0; + + /** + @brief The volume of the effects max value is 1.0,the min value is 0.0 + */ + virtual float getEffectsVolume() = 0; + + /** + @brief set the volume of sound effecs + @param volume must be in 0.0~1.0 + */ + virtual void setEffectsVolume(float volume) = 0; + + // for sound effects + /** + @brief Play sound effect + @param pszFilePath The path of the effect file,or the FileName of T_SoundResInfo + @bLoop Whether to loop the effect playing, default value is false + */ + virtual unsigned int playEffect(const char* pszFilePath, bool bLoop = false) = 0; + + /** + @brief Stop playing sound effect + @param nSoundId The return value of function playEffect + */ + virtual void stopEffect(unsigned int nSoundId) = 0; + + /** + @brief preload a compressed audio file + @details the compressed audio will be decode to wave, then write into an + internal buffer in SimpleaudioEngine + */ + virtual void preloadEffect(const char* pszFilePath) = 0; + + /** + @brief unload the preloaded effect from internal buffer + @param[in] pszFilePath The path of the effect file,or the FileName of T_SoundResInfo + */ + virtual void unloadEffect(const char* pszFilePath) = 0; +}; +} + + +#endif /* AUDIOPLAYER_H_ */ diff --git a/CocosDenshion/Linux/FmodAudioPlayer.cpp b/CocosDenshion/Linux/FmodAudioPlayer.cpp new file mode 100644 index 0000000000..25fe17768a --- /dev/null +++ b/CocosDenshion/Linux/FmodAudioPlayer.cpp @@ -0,0 +1,345 @@ +/* + * FmodAudioPlayer.cpp + * + * Created on: Aug 18, 2011 + * Author: laschweinski + */ + +#include "FmodAudioPlayer.h" +#include +#include "stdlib.h" +#include "assert.h" +#include "string.h" + +#define szMusicSuffix "|" + +namespace CocosDenshion { + +FmodAudioPlayer* FmodAudioPlayer::sharedPlayer() { + static FmodAudioPlayer s_SharedPlayer; + return &s_SharedPlayer; +} + +void ERRCHECK(FMOD_RESULT result) { + if (result != FMOD_OK) { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +FmodAudioPlayer::FmodAudioPlayer() : + pMusic(0), pBGMChannel(0), iSoundChannelCount(0) { + //init + FMOD_RESULT result; + FMOD::ChannelGroup *masterChannelGroup; + + unsigned int version; + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&pSystem); + ERRCHECK(result); + + result = pSystem->setOutput(FMOD_OUTPUTTYPE_ALSA); + ERRCHECK(result); + + result = pSystem->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = pSystem->createChannelGroup("Channel Group", &pChannelGroup); + ERRCHECK(result); + + result = pSystem->getMasterChannelGroup(&masterChannelGroup); + ERRCHECK(result); + + result = masterChannelGroup->addGroup(pChannelGroup); + ERRCHECK(result); + + mapEffectSound.clear(); + +} + +void FmodAudioPlayer::close() { + FMOD_RESULT result; + //BGM + if (pBGMChannel != NULL) { + result = pBGMChannel->stop(); + ERRCHECK(result); + pBGMChannel = 0; + } + + if (pMusic != NULL) { + result = pMusic->release(); + ERRCHECK(result); + pMusic = 0; + } + + result = pChannelGroup->stop(); + ERRCHECK(result); + sMusicPath.clear(); +} + +FmodAudioPlayer::~FmodAudioPlayer() { + FMOD_RESULT result; + //BGM + if (pBGMChannel != NULL) { + result = pBGMChannel->stop(); + ERRCHECK(result); + } + + if (pMusic != NULL) { + result = pMusic->release(); + ERRCHECK(result); + } + + result = pChannelGroup->release(); + ERRCHECK(result); + + result = pSystem->close(); + ERRCHECK(result); + result = pSystem->release(); + ERRCHECK(result); +} + +// BGM +void FmodAudioPlayer::preloadBackgroundMusic(const char* pszFilePath) { + FMOD_RESULT result; + pSystem->update(); + string sNewMusicPath = string(pszFilePath) + szMusicSuffix; + if (pMusic && sNewMusicPath != sMusicPath) { + //release old + result = pMusic->release(); + ERRCHECK(result); + + sMusicPath = sNewMusicPath; + + } + + result = pSystem->createSound(pszFilePath, FMOD_LOOP_NORMAL, 0, &pMusic); + ERRCHECK(result); +} + +void FmodAudioPlayer::playBackgroundMusic(const char* pszFilePath, bool bLoop) { + pSystem->update(); + if (pMusic == NULL) { + //did not load it + //load the new music + FMOD_RESULT result = pSystem->createSound(pszFilePath, FMOD_LOOP_NORMAL, + 0, &pMusic); + ERRCHECK(result); + sMusicPath = string(pszFilePath) + szMusicSuffix; + } else { + string sNewMusicPath = string(pszFilePath) + szMusicSuffix; + if (pBGMChannel) { + pBGMChannel->stop(); + pBGMChannel = 0; + } + + if (sNewMusicPath != sMusicPath) { + + pMusic->release(); + //load the new music + FMOD_RESULT result = pSystem->createSound(pszFilePath, + FMOD_LOOP_NORMAL, 0, &pMusic); + sMusicPath = sNewMusicPath; + ERRCHECK(result); + } + + } + + FMOD_RESULT result = pSystem->playSound(FMOD_CHANNEL_FREE, pMusic, true, + &pBGMChannel); + ERRCHECK(result); + + pBGMChannel->setLoopCount((bLoop) ? -1 : 1); + result = pBGMChannel->setPaused(false); + ERRCHECK(result); +} + +void FmodAudioPlayer::stopBackgroundMusic(bool bReleaseData) { + FMOD_RESULT result; + pSystem->update(); + + if (pBGMChannel==NULL||pMusic==NULL){ + return; + } + if (bReleaseData) { + result = pBGMChannel->stop(); + ERRCHECK(result); + result = pMusic->release(); + ERRCHECK(result); + pBGMChannel = 0; + } else { + result = pBGMChannel->stop(); + ERRCHECK(result); + pBGMChannel = 0; + } + sMusicPath.clear(); + +} + +void FmodAudioPlayer::pauseBackgroundMusic() { + if (pBGMChannel == NULL) { + return; + } + pSystem->update(); + FMOD_RESULT result = pBGMChannel->setPaused(true); + ERRCHECK(result); + +} + +void FmodAudioPlayer::resumeBackgroundMusic() { + if (pBGMChannel == NULL) { + return; + } + pSystem->update(); + FMOD_RESULT result = pBGMChannel->setPaused(false); + ERRCHECK(result); +} + +void FmodAudioPlayer::rewindBackgroundMusic() { + if (pBGMChannel == NULL) { + return; + } + pSystem->update(); + FMOD_RESULT result = pBGMChannel->setPosition(0, FMOD_TIMEUNIT_MS); + ERRCHECK(result); +} + +bool FmodAudioPlayer::willPlayBackgroundMusic() { + pSystem->update(); + return false; //do it according to win +} + +bool FmodAudioPlayer::isBackgroundMusicPlaying() { + bool bPlaying; + if (pBGMChannel == NULL) { + return false; + } + pSystem->update(); + FMOD_RESULT result = pBGMChannel->isPlaying(&bPlaying); + ERRCHECK(result); + return bPlaying; + +} + +float FmodAudioPlayer::getBackgroundMusicVolume() { + float fVolumn; + if (pBGMChannel == NULL) { + return 0; + } + pSystem->update(); + FMOD_RESULT result = pBGMChannel->getVolume(&fVolumn); + ERRCHECK(result); + return fVolumn; +} + +void FmodAudioPlayer::setBackgroundMusicVolume(float volume) { + if (pBGMChannel == NULL) { + return; + } + pSystem->update(); + FMOD_RESULT result = pBGMChannel->setVolume(volume); + ERRCHECK(result); + +} +//~BGM + +// for sound effects +float FmodAudioPlayer::getEffectsVolume() { + float fVolumn; + pSystem->update(); + FMOD_RESULT result = pChannelGroup->getVolume(&fVolumn); + ERRCHECK(result); +} + +void FmodAudioPlayer::setEffectsVolume(float volume) { + pSystem->update(); + FMOD_RESULT result = pChannelGroup->setVolume(volume); + ERRCHECK(result); + +} + +unsigned int FmodAudioPlayer::playEffect(const char* pszFilePath, bool bLoop) { + FMOD::Channel* pChannel; + FMOD::Sound* pSound = NULL; + + pSystem->update(); + + map::iterator l_it = mapEffectSound.find( + string(pszFilePath)); + if (l_it == mapEffectSound.end()) { + //no load it yet + preloadEffect(pszFilePath); + l_it = mapEffectSound.find(string(pszFilePath)); + } + pSound = l_it->second; + assert(pSound); + + FMOD_RESULT result = pSystem->playSound(FMOD_CHANNEL_FREE, pSound, true, + &pChannel); + ERRCHECK(result); + + pChannel->setChannelGroup(pChannelGroup); + + //set its loop + pChannel->setLoopCount((bLoop) ? -1 : 1); + result = pChannel->setPaused(false); + + mapEffectSoundChannel[iSoundChannelCount] = pChannel; + + return iSoundChannelCount++; +} + +void FmodAudioPlayer::stopEffect(unsigned int nSoundId) { + FMOD::Channel* pChannel; + pSystem->update(); + + map::iterator l_it = + mapEffectSoundChannel.find(nSoundId); + if (l_it == mapEffectSoundChannel.end()) { + //no play yet + return; + } + pChannel = l_it->second; + //stop the channel; + pChannel->stop(); + + //delete from the map; + mapEffectSoundChannel.erase(nSoundId); +} + +void FmodAudioPlayer::preloadEffect(const char* pszFilePath) { + FMOD::Sound* pLoadSound; + + pSystem->update(); + FMOD_RESULT result = pSystem->createSound(pszFilePath, FMOD_LOOP_NORMAL, 0, + &pLoadSound); + ERRCHECK(result); + + mapEffectSound[string(pszFilePath)] = pLoadSound; + +} + +void FmodAudioPlayer::unloadEffect(const char* pszFilePath) { + FMOD::Sound* pSound; + pSystem->update(); + + map::iterator l_it = mapEffectSound.find( + string(pszFilePath)); + if (l_it == mapEffectSound.end()) { + //no load yet + return; + } + pSound = l_it->second; + + //release the sound; + pSound->release(); + + //delete from the map + mapEffectSound.erase(string(pszFilePath)); +} + +//~for sound effects + +} /* namespace CocosDenshion */ diff --git a/CocosDenshion/Linux/FmodAudioPlayer.h b/CocosDenshion/Linux/FmodAudioPlayer.h new file mode 100644 index 0000000000..2c04422e9f --- /dev/null +++ b/CocosDenshion/Linux/FmodAudioPlayer.h @@ -0,0 +1,140 @@ +/* + * FmodAudioPlayer.h + * + * Created on: Aug 18, 2011 + * Author: laschweinski + */ + +#ifndef FMODAUDIOPLAYER_H_ +#define FMODAUDIOPLAYER_H_ + +#include "fmod.hpp" +#include "fmod_errors.h" +#include "AudioPlayer.h" +#include "string" +#include + + +using namespace std; + +namespace CocosDenshion { + +class FmodAudioPlayer : public AudioPlayer{ +public: + FmodAudioPlayer(); + virtual ~FmodAudioPlayer(); + + static FmodAudioPlayer* sharedPlayer(); + + virtual void close(); + + /** + @brief Preload background music + @param pszFilePath The path of the background music file,or the FileName of T_SoundResInfo + */ + virtual void preloadBackgroundMusic(const char* pszFilePath); + + /** + @brief Play background music + @param pszFilePath The path of the background music file,or the FileName of T_SoundResInfo + @param bLoop Whether the background music loop or not + */ + virtual void playBackgroundMusic(const char* pszFilePath, bool bLoop); + + /** + @brief Stop playing background music + @param bReleaseData If release the background music data or not.As default value is false + */ + virtual void stopBackgroundMusic(bool bReleaseData); + + /** + @brief Pause playing background music + */ + virtual void pauseBackgroundMusic(); + + /** + @brief Resume playing background music + */ + virtual void resumeBackgroundMusic(); + + /** + @brief Rewind playing background music + */ + virtual void rewindBackgroundMusic(); + + virtual bool willPlayBackgroundMusic(); + + /** + @brief Whether the background music is playing + @return If is playing return true,or return false + */ + virtual bool isBackgroundMusicPlaying(); + + // properties + /** + @brief The volume of the background music max value is 1.0,the min value is 0.0 + */ + virtual float getBackgroundMusicVolume(); + + /** + @brief set the volume of background music + @param volume must be in 0.0~1.0 + */ + virtual void setBackgroundMusicVolume(float volume); + + /** + @brief The volume of the effects max value is 1.0,the min value is 0.0 + */ + virtual float getEffectsVolume(); + + /** + @brief set the volume of sound effecs + @param volume must be in 0.0~1.0 + */ + virtual void setEffectsVolume(float volume); + + // for sound effects + /** + @brief Play sound effect + @param pszFilePath The path of the effect file,or the FileName of T_SoundResInfo + @bLoop Whether to loop the effect playing, default value is false + */ + virtual unsigned int playEffect(const char* pszFilePath, bool bLoop = false); + + /** + @brief Stop playing sound effect + @param nSoundId The return value of function playEffect + */ + virtual void stopEffect(unsigned int nSoundId); + + /** + @brief preload a compressed audio file + @details the compressed audio will be decode to wave, then write into an + internal buffer in SimpleaudioEngine + */ + virtual void preloadEffect(const char* pszFilePath); + + /** + @brief unload the preloaded effect from internal buffer + @param[in] pszFilePath The path of the effect file,or the FileName of T_SoundResInfo + */ + virtual void unloadEffect(const char* pszFilePath); + +private: + map mapEffectSound; + map mapEffectSoundChannel; + + FMOD::System* pSystem; + FMOD::Sound* pMusic; //BGM + FMOD::Channel* pBGMChannel; + + FMOD::ChannelGroup* pChannelGroup; + + unsigned int iSoundChannelCount; + + string sMusicPath; + +}; + +} /* namespace CocosDenshion */ +#endif /* FMODAUDIOPLAYER_H_ */ diff --git a/CocosDenshion/Linux/SimpleAudioEngine.cpp b/CocosDenshion/Linux/SimpleAudioEngine.cpp new file mode 100644 index 0000000000..a5e7e0a368 --- /dev/null +++ b/CocosDenshion/Linux/SimpleAudioEngine.cpp @@ -0,0 +1,137 @@ +#include "SimpleAudioEngine.h" +#include "FmodAudioPlayer.h" + +namespace CocosDenshion { + +static AudioPlayer* oAudioPlayer; + +SimpleAudioEngine::SimpleAudioEngine() { + oAudioPlayer = FmodAudioPlayer::sharedPlayer(); +} + +SimpleAudioEngine::~SimpleAudioEngine() { +} + +SimpleAudioEngine* SimpleAudioEngine::sharedEngine() { + static SimpleAudioEngine s_SharedEngine; + return &s_SharedEngine; +} + +void SimpleAudioEngine::end() { + oAudioPlayer->close(); + +// sharedMusic().Close(); +// +// EffectList::iterator p = sharedList().begin(); +// while (p != sharedList().end()) +// { +// delete p->second; +// p->second = NULL; +// p++; +// } +// sharedList().clear(); +// return; +} + +void SimpleAudioEngine::setResource(const char* pszZipFileName) { +} + +////////////////////////////////////////////////////////////////////////// +// BackgroundMusic +////////////////////////////////////////////////////////////////////////// + +void SimpleAudioEngine::playBackgroundMusic(const char* pszFilePath, + bool bLoop) { + oAudioPlayer->playBackgroundMusic(pszFilePath, bLoop); +} + +void SimpleAudioEngine::stopBackgroundMusic(bool bReleaseData) { + oAudioPlayer->stopBackgroundMusic(bReleaseData); +} + +void SimpleAudioEngine::pauseBackgroundMusic() { + oAudioPlayer->pauseBackgroundMusic(); +} + +void SimpleAudioEngine::resumeBackgroundMusic() { + oAudioPlayer->resumeBackgroundMusic(); +} + +void SimpleAudioEngine::rewindBackgroundMusic() { + oAudioPlayer->rewindBackgroundMusic(); +} + +bool SimpleAudioEngine::willPlayBackgroundMusic() { + return oAudioPlayer->willPlayBackgroundMusic(); +} + +bool SimpleAudioEngine::isBackgroundMusicPlaying() { + return oAudioPlayer->isBackgroundMusicPlaying(); +} + +////////////////////////////////////////////////////////////////////////// +// effect function +////////////////////////////////////////////////////////////////////////// + +unsigned int SimpleAudioEngine::playEffect(const char* pszFilePath, + bool bLoop) { + return oAudioPlayer->playEffect(pszFilePath, bLoop); +} + +void SimpleAudioEngine::stopEffect(unsigned int nSoundId) { + return oAudioPlayer->stopEffect(nSoundId); +} + +void SimpleAudioEngine::preloadEffect(const char* pszFilePath) { + return oAudioPlayer->preloadEffect(pszFilePath); +} + +void SimpleAudioEngine::preloadBackgroundMusic(const char* pszFilePath) { + return oAudioPlayer->preloadBackgroundMusic(pszFilePath); +} + +void SimpleAudioEngine::unloadEffect(const char* pszFilePath) { + return oAudioPlayer->unloadEffect(pszFilePath); +} + +////////////////////////////////////////////////////////////////////////// +// volume interface +////////////////////////////////////////////////////////////////////////// + +float SimpleAudioEngine::getBackgroundMusicVolume() { + return oAudioPlayer->getBackgroundMusicVolume(); +} + +void SimpleAudioEngine::setBackgroundMusicVolume(float volume) { + return oAudioPlayer->setBackgroundMusicVolume(volume); +} + +float SimpleAudioEngine::getEffectsVolume() { + return oAudioPlayer->getBackgroundMusicVolume(); +} + +void SimpleAudioEngine::setEffectsVolume(float volume) { + return oAudioPlayer->setEffectsVolume(volume); +} + +////////////////////////////////////////////////////////////////////////// +// static function +////////////////////////////////////////////////////////////////////////// + +const char * _FullPath(const char * szPath) { +} + +unsigned int _Hash(const char *key) { +// unsigned int len = strlen(key); +// const char *end=key+len; +// unsigned int hash; +// +// for (hash = 0; key < end; key++) +// { +// hash *= 16777619; +// hash ^= (unsigned int) (unsigned char) toupper(*key); +// } +// return (hash); +} + +} // end of namespace CocosDenshion diff --git a/CocosDenshion/third_party/fmod/Makefile b/CocosDenshion/third_party/fmod/Makefile new file mode 100644 index 0000000000..f404230255 --- /dev/null +++ b/CocosDenshion/third_party/fmod/Makefile @@ -0,0 +1,65 @@ +VERSION = 4.36.01 +LIBDIR = api/lib +HDRDIR = api/inc +DESTLIBDIR = /usr/local/lib +DESTHDRDIR = /usr/local/include/fmodex + +all: + @echo "Possible targets:" + @echo "'make fmod_examples' - Build all examples" + @echo "'make install' - Install FMOD Ex libraries and headers" + @echo "'make uninstall' - Uninstall FMOD Ex libraries and headers" + +fmod_examples: + cd examples/3d && make + cd examples/cdplayer && make + cd examples/channelgroups && make + cd examples/dsp_effectperspeaker && make + cd examples/dsp_custom && make + cd examples/effects && make + cd examples/filecallbacks && make + cd examples/generatetone && make + cd examples/loadfrommemory && make + cd examples/multiplesoundcard && make + cd examples/multispeakeroutput && make + cd examples/netstream && make + cd examples/offlinedecoding && make + cd examples/pitchdetection && make + cd examples/playlist && make + cd examples/playsound && make + cd examples/playstream && make + cd examples/plugin_dev/codec_raw && make + cd examples/plugin_dev/dsp_gain && make + cd examples/readtags && make + cd examples/realtimestitching && make + cd examples/recording && make + cd examples/recordtodisk && make + cd examples/ripnetstream && make + cd examples/submixing && make + cd examples/useplugins && make + cd examples/usercreatedsound && make + cd fmoddesignerapi/examples/effects && make + cd fmoddesignerapi/examples/info_only && make + cd fmoddesignerapi/examples/load_data && make + cd fmoddesignerapi/examples/max_playbacks && make + cd fmoddesignerapi/examples/parameters && make + cd fmoddesignerapi/examples/programmer_selected && make + cd fmoddesignerapi/examples/programmer_sound && make + cd fmoddesignerapi/examples/simple_event && make + +install: + @echo "Installing FMOD Ex libraries and headers..." + cp -f ${LIBDIR}/libfmodex-${VERSION}.so ${DESTLIBDIR} + cp -f ${LIBDIR}/libfmodexL-${VERSION}.so ${DESTLIBDIR} + ldconfig -n ${DESTLIBDIR} + mkdir -p ${DESTHDRDIR} + cp -f ${HDRDIR}/*.h* ${DESTHDRDIR} + @echo "done." + +uninstall: + @echo "Uninstalling FMOD Ex libraries..." + rm -f ${DESTLIBDIR}/libfmodex-${VERSION}.so + rm -f ${DESTLIBDIR}/libfmodexL-${VERSION}.so + ldconfig -n ${DESTLIBDIR} + rm -rf ${DESTHDRDIR} + @echo "done." diff --git a/CocosDenshion/third_party/fmod/api/inc/fmod.h.REMOVED.git-id b/CocosDenshion/third_party/fmod/api/inc/fmod.h.REMOVED.git-id new file mode 100644 index 0000000000..eab4971a34 --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/inc/fmod.h.REMOVED.git-id @@ -0,0 +1 @@ +94cc999c1245ef76bb6109e235399b831d00a694 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/api/inc/fmod.hpp b/CocosDenshion/third_party/fmod/api/inc/fmod.hpp new file mode 100644 index 0000000000..4a81d44976 --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/inc/fmod.hpp @@ -0,0 +1,607 @@ +/* ========================================================================================== */ +/* FMOD Ex - C++ header file. Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */ +/* */ +/* Use this header in conjunction with fmod.h (which contains all the constants / callbacks) */ +/* to develop using C++ classes. */ +/* ========================================================================================== */ + +#ifndef _FMOD_HPP +#define _FMOD_HPP + +#include "fmod.h" + +/* + Constant and defines +*/ + +/* + FMOD Namespace +*/ +namespace FMOD +{ + class System; + class Sound; + class Channel; + class ChannelGroup; + class SoundGroup; + class Reverb; + class DSP; + class DSPConnection; + class Geometry; + + /* + FMOD global system functions (optional). + */ + inline FMOD_RESULT Memory_Initialize(void *poolmem, int poollen, FMOD_MEMORY_ALLOCCALLBACK useralloc, FMOD_MEMORY_REALLOCCALLBACK userrealloc, FMOD_MEMORY_FREECALLBACK userfree, FMOD_MEMORY_TYPE memtypeflags = FMOD_MEMORY_ALL) { return FMOD_Memory_Initialize(poolmem, poollen, useralloc, userrealloc, userfree, memtypeflags); } + inline FMOD_RESULT Memory_GetStats (int *currentalloced, int *maxalloced, bool blocking = true) { return FMOD_Memory_GetStats(currentalloced, maxalloced, blocking); } + inline FMOD_RESULT Debug_SetLevel(FMOD_DEBUGLEVEL level) { return FMOD_Debug_SetLevel(level); } + inline FMOD_RESULT Debug_GetLevel(FMOD_DEBUGLEVEL *level) { return FMOD_Debug_GetLevel(level); } + inline FMOD_RESULT File_SetDiskBusy(int busy) { return FMOD_File_SetDiskBusy(busy); } + inline FMOD_RESULT File_GetDiskBusy(int *busy) { return FMOD_File_GetDiskBusy(busy); } + + /* + FMOD System factory functions. + */ + inline FMOD_RESULT System_Create(System **system) { return FMOD_System_Create((FMOD_SYSTEM **)system); } + + /* + 'System' API + */ + + class System + { + private: + + System(); /* Constructor made private so user cannot statically instance a System class. + System_Create must be used. */ + public: + + FMOD_RESULT F_API release (); + + // Pre-init functions. + FMOD_RESULT F_API setOutput (FMOD_OUTPUTTYPE output); + FMOD_RESULT F_API getOutput (FMOD_OUTPUTTYPE *output); + FMOD_RESULT F_API getNumDrivers (int *numdrivers); + FMOD_RESULT F_API getDriverInfo (int id, char *name, int namelen, FMOD_GUID *guid); + FMOD_RESULT F_API getDriverInfoW (int id, short *name, int namelen, FMOD_GUID *guid); + FMOD_RESULT F_API getDriverCaps (int id, FMOD_CAPS *caps, int *controlpaneloutputrate, FMOD_SPEAKERMODE *controlpanelspeakermode); + FMOD_RESULT F_API setDriver (int driver); + FMOD_RESULT F_API getDriver (int *driver); + FMOD_RESULT F_API setHardwareChannels (int numhardwarechannels); + FMOD_RESULT F_API setSoftwareChannels (int numsoftwarechannels); + FMOD_RESULT F_API getSoftwareChannels (int *numsoftwarechannels); + FMOD_RESULT F_API setSoftwareFormat (int samplerate, FMOD_SOUND_FORMAT format, int numoutputchannels, int maxinputchannels, FMOD_DSP_RESAMPLER resamplemethod); + FMOD_RESULT F_API getSoftwareFormat (int *samplerate, FMOD_SOUND_FORMAT *format, int *numoutputchannels, int *maxinputchannels, FMOD_DSP_RESAMPLER *resamplemethod, int *bits); + FMOD_RESULT F_API setDSPBufferSize (unsigned int bufferlength, int numbuffers); + FMOD_RESULT F_API getDSPBufferSize (unsigned int *bufferlength, int *numbuffers); + FMOD_RESULT F_API setFileSystem (FMOD_FILE_OPENCALLBACK useropen, FMOD_FILE_CLOSECALLBACK userclose, FMOD_FILE_READCALLBACK userread, FMOD_FILE_SEEKCALLBACK userseek, FMOD_FILE_ASYNCREADCALLBACK userasyncread, FMOD_FILE_ASYNCCANCELCALLBACK userasynccancel, int blockalign); + FMOD_RESULT F_API attachFileSystem (FMOD_FILE_OPENCALLBACK useropen, FMOD_FILE_CLOSECALLBACK userclose, FMOD_FILE_READCALLBACK userread, FMOD_FILE_SEEKCALLBACK userseek); + FMOD_RESULT F_API setAdvancedSettings (FMOD_ADVANCEDSETTINGS *settings); + FMOD_RESULT F_API getAdvancedSettings (FMOD_ADVANCEDSETTINGS *settings); + FMOD_RESULT F_API setSpeakerMode (FMOD_SPEAKERMODE speakermode); + FMOD_RESULT F_API getSpeakerMode (FMOD_SPEAKERMODE *speakermode); + FMOD_RESULT F_API setCallback (FMOD_SYSTEM_CALLBACK callback); + + // Plug-in support + FMOD_RESULT F_API setPluginPath (const char *path); + FMOD_RESULT F_API loadPlugin (const char *filename, unsigned int *handle, unsigned int priority = 0); + FMOD_RESULT F_API unloadPlugin (unsigned int handle); + FMOD_RESULT F_API getNumPlugins (FMOD_PLUGINTYPE plugintype, int *numplugins); + FMOD_RESULT F_API getPluginHandle (FMOD_PLUGINTYPE plugintype, int index, unsigned int *handle); + FMOD_RESULT F_API getPluginInfo (unsigned int handle, FMOD_PLUGINTYPE *plugintype, char *name, int namelen, unsigned int *version); + FMOD_RESULT F_API setOutputByPlugin (unsigned int handle); + FMOD_RESULT F_API getOutputByPlugin (unsigned int *handle); + FMOD_RESULT F_API createDSPByPlugin (unsigned int handle, DSP **dsp); + FMOD_RESULT F_API createCodec (FMOD_CODEC_DESCRIPTION *description, unsigned int priority = 0); + + // Init/Close + FMOD_RESULT F_API init (int maxchannels, FMOD_INITFLAGS flags, void *extradriverdata); + FMOD_RESULT F_API close (); + + // General post-init system functions + FMOD_RESULT F_API update (); /* IMPORTANT! CALL THIS ONCE PER FRAME! */ + + FMOD_RESULT F_API set3DSettings (float dopplerscale, float distancefactor, float rolloffscale); + FMOD_RESULT F_API get3DSettings (float *dopplerscale, float *distancefactor, float *rolloffscale); + FMOD_RESULT F_API set3DNumListeners (int numlisteners); + FMOD_RESULT F_API get3DNumListeners (int *numlisteners); + FMOD_RESULT F_API set3DListenerAttributes(int listener, const FMOD_VECTOR *pos, const FMOD_VECTOR *vel, const FMOD_VECTOR *forward, const FMOD_VECTOR *up); + FMOD_RESULT F_API get3DListenerAttributes(int listener, FMOD_VECTOR *pos, FMOD_VECTOR *vel, FMOD_VECTOR *forward, FMOD_VECTOR *up); + FMOD_RESULT F_API set3DRolloffCallback (FMOD_3D_ROLLOFFCALLBACK callback); + FMOD_RESULT F_API set3DSpeakerPosition (FMOD_SPEAKER speaker, float x, float y, bool active); + FMOD_RESULT F_API get3DSpeakerPosition (FMOD_SPEAKER speaker, float *x, float *y, bool *active); + + FMOD_RESULT F_API setStreamBufferSize (unsigned int filebuffersize, FMOD_TIMEUNIT filebuffersizetype); + FMOD_RESULT F_API getStreamBufferSize (unsigned int *filebuffersize, FMOD_TIMEUNIT *filebuffersizetype); + + // System information functions. + FMOD_RESULT F_API getVersion (unsigned int *version); + FMOD_RESULT F_API getOutputHandle (void **handle); + FMOD_RESULT F_API getChannelsPlaying (int *channels); + FMOD_RESULT F_API getHardwareChannels (int *numhardwarechannels); + FMOD_RESULT F_API getCPUUsage (float *dsp, float *stream, float *geometry, float *update, float *total); + FMOD_RESULT F_API getSoundRAM (int *currentalloced, int *maxalloced, int *total); + FMOD_RESULT F_API getNumCDROMDrives (int *numdrives); + FMOD_RESULT F_API getCDROMDriveName (int drive, char *drivename, int drivenamelen, char *scsiname, int scsinamelen, char *devicename, int devicenamelen); + FMOD_RESULT F_API getSpectrum (float *spectrumarray, int numvalues, int channeloffset, FMOD_DSP_FFT_WINDOW windowtype); + FMOD_RESULT F_API getWaveData (float *wavearray, int numvalues, int channeloffset); + + // Sound/DSP/Channel/FX creation and retrieval. + FMOD_RESULT F_API createSound (const char *name_or_data, FMOD_MODE mode, FMOD_CREATESOUNDEXINFO *exinfo, Sound **sound); + FMOD_RESULT F_API createStream (const char *name_or_data, FMOD_MODE mode, FMOD_CREATESOUNDEXINFO *exinfo, Sound **sound); + FMOD_RESULT F_API createDSP (FMOD_DSP_DESCRIPTION *description, DSP **dsp); + FMOD_RESULT F_API createDSPByType (FMOD_DSP_TYPE type, DSP **dsp); + FMOD_RESULT F_API createChannelGroup (const char *name, ChannelGroup **channelgroup); + FMOD_RESULT F_API createSoundGroup (const char *name, SoundGroup **soundgroup); + FMOD_RESULT F_API createReverb (Reverb **reverb); + + FMOD_RESULT F_API playSound (FMOD_CHANNELINDEX channelid, Sound *sound, bool paused, Channel **channel); + FMOD_RESULT F_API playDSP (FMOD_CHANNELINDEX channelid, DSP *dsp, bool paused, Channel **channel); + FMOD_RESULT F_API getChannel (int channelid, Channel **channel); + FMOD_RESULT F_API getMasterChannelGroup (ChannelGroup **channelgroup); + FMOD_RESULT F_API getMasterSoundGroup (SoundGroup **soundgroup); + + // Reverb API + FMOD_RESULT F_API setReverbProperties (const FMOD_REVERB_PROPERTIES *prop); + FMOD_RESULT F_API getReverbProperties (FMOD_REVERB_PROPERTIES *prop); + FMOD_RESULT F_API setReverbAmbientProperties(FMOD_REVERB_PROPERTIES *prop); + FMOD_RESULT F_API getReverbAmbientProperties(FMOD_REVERB_PROPERTIES *prop); + + // System level DSP access. + FMOD_RESULT F_API getDSPHead (DSP **dsp); + FMOD_RESULT F_API addDSP (DSP *dsp, DSPConnection **connection); + FMOD_RESULT F_API lockDSP (); + FMOD_RESULT F_API unlockDSP (); + FMOD_RESULT F_API getDSPClock (unsigned int *hi, unsigned int *lo); + + // Recording API. + FMOD_RESULT F_API getRecordNumDrivers (int *numdrivers); + FMOD_RESULT F_API getRecordDriverInfo (int id, char *name, int namelen, FMOD_GUID *guid); + FMOD_RESULT F_API getRecordDriverInfoW (int id, short *name, int namelen, FMOD_GUID *guid); + FMOD_RESULT F_API getRecordDriverCaps (int id, FMOD_CAPS *caps, int *minfrequency, int *maxfrequency); + FMOD_RESULT F_API getRecordPosition (int id, unsigned int *position); + + FMOD_RESULT F_API recordStart (int id, Sound *sound, bool loop); + FMOD_RESULT F_API recordStop (int id); + FMOD_RESULT F_API isRecording (int id, bool *recording); + + // Geometry API. + FMOD_RESULT F_API createGeometry (int maxpolygons, int maxvertices, Geometry **geometry); + FMOD_RESULT F_API setGeometrySettings (float maxworldsize); + FMOD_RESULT F_API getGeometrySettings (float *maxworldsize); + FMOD_RESULT F_API loadGeometry (const void *data, int datasize, Geometry **geometry); + FMOD_RESULT F_API getGeometryOcclusion (const FMOD_VECTOR *listener, const FMOD_VECTOR *source, float *direct, float *reverb); + + // Network functions. + FMOD_RESULT F_API setNetworkProxy (const char *proxy); + FMOD_RESULT F_API getNetworkProxy (char *proxy, int proxylen); + FMOD_RESULT F_API setNetworkTimeout (int timeout); + FMOD_RESULT F_API getNetworkTimeout (int *timeout); + + // Userdata set/get. + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + /* + 'Sound' API + */ + class Sound + { + private: + + Sound(); /* Constructor made private so user cannot statically instance a Sound class. + Appropriate Sound creation or retrieval function must be used. */ + public: + + FMOD_RESULT F_API release (); + FMOD_RESULT F_API getSystemObject (System **system); + + // Standard sound manipulation functions. + FMOD_RESULT F_API lock (unsigned int offset, unsigned int length, void **ptr1, void **ptr2, unsigned int *len1, unsigned int *len2); + FMOD_RESULT F_API unlock (void *ptr1, void *ptr2, unsigned int len1, unsigned int len2); + FMOD_RESULT F_API setDefaults (float frequency, float volume, float pan, int priority); + FMOD_RESULT F_API getDefaults (float *frequency, float *volume, float *pan, int *priority); + FMOD_RESULT F_API setVariations (float frequencyvar, float volumevar, float panvar); + FMOD_RESULT F_API getVariations (float *frequencyvar, float *volumevar, float *panvar); + FMOD_RESULT F_API set3DMinMaxDistance (float min, float max); + FMOD_RESULT F_API get3DMinMaxDistance (float *min, float *max); + FMOD_RESULT F_API set3DConeSettings (float insideconeangle, float outsideconeangle, float outsidevolume); + FMOD_RESULT F_API get3DConeSettings (float *insideconeangle, float *outsideconeangle, float *outsidevolume); + FMOD_RESULT F_API set3DCustomRolloff (FMOD_VECTOR *points, int numpoints); + FMOD_RESULT F_API get3DCustomRolloff (FMOD_VECTOR **points, int *numpoints); + FMOD_RESULT F_API setSubSound (int index, Sound *subsound); + FMOD_RESULT F_API getSubSound (int index, Sound **subsound); + FMOD_RESULT F_API setSubSoundSentence (int *subsoundlist, int numsubsounds); + FMOD_RESULT F_API getName (char *name, int namelen); + FMOD_RESULT F_API getLength (unsigned int *length, FMOD_TIMEUNIT lengthtype); + FMOD_RESULT F_API getFormat (FMOD_SOUND_TYPE *type, FMOD_SOUND_FORMAT *format, int *channels, int *bits); + FMOD_RESULT F_API getNumSubSounds (int *numsubsounds); + FMOD_RESULT F_API getNumTags (int *numtags, int *numtagsupdated); + FMOD_RESULT F_API getTag (const char *name, int index, FMOD_TAG *tag); + FMOD_RESULT F_API getOpenState (FMOD_OPENSTATE *openstate, unsigned int *percentbuffered, bool *starving, bool *diskbusy); + FMOD_RESULT F_API readData (void *buffer, unsigned int lenbytes, unsigned int *read); + FMOD_RESULT F_API seekData (unsigned int pcm); + + FMOD_RESULT F_API setSoundGroup (SoundGroup *soundgroup); + FMOD_RESULT F_API getSoundGroup (SoundGroup **soundgroup); + + // Synchronization point API. These points can come from markers embedded in wav files, and can also generate channel callbacks. + FMOD_RESULT F_API getNumSyncPoints (int *numsyncpoints); + FMOD_RESULT F_API getSyncPoint (int index, FMOD_SYNCPOINT **point); + FMOD_RESULT F_API getSyncPointInfo (FMOD_SYNCPOINT *point, char *name, int namelen, unsigned int *offset, FMOD_TIMEUNIT offsettype); + FMOD_RESULT F_API addSyncPoint (unsigned int offset, FMOD_TIMEUNIT offsettype, const char *name, FMOD_SYNCPOINT **point); + FMOD_RESULT F_API deleteSyncPoint (FMOD_SYNCPOINT *point); + + // Functions also in Channel class but here they are the 'default' to save having to change it in Channel all the time. + FMOD_RESULT F_API setMode (FMOD_MODE mode); + FMOD_RESULT F_API getMode (FMOD_MODE *mode); + FMOD_RESULT F_API setLoopCount (int loopcount); + FMOD_RESULT F_API getLoopCount (int *loopcount); + FMOD_RESULT F_API setLoopPoints (unsigned int loopstart, FMOD_TIMEUNIT loopstarttype, unsigned int loopend, FMOD_TIMEUNIT loopendtype); + FMOD_RESULT F_API getLoopPoints (unsigned int *loopstart, FMOD_TIMEUNIT loopstarttype, unsigned int *loopend, FMOD_TIMEUNIT loopendtype); + + // For MOD/S3M/XM/IT/MID sequenced formats only. + FMOD_RESULT F_API getMusicNumChannels (int *numchannels); + FMOD_RESULT F_API setMusicChannelVolume (int channel, float volume); + FMOD_RESULT F_API getMusicChannelVolume (int channel, float *volume); + FMOD_RESULT F_API setMusicSpeed (float speed); + FMOD_RESULT F_API getMusicSpeed (float *speed); + + // Userdata set/get. + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + /* + 'Channel' API. + */ + class Channel + { + private: + + Channel(); /* Constructor made private so user cannot statically instance a Channel class. + Appropriate Channel creation or retrieval function must be used. */ + public: + + FMOD_RESULT F_API getSystemObject (System **system); + + FMOD_RESULT F_API stop (); + FMOD_RESULT F_API setPaused (bool paused); + FMOD_RESULT F_API getPaused (bool *paused); + FMOD_RESULT F_API setVolume (float volume); + FMOD_RESULT F_API getVolume (float *volume); + FMOD_RESULT F_API setFrequency (float frequency); + FMOD_RESULT F_API getFrequency (float *frequency); + FMOD_RESULT F_API setPan (float pan); + FMOD_RESULT F_API getPan (float *pan); + FMOD_RESULT F_API setDelay (FMOD_DELAYTYPE delaytype, unsigned int delayhi, unsigned int delaylo); + FMOD_RESULT F_API getDelay (FMOD_DELAYTYPE delaytype, unsigned int *delayhi, unsigned int *delaylo); + FMOD_RESULT F_API setSpeakerMix (float frontleft, float frontright, float center, float lfe, float backleft, float backright, float sideleft, float sideright); + FMOD_RESULT F_API getSpeakerMix (float *frontleft, float *frontright, float *center, float *lfe, float *backleft, float *backright, float *sideleft, float *sideright); + FMOD_RESULT F_API setSpeakerLevels (FMOD_SPEAKER speaker, float *levels, int numlevels); + FMOD_RESULT F_API getSpeakerLevels (FMOD_SPEAKER speaker, float *levels, int numlevels); + FMOD_RESULT F_API setInputChannelMix (float *levels, int numlevels); + FMOD_RESULT F_API getInputChannelMix (float *levels, int numlevels); + FMOD_RESULT F_API setMute (bool mute); + FMOD_RESULT F_API getMute (bool *mute); + FMOD_RESULT F_API setPriority (int priority); + FMOD_RESULT F_API getPriority (int *priority); + FMOD_RESULT F_API setPosition (unsigned int position, FMOD_TIMEUNIT postype); + FMOD_RESULT F_API getPosition (unsigned int *position, FMOD_TIMEUNIT postype); + FMOD_RESULT F_API setReverbProperties (const FMOD_REVERB_CHANNELPROPERTIES *prop); + FMOD_RESULT F_API getReverbProperties (FMOD_REVERB_CHANNELPROPERTIES *prop); + FMOD_RESULT F_API setLowPassGain (float gain); + FMOD_RESULT F_API getLowPassGain (float *gain); + + FMOD_RESULT F_API setChannelGroup (ChannelGroup *channelgroup); + FMOD_RESULT F_API getChannelGroup (ChannelGroup **channelgroup); + FMOD_RESULT F_API setCallback (FMOD_CHANNEL_CALLBACK callback); + + // 3D functionality. + FMOD_RESULT F_API set3DAttributes (const FMOD_VECTOR *pos, const FMOD_VECTOR *vel); + FMOD_RESULT F_API get3DAttributes (FMOD_VECTOR *pos, FMOD_VECTOR *vel); + FMOD_RESULT F_API set3DMinMaxDistance (float mindistance, float maxdistance); + FMOD_RESULT F_API get3DMinMaxDistance (float *mindistance, float *maxdistance); + FMOD_RESULT F_API set3DConeSettings (float insideconeangle, float outsideconeangle, float outsidevolume); + FMOD_RESULT F_API get3DConeSettings (float *insideconeangle, float *outsideconeangle, float *outsidevolume); + FMOD_RESULT F_API set3DConeOrientation (FMOD_VECTOR *orientation); + FMOD_RESULT F_API get3DConeOrientation (FMOD_VECTOR *orientation); + FMOD_RESULT F_API set3DCustomRolloff (FMOD_VECTOR *points, int numpoints); + FMOD_RESULT F_API get3DCustomRolloff (FMOD_VECTOR **points, int *numpoints); + FMOD_RESULT F_API set3DOcclusion (float directocclusion, float reverbocclusion); + FMOD_RESULT F_API get3DOcclusion (float *directocclusion, float *reverbocclusion); + FMOD_RESULT F_API set3DSpread (float angle); + FMOD_RESULT F_API get3DSpread (float *angle); + FMOD_RESULT F_API set3DPanLevel (float level); + FMOD_RESULT F_API get3DPanLevel (float *level); + FMOD_RESULT F_API set3DDopplerLevel (float level); + FMOD_RESULT F_API get3DDopplerLevel (float *level); + FMOD_RESULT F_API set3DDistanceFilter (bool custom, float customLevel, float centerFreq); + FMOD_RESULT F_API get3DDistanceFilter (bool *custom, float *customLevel, float *centerFreq); + + // DSP functionality only for channels playing sounds created with FMOD_SOFTWARE. + FMOD_RESULT F_API getDSPHead (DSP **dsp); + FMOD_RESULT F_API addDSP (DSP *dsp, DSPConnection **connection); + + // Information only functions. + FMOD_RESULT F_API isPlaying (bool *isplaying); + FMOD_RESULT F_API isVirtual (bool *isvirtual); + FMOD_RESULT F_API getAudibility (float *audibility); + FMOD_RESULT F_API getCurrentSound (Sound **sound); + FMOD_RESULT F_API getSpectrum (float *spectrumarray, int numvalues, int channeloffset, FMOD_DSP_FFT_WINDOW windowtype); + FMOD_RESULT F_API getWaveData (float *wavearray, int numvalues, int channeloffset); + FMOD_RESULT F_API getIndex (int *index); + + // Functions also found in Sound class but here they can be set per channel. + FMOD_RESULT F_API setMode (FMOD_MODE mode); + FMOD_RESULT F_API getMode (FMOD_MODE *mode); + FMOD_RESULT F_API setLoopCount (int loopcount); + FMOD_RESULT F_API getLoopCount (int *loopcount); + FMOD_RESULT F_API setLoopPoints (unsigned int loopstart, FMOD_TIMEUNIT loopstarttype, unsigned int loopend, FMOD_TIMEUNIT loopendtype); + FMOD_RESULT F_API getLoopPoints (unsigned int *loopstart, FMOD_TIMEUNIT loopstarttype, unsigned int *loopend, FMOD_TIMEUNIT loopendtype); + + // Userdata set/get. + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + /* + 'ChannelGroup' API + */ + class ChannelGroup + { + private: + + ChannelGroup(); /* Constructor made private so user cannot statically instance a ChannelGroup class. + Appropriate ChannelGroup creation or retrieval function must be used. */ + public: + + FMOD_RESULT F_API release (); + FMOD_RESULT F_API getSystemObject (System **system); + + // Channelgroup scale values. (changes attributes relative to the channels, doesn't overwrite them) + FMOD_RESULT F_API setVolume (float volume); + FMOD_RESULT F_API getVolume (float *volume); + FMOD_RESULT F_API setPitch (float pitch); + FMOD_RESULT F_API getPitch (float *pitch); + FMOD_RESULT F_API set3DOcclusion (float directocclusion, float reverbocclusion); + FMOD_RESULT F_API get3DOcclusion (float *directocclusion, float *reverbocclusion); + FMOD_RESULT F_API setPaused (bool paused); + FMOD_RESULT F_API getPaused (bool *paused); + FMOD_RESULT F_API setMute (bool mute); + FMOD_RESULT F_API getMute (bool *mute); + + // Channelgroup override values. (recursively overwrites whatever settings the channels had) + FMOD_RESULT F_API stop (); + FMOD_RESULT F_API overrideVolume (float volume); + FMOD_RESULT F_API overrideFrequency (float frequency); + FMOD_RESULT F_API overridePan (float pan); + FMOD_RESULT F_API overrideReverbProperties(const FMOD_REVERB_CHANNELPROPERTIES *prop); + FMOD_RESULT F_API override3DAttributes (const FMOD_VECTOR *pos, const FMOD_VECTOR *vel); + FMOD_RESULT F_API overrideSpeakerMix (float frontleft, float frontright, float center, float lfe, float backleft, float backright, float sideleft, float sideright); + + // Nested channel groups. + FMOD_RESULT F_API addGroup (ChannelGroup *group); + FMOD_RESULT F_API getNumGroups (int *numgroups); + FMOD_RESULT F_API getGroup (int index, ChannelGroup **group); + FMOD_RESULT F_API getParentGroup (ChannelGroup **group); + + // DSP functionality only for channel groups playing sounds created with FMOD_SOFTWARE. + FMOD_RESULT F_API getDSPHead (DSP **dsp); + FMOD_RESULT F_API addDSP (DSP *dsp, DSPConnection **connection); + + // Information only functions. + FMOD_RESULT F_API getName (char *name, int namelen); + FMOD_RESULT F_API getNumChannels (int *numchannels); + FMOD_RESULT F_API getChannel (int index, Channel **channel); + FMOD_RESULT F_API getSpectrum (float *spectrumarray, int numvalues, int channeloffset, FMOD_DSP_FFT_WINDOW windowtype); + FMOD_RESULT F_API getWaveData (float *wavearray, int numvalues, int channeloffset); + + // Userdata set/get. + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + /* + 'SoundGroup' API + */ + class SoundGroup + { + private: + + SoundGroup(); /* Constructor made private so user cannot statically instance a SoundGroup class. + Appropriate SoundGroup creation or retrieval function must be used. */ + public: + + FMOD_RESULT F_API release (); + FMOD_RESULT F_API getSystemObject (System **system); + + // SoundGroup control functions. + FMOD_RESULT F_API setMaxAudible (int maxaudible); + FMOD_RESULT F_API getMaxAudible (int *maxaudible); + FMOD_RESULT F_API setMaxAudibleBehavior (FMOD_SOUNDGROUP_BEHAVIOR behavior); + FMOD_RESULT F_API getMaxAudibleBehavior (FMOD_SOUNDGROUP_BEHAVIOR *behavior); + FMOD_RESULT F_API setMuteFadeSpeed (float speed); + FMOD_RESULT F_API getMuteFadeSpeed (float *speed); + FMOD_RESULT F_API setVolume (float volume); + FMOD_RESULT F_API getVolume (float *volume); + FMOD_RESULT F_API stop (); + + // Information only functions. + FMOD_RESULT F_API getName (char *name, int namelen); + FMOD_RESULT F_API getNumSounds (int *numsounds); + FMOD_RESULT F_API getSound (int index, Sound **sound); + FMOD_RESULT F_API getNumPlaying (int *numplaying); + + // Userdata set/get. + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + /* + 'DSP' API + */ + class DSP + { + private: + + DSP(); /* Constructor made private so user cannot statically instance a DSP class. + Appropriate DSP creation or retrieval function must be used. */ + public: + + FMOD_RESULT F_API release (); + FMOD_RESULT F_API getSystemObject (System **system); + + // Connection / disconnection / input and output enumeration. + FMOD_RESULT F_API addInput (DSP *target, DSPConnection **connection); + FMOD_RESULT F_API disconnectFrom (DSP *target); + FMOD_RESULT F_API disconnectAll (bool inputs, bool outputs); + FMOD_RESULT F_API remove (); + FMOD_RESULT F_API getNumInputs (int *numinputs); + FMOD_RESULT F_API getNumOutputs (int *numoutputs); + FMOD_RESULT F_API getInput (int index, DSP **input, DSPConnection **inputconnection); + FMOD_RESULT F_API getOutput (int index, DSP **output, DSPConnection **outputconnection); + + // DSP unit control. + FMOD_RESULT F_API setActive (bool active); + FMOD_RESULT F_API getActive (bool *active); + FMOD_RESULT F_API setBypass (bool bypass); + FMOD_RESULT F_API getBypass (bool *bypass); + FMOD_RESULT F_API setSpeakerActive (FMOD_SPEAKER speaker, bool active); + FMOD_RESULT F_API getSpeakerActive (FMOD_SPEAKER speaker, bool *active); + FMOD_RESULT F_API reset (); + + + // DSP parameter control. + FMOD_RESULT F_API setParameter (int index, float value); + FMOD_RESULT F_API getParameter (int index, float *value, char *valuestr, int valuestrlen); + FMOD_RESULT F_API getNumParameters (int *numparams); + FMOD_RESULT F_API getParameterInfo (int index, char *name, char *label, char *description, int descriptionlen, float *min, float *max); + FMOD_RESULT F_API showConfigDialog (void *hwnd, bool show); + + // DSP attributes. + FMOD_RESULT F_API getInfo (char *name, unsigned int *version, int *channels, int *configwidth, int *configheight); + FMOD_RESULT F_API getType (FMOD_DSP_TYPE *type); + FMOD_RESULT F_API setDefaults (float frequency, float volume, float pan, int priority); + FMOD_RESULT F_API getDefaults (float *frequency, float *volume, float *pan, int *priority); + + // Userdata set/get. + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + + /* + 'DSPConnection' API + */ + class DSPConnection + { + private: + + DSPConnection(); /* Constructor made private so user cannot statically instance a DSPConnection class. + Appropriate DSPConnection creation or retrieval function must be used. */ + + public: + + FMOD_RESULT F_API getInput (DSP **input); + FMOD_RESULT F_API getOutput (DSP **output); + FMOD_RESULT F_API setMix (float volume); + FMOD_RESULT F_API getMix (float *volume); + FMOD_RESULT F_API setLevels (FMOD_SPEAKER speaker, float *levels, int numlevels); + FMOD_RESULT F_API getLevels (FMOD_SPEAKER speaker, float *levels, int numlevels); + + // Userdata set/get. + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + + /* + 'Geometry' API + */ + class Geometry + { + private: + + Geometry(); /* Constructor made private so user cannot statically instance a Geometry class. + Appropriate Geometry creation or retrieval function must be used. */ + + public: + + FMOD_RESULT F_API release (); + + // Polygon manipulation. + FMOD_RESULT F_API addPolygon (float directocclusion, float reverbocclusion, bool doublesided, int numvertices, const FMOD_VECTOR *vertices, int *polygonindex); + FMOD_RESULT F_API getNumPolygons (int *numpolygons); + FMOD_RESULT F_API getMaxPolygons (int *maxpolygons, int *maxvertices); + FMOD_RESULT F_API getPolygonNumVertices (int index, int *numvertices); + FMOD_RESULT F_API setPolygonVertex (int index, int vertexindex, const FMOD_VECTOR *vertex); + FMOD_RESULT F_API getPolygonVertex (int index, int vertexindex, FMOD_VECTOR *vertex); + FMOD_RESULT F_API setPolygonAttributes (int index, float directocclusion, float reverbocclusion, bool doublesided); + FMOD_RESULT F_API getPolygonAttributes (int index, float *directocclusion, float *reverbocclusion, bool *doublesided); + + // Object manipulation. + FMOD_RESULT F_API setActive (bool active); + FMOD_RESULT F_API getActive (bool *active); + FMOD_RESULT F_API setRotation (const FMOD_VECTOR *forward, const FMOD_VECTOR *up); + FMOD_RESULT F_API getRotation (FMOD_VECTOR *forward, FMOD_VECTOR *up); + FMOD_RESULT F_API setPosition (const FMOD_VECTOR *position); + FMOD_RESULT F_API getPosition (FMOD_VECTOR *position); + FMOD_RESULT F_API setScale (const FMOD_VECTOR *scale); + FMOD_RESULT F_API getScale (FMOD_VECTOR *scale); + FMOD_RESULT F_API save (void *data, int *datasize); + + // Userdata set/get. + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + + /* + 'Reverb' API + */ + class Reverb + { + private: + + Reverb(); /* Constructor made private so user cannot statically instance a Reverb class. + Appropriate Reverb creation or retrieval function must be used. */ + + public: + + FMOD_RESULT F_API release (); + + // Reverb manipulation. + FMOD_RESULT F_API set3DAttributes (const FMOD_VECTOR *position, float mindistance, float maxdistance); + FMOD_RESULT F_API get3DAttributes (FMOD_VECTOR *position, float *mindistance,float *maxdistance); + FMOD_RESULT F_API setProperties (const FMOD_REVERB_PROPERTIES *properties); + FMOD_RESULT F_API getProperties (FMOD_REVERB_PROPERTIES *properties); + FMOD_RESULT F_API setActive (bool active); + FMOD_RESULT F_API getActive (bool *active); + + // Userdata set/get. + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; +} + +#endif diff --git a/CocosDenshion/third_party/fmod/api/inc/fmod_codec.h b/CocosDenshion/third_party/fmod/api/inc/fmod_codec.h new file mode 100644 index 0000000000..6198afa1b7 --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/inc/fmod_codec.h @@ -0,0 +1,159 @@ +/* ==================================================================================================== */ +/* FMOD Ex - codec development header file. Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */ +/* */ +/* Use this header if you are wanting to develop your own file format plugin to use with */ +/* FMOD's codec system. With this header you can make your own fileformat plugin that FMOD */ +/* can register and use. See the documentation and examples on how to make a working plugin. */ +/* */ +/* ==================================================================================================== */ + +#ifndef _FMOD_CODEC_H +#define _FMOD_CODEC_H + +typedef struct FMOD_CODEC_STATE FMOD_CODEC_STATE; +typedef struct FMOD_CODEC_WAVEFORMAT FMOD_CODEC_WAVEFORMAT; + +/* + Codec callbacks +*/ +typedef FMOD_RESULT (F_CALLBACK *FMOD_CODEC_OPENCALLBACK) (FMOD_CODEC_STATE *codec_state, FMOD_MODE usermode, FMOD_CREATESOUNDEXINFO *userexinfo); +typedef FMOD_RESULT (F_CALLBACK *FMOD_CODEC_CLOSECALLBACK) (FMOD_CODEC_STATE *codec_state); +typedef FMOD_RESULT (F_CALLBACK *FMOD_CODEC_READCALLBACK) (FMOD_CODEC_STATE *codec_state, void *buffer, unsigned int sizebytes, unsigned int *bytesread); +typedef FMOD_RESULT (F_CALLBACK *FMOD_CODEC_GETLENGTHCALLBACK) (FMOD_CODEC_STATE *codec_state, unsigned int *length, FMOD_TIMEUNIT lengthtype); +typedef FMOD_RESULT (F_CALLBACK *FMOD_CODEC_SETPOSITIONCALLBACK) (FMOD_CODEC_STATE *codec_state, int subsound, unsigned int position, FMOD_TIMEUNIT postype); +typedef FMOD_RESULT (F_CALLBACK *FMOD_CODEC_GETPOSITIONCALLBACK) (FMOD_CODEC_STATE *codec_state, unsigned int *position, FMOD_TIMEUNIT postype); +typedef FMOD_RESULT (F_CALLBACK *FMOD_CODEC_SOUNDCREATECALLBACK) (FMOD_CODEC_STATE *codec_state, int subsound, FMOD_SOUND *sound); +typedef FMOD_RESULT (F_CALLBACK *FMOD_CODEC_METADATACALLBACK) (FMOD_CODEC_STATE *codec_state, FMOD_TAGTYPE tagtype, char *name, void *data, unsigned int datalen, FMOD_TAGDATATYPE datatype, int unique); +typedef FMOD_RESULT (F_CALLBACK *FMOD_CODEC_GETWAVEFORMAT) (FMOD_CODEC_STATE *codec_state, int index, FMOD_CODEC_WAVEFORMAT *waveformat); + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + When creating a codec, declare one of these and provide the relevant callbacks and name for FMOD to use when it opens and reads a file. + + [REMARKS] + Members marked with [in] mean the variable can be written to. The user can set the value.
+ Members marked with [out] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_CODEC_STATE +] +*/ +typedef struct FMOD_CODEC_DESCRIPTION +{ + const char *name; /* [in] Name of the codec. */ + unsigned int version; /* [in] Plugin writer's version number. */ + int defaultasstream; /* [in] Tells FMOD to open the file as a stream when calling System::createSound, and not a static sample. Should normally be 0 (FALSE), because generally the user wants to decode the file into memory when using System::createSound. Mainly used for formats that decode for a very long time, or could use large amounts of memory when decoded. Usually sequenced formats such as mod/s3m/xm/it/midi fall into this category. It is mainly to stop users that don't know what they're doing from getting FMOD_ERR_MEMORY returned from createSound when they should have in fact called System::createStream or used FMOD_CREATESTREAM in System::createSound. */ + FMOD_TIMEUNIT timeunits; /* [in] When setposition codec is called, only these time formats will be passed to the codec. Use bitwise OR to accumulate different types. */ + FMOD_CODEC_OPENCALLBACK open; /* [in] Open callback for the codec for when FMOD tries to open a sound using this codec. */ + FMOD_CODEC_CLOSECALLBACK close; /* [in] Close callback for the codec for when FMOD tries to close a sound using this codec. */ + FMOD_CODEC_READCALLBACK read; /* [in] Read callback for the codec for when FMOD tries to read some data from the file to the destination format (specified in the open callback). */ + FMOD_CODEC_GETLENGTHCALLBACK getlength; /* [in] Callback to return the length of the song in whatever format required when Sound::getLength is called. */ + FMOD_CODEC_SETPOSITIONCALLBACK setposition; /* [in] Seek callback for the codec for when FMOD tries to seek within the file with Channel::setPosition. */ + FMOD_CODEC_GETPOSITIONCALLBACK getposition; /* [in] Tell callback for the codec for when FMOD tries to get the current position within the with Channel::getPosition. */ + FMOD_CODEC_SOUNDCREATECALLBACK soundcreate; /* [in] Sound creation callback for the codec when FMOD finishes creating the sound. (So the codec can set more parameters for the related created sound, ie loop points/mode or 3D attributes etc). */ + FMOD_CODEC_GETWAVEFORMAT getwaveformat; /* [in] Callback to tell FMOD about the waveformat of a particular subsound. This is to save memory, rather than saving 1000 FMOD_CODEC_WAVEFORMAT structures in the codec, the codec might have a more optimal way of storing this information. */ +} FMOD_CODEC_DESCRIPTION; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Set these values marked 'in' to tell fmod what sort of sound to create.
+ The format, channels and frequency tell FMOD what sort of hardware buffer to create when you initialize your code. So if you wrote an MP3 codec that decoded to stereo 16bit integer PCM, you would specify FMOD_SOUND_FORMAT_PCM16, and channels would be equal to 2.
+ Members marked as 'out' are set by fmod. Do not modify these. Simply specify 0 for these values when declaring the structure, FMOD will fill in the values for you after creation with the correct function pointers.
+ + [REMARKS] + Members marked with [in] mean the variable can be written to. The user can set the value.
+ Members marked with [out] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
+
+ An FMOD file might be from disk, memory or network, however the file may be opened by the user.
+
+ 'numsubsounds' should be 0 if the file is a normal single sound stream or sound. Examples of this would be .WAV, .WMA, .MP3, .AIFF.
+ 'numsubsounds' should be 1+ if the file is a container format, and does not contain wav data itself. Examples of these types would be CDDA (multiple CD tracks), FSB (contains multiple sounds), MIDI/MOD/S3M/XM/IT (contain instruments).
+ The arrays of format, channel, frequency, length and blockalign should point to arrays of information based on how many subsounds are in the format. If the number of subsounds is 0 then it should point to 1 of each attribute, the same as if the number of subsounds was 1. If subsounds was 100 for example, each pointer should point to an array of 100 of each attribute.
+ When a sound has 1 or more subsounds, you must play the individual sounds specified by first obtaining the subsound with Sound::getSubSound. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_SOUND_FORMAT + FMOD_FILE_READCALLBACK + FMOD_FILE_SEEKCALLBACK + FMOD_CODEC_METADATACALLBACK + Sound::getSubSound + Sound::getNumSubSounds +] +*/ +struct FMOD_CODEC_WAVEFORMAT +{ + char name[256]; /* [in] Name of sound.*/ + FMOD_SOUND_FORMAT format; /* [in] Format for (decompressed) codec output, ie FMOD_SOUND_FORMAT_PCM8, FMOD_SOUND_FORMAT_PCM16.*/ + int channels; /* [in] Number of channels used by codec, ie mono = 1, stereo = 2. */ + int frequency; /* [in] Default frequency in hz of the codec, ie 44100. */ + unsigned int lengthbytes; /* [in] Length in bytes of the source data. */ + unsigned int lengthpcm; /* [in] Length in decompressed, PCM samples of the file, ie length in seconds * frequency. Used for Sound::getLength and for memory allocation of static decompressed sample data. */ + int blockalign; /* [in] Blockalign in decompressed, PCM samples of the optimal decode chunk size for this format. The codec read callback will be called in multiples of this value. */ + int loopstart; /* [in] Loopstart in decompressed, PCM samples of file. */ + int loopend; /* [in] Loopend in decompressed, PCM samples of file. */ + FMOD_MODE mode; /* [in] Mode to determine whether the sound should by default load as looping, non looping, 2d or 3d. */ + unsigned int channelmask; /* [in] Microsoft speaker channel mask, as defined for WAVEFORMATEXTENSIBLE and is found in ksmedia.h. Leave at 0 to play in natural speaker order. */ +}; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Codec plugin structure that is passed into each callback.
+
+ Set these numsubsounds and waveformat members when called in FMOD_CODEC_OPENCALLBACK to tell fmod what sort of sound to create.
+
+ The format, channels and frequency tell FMOD what sort of hardware buffer to create when you initialize your code. So if you wrote an MP3 codec that decoded to stereo 16bit integer PCM, you would specify FMOD_SOUND_FORMAT_PCM16, and channels would be equal to 2.
+ + [REMARKS] + Members marked with [in] mean the variable can be written to. The user can set the value.
+ Members marked with [out] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
+
+ An FMOD file might be from disk, memory or internet, however the file may be opened by the user.
+
+ 'numsubsounds' should be 0 if the file is a normal single sound stream or sound. Examples of this would be .WAV, .WMA, .MP3, .AIFF.
+ 'numsubsounds' should be 1+ if the file is a container format, and does not contain wav data itself. Examples of these types would be CDDA (multiple CD tracks), FSB (contains multiple sounds), DLS (contain instruments).
+ The arrays of format, channel, frequency, length and blockalign should point to arrays of information based on how many subsounds are in the format. If the number of subsounds is 0 then it should point to 1 of each attribute, the same as if the number of subsounds was 1. If subsounds was 100 for example, each pointer should point to an array of 100 of each attribute.
+ When a sound has 1 or more subsounds, you must play the individual sounds specified by first obtaining the subsound with Sound::getSubSound. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_SOUND_FORMAT + FMOD_FILE_READCALLBACK + FMOD_FILE_SEEKCALLBACK + FMOD_CODEC_METADATACALLBACK + Sound::getSubSound + Sound::getNumSubSounds +] +*/ +struct FMOD_CODEC_STATE +{ + int numsubsounds; /* [in] Number of 'subsounds' in this sound. Anything other than 0 makes it a 'container' format (ie CDDA/DLS/FSB etc which contain 1 or more su bsounds). For most normal, single sound codec such as WAV/AIFF/MP3, this should be 0 as they are not a container for subsounds, they are the sound by itself. */ + FMOD_CODEC_WAVEFORMAT *waveformat; /* [in] Pointer to an array of format structures containing information about each sample. Can be 0 or NULL if FMOD_CODEC_GETWAVEFORMAT callback is preferred. The number of entries here must equal the number of subsounds defined in the subsound parameter. If numsubsounds = 0 then there should be 1 instance of this structure. */ + void *plugindata; /* [in] Plugin writer created data the codec author wants to attach to this object. */ + + void *filehandle; /* [out] This will return an internal FMOD file handle to use with the callbacks provided. */ + unsigned int filesize; /* [out] This will contain the size of the file in bytes. */ + FMOD_FILE_READCALLBACK fileread; /* [out] This will return a callable FMOD file function to use from codec. */ + FMOD_FILE_SEEKCALLBACK fileseek; /* [out] This will return a callable FMOD file function to use from codec. */ + FMOD_CODEC_METADATACALLBACK metadata; /* [out] This will return a callable FMOD metadata function to use from codec. */ +}; + +#endif + + diff --git a/CocosDenshion/third_party/fmod/api/inc/fmod_dsp.h b/CocosDenshion/third_party/fmod/api/inc/fmod_dsp.h new file mode 100644 index 0000000000..e3a5bebaff --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/inc/fmod_dsp.h @@ -0,0 +1,752 @@ +/* ========================================================================================== */ +/* FMOD Ex - DSP header file. Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */ +/* */ +/* Use this header if you are interested in delving deeper into the FMOD software mixing / */ +/* DSP engine. In this header you can find parameter structures for FMOD system reigstered */ +/* DSP effects and generators. */ +/* Also use this header if you are wanting to develop your own DSP plugin to use with FMOD's */ +/* dsp system. With this header you can make your own DSP plugin that FMOD can */ +/* register and use. See the documentation and examples on how to make a working plugin. */ +/* */ +/* ========================================================================================== */ + +#ifndef _FMOD_DSP_H +#define _FMOD_DSP_H + +typedef struct FMOD_DSP_STATE FMOD_DSP_STATE; + +/* + DSP callbacks +*/ +typedef FMOD_RESULT (F_CALLBACK *FMOD_DSP_CREATECALLBACK) (FMOD_DSP_STATE *dsp_state); +typedef FMOD_RESULT (F_CALLBACK *FMOD_DSP_RELEASECALLBACK) (FMOD_DSP_STATE *dsp_state); +typedef FMOD_RESULT (F_CALLBACK *FMOD_DSP_RESETCALLBACK) (FMOD_DSP_STATE *dsp_state); +typedef FMOD_RESULT (F_CALLBACK *FMOD_DSP_READCALLBACK) (FMOD_DSP_STATE *dsp_state, float *inbuffer, float *outbuffer, unsigned int length, int inchannels, int outchannels); +typedef FMOD_RESULT (F_CALLBACK *FMOD_DSP_SETPOSITIONCALLBACK)(FMOD_DSP_STATE *dsp_state, unsigned int pos); +typedef FMOD_RESULT (F_CALLBACK *FMOD_DSP_SETPARAMCALLBACK) (FMOD_DSP_STATE *dsp_state, int index, float value); +typedef FMOD_RESULT (F_CALLBACK *FMOD_DSP_GETPARAMCALLBACK) (FMOD_DSP_STATE *dsp_state, int index, float *value, char *valuestr); +typedef FMOD_RESULT (F_CALLBACK *FMOD_DSP_DIALOGCALLBACK) (FMOD_DSP_STATE *dsp_state, void *hwnd, int show); + +/* +[ENUM] +[ + [DESCRIPTION] + These definitions can be used for creating FMOD defined special effects or DSP units. + + [REMARKS] + To get them to be active, first create the unit, then add it somewhere into the DSP network, either at the front of the network near the soundcard unit to affect the global output (by using System::getDSPHead), or on a single channel (using Channel::getDSPHead). + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + System::createDSPByType +] +*/ +typedef enum +{ + FMOD_DSP_TYPE_UNKNOWN, /* This unit was created via a non FMOD plugin so has an unknown purpose. */ + FMOD_DSP_TYPE_MIXER, /* This unit does nothing but take inputs and mix them together then feed the result to the soundcard unit. */ + FMOD_DSP_TYPE_OSCILLATOR, /* This unit generates sine/square/saw/triangle or noise tones. */ + FMOD_DSP_TYPE_LOWPASS, /* This unit filters sound using a high quality, resonant lowpass filter algorithm but consumes more CPU time. */ + FMOD_DSP_TYPE_ITLOWPASS, /* This unit filters sound using a resonant lowpass filter algorithm that is used in Impulse Tracker, but with limited cutoff range (0 to 8060hz). */ + FMOD_DSP_TYPE_HIGHPASS, /* This unit filters sound using a resonant highpass filter algorithm. */ + FMOD_DSP_TYPE_ECHO, /* This unit produces an echo on the sound and fades out at the desired rate. */ + FMOD_DSP_TYPE_FLANGE, /* This unit produces a flange effect on the sound. */ + FMOD_DSP_TYPE_DISTORTION, /* This unit distorts the sound. */ + FMOD_DSP_TYPE_NORMALIZE, /* This unit normalizes or amplifies the sound to a certain level. */ + FMOD_DSP_TYPE_PARAMEQ, /* This unit attenuates or amplifies a selected frequency range. */ + FMOD_DSP_TYPE_PITCHSHIFT, /* This unit bends the pitch of a sound without changing the speed of playback. */ + FMOD_DSP_TYPE_CHORUS, /* This unit produces a chorus effect on the sound. */ + FMOD_DSP_TYPE_VSTPLUGIN, /* This unit allows the use of Steinberg VST plugins */ + FMOD_DSP_TYPE_WINAMPPLUGIN, /* This unit allows the use of Nullsoft Winamp plugins */ + FMOD_DSP_TYPE_ITECHO, /* This unit produces an echo on the sound and fades out at the desired rate as is used in Impulse Tracker. */ + FMOD_DSP_TYPE_COMPRESSOR, /* This unit implements dynamic compression (linked multichannel, wideband) */ + FMOD_DSP_TYPE_SFXREVERB, /* This unit implements SFX reverb */ + FMOD_DSP_TYPE_LOWPASS_SIMPLE, /* This unit filters sound using a simple lowpass with no resonance, but has flexible cutoff and is fast. */ + FMOD_DSP_TYPE_DELAY, /* This unit produces different delays on individual channels of the sound. */ + FMOD_DSP_TYPE_TREMOLO, /* This unit produces a tremolo / chopper effect on the sound. */ + FMOD_DSP_TYPE_LADSPAPLUGIN, /* This unit allows the use of LADSPA standard plugins. */ + FMOD_DSP_TYPE_HIGHPASS_SIMPLE, /* This unit filters sound using a simple highpass with no resonance, but has flexible cutoff and is fast. */ + FMOD_DSP_TYPE_FORCEINT = 65536 /* Makes sure this enum is signed 32bit. */ +} FMOD_DSP_TYPE; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure to define a parameter for a DSP unit. + + [REMARKS] + Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
+ Members marked with [w] mean the variable can be written to. The user can set the value.
+
+ The step parameter tells the gui or application that the parameter has a certain granularity.
+ For example in the example of cutoff frequency with a range from 100.0 to 22050.0 you might only want the selection to be in 10hz increments. For this you would simply use 10.0 as the step value.
+ For a boolean, you can use min = 0.0, max = 1.0, step = 1.0. This way the only possible values are 0.0 and 1.0.
+ Some applications may detect min = 0.0, max = 1.0, step = 1.0 and replace a graphical slider bar with a checkbox instead.
+ A step value of 1.0 would simulate integer values only.
+ A step value of 0.0 would mean the full floating point range is accessable.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + System::createDSP + DSP::setParameter +] +*/ +typedef struct FMOD_DSP_PARAMETERDESC +{ + float min; /* [w] Minimum value of the parameter (ie 100.0). */ + float max; /* [w] Maximum value of the parameter (ie 22050.0). */ + float defaultval; /* [w] Default value of parameter. */ + char name[16]; /* [w] Name of the parameter to be displayed (ie "Cutoff frequency"). */ + char label[16]; /* [w] Short string to be put next to value to denote the unit type (ie "hz"). */ + const char *description; /* [w] Description of the parameter to be displayed as a help item / tooltip for this parameter. */ +} FMOD_DSP_PARAMETERDESC; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + When creating a DSP unit, declare one of these and provide the relevant callbacks and name for FMOD to use when it creates and uses a DSP unit of this type. + + [REMARKS] + Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
+ Members marked with [w] mean the variable can be written to. The user can set the value.
+
+ There are 2 different ways to change a parameter in this architecture.
+ One is to use DSP::setParameter / DSP::getParameter. This is platform independant and is dynamic, so new unknown plugins can have their parameters enumerated and used.
+ The other is to use DSP::showConfigDialog. This is platform specific and requires a GUI, and will display a dialog box to configure the plugin.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + System::createDSP + FMOD_DSP_STATE +] +*/ +typedef struct FMOD_DSP_DESCRIPTION +{ + char name[32]; /* [w] Name of the unit to be displayed in the network. */ + unsigned int version; /* [w] Plugin writer's version number. */ + int channels; /* [w] Number of channels. Use 0 to process whatever number of channels is currently in the network. >0 would be mostly used if the unit is a unit that only generates sound. */ + FMOD_DSP_CREATECALLBACK create; /* [w] Create callback. This is called when DSP unit is created. Can be null. */ + FMOD_DSP_RELEASECALLBACK release; /* [w] Release callback. This is called just before the unit is freed so the user can do any cleanup needed for the unit. Can be null. */ + FMOD_DSP_RESETCALLBACK reset; /* [w] Reset callback. This is called by the user to reset any history buffers that may need resetting for a filter, when it is to be used or re-used for the first time to its initial clean state. Use to avoid clicks or artifacts. */ + FMOD_DSP_READCALLBACK read; /* [w] Read callback. Processing is done here. Can be null. */ + FMOD_DSP_SETPOSITIONCALLBACK setposition; /* [w] Set position callback. This is called if the unit wants to update its position info but not process data, or reset a cursor position internally if it is reading data from a certain source. Can be null. */ + + int numparameters; /* [w] Number of parameters used in this filter. The user finds this with DSP::getNumParameters */ + FMOD_DSP_PARAMETERDESC *paramdesc; /* [w] Variable number of parameter structures. */ + FMOD_DSP_SETPARAMCALLBACK setparameter; /* [w] This is called when the user calls DSP::setParameter. Can be null. */ + FMOD_DSP_GETPARAMCALLBACK getparameter; /* [w] This is called when the user calls DSP::getParameter. Can be null. */ + FMOD_DSP_DIALOGCALLBACK config; /* [w] This is called when the user calls DSP::showConfigDialog. Can be used to display a dialog to configure the filter. Can be null. */ + int configwidth; /* [w] Width of config dialog graphic if there is one. 0 otherwise.*/ + int configheight; /* [w] Height of config dialog graphic if there is one. 0 otherwise.*/ + void *userdata; /* [w] Optional. Specify 0 to ignore. This is user data to be attached to the DSP unit during creation. Access via DSP::getUserData. */ +} FMOD_DSP_DESCRIPTION; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + DSP plugin structure that is passed into each callback. + + [REMARKS] + Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
+ Members marked with [w] mean the variable can be written to. The user can set the value.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_DSP_DESCRIPTION +] +*/ +struct FMOD_DSP_STATE +{ + FMOD_DSP *instance; /* [r] Handle to the DSP hand the user created. Not to be modified. C++ users cast to FMOD::DSP to use. */ + void *plugindata; /* [w] Plugin writer created data the output author wants to attach to this object. */ + unsigned short speakermask; /* [w] Specifies which speakers the DSP effect is active on */ +}; + + +/* + =================================================================================================== + + FMOD built in effect parameters. + Use DSP::setParameter with these enums for the 'index' parameter. + + =================================================================================================== +*/ + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_OSCILLATOR filter. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_OSCILLATOR_TYPE, /* Waveform type. 0 = sine. 1 = square. 2 = sawup. 3 = sawdown. 4 = triangle. 5 = noise. */ + FMOD_DSP_OSCILLATOR_RATE /* Frequency of the sinewave in hz. 1.0 to 22000.0. Default = 220.0. */ +} FMOD_DSP_OSCILLATOR; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_LOWPASS filter. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_LOWPASS_CUTOFF, /* Lowpass cutoff frequency in hz. 10.0 to 22000.0. Default = 5000.0. */ + FMOD_DSP_LOWPASS_RESONANCE /* Lowpass resonance Q value. 1.0 to 10.0. Default = 1.0. */ +} FMOD_DSP_LOWPASS; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_ITLOWPASS filter.
+ This is different to the default FMOD_DSP_TYPE_ITLOWPASS filter in that it uses a different quality algorithm and is + the filter used to produce the correct sounding playback in .IT files.
+ FMOD Ex's .IT playback uses this filter.
+ + [REMARKS] + Note! This filter actually has a limited cutoff frequency below the specified maximum, due to its limited design, + so for a more open range filter use FMOD_DSP_LOWPASS or if you don't mind not having resonance, + FMOD_DSP_LOWPASS_SIMPLE.
+ The effective maximum cutoff is about 8060hz. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_ITLOWPASS_CUTOFF, /* Lowpass cutoff frequency in hz. 1.0 to 22000.0. Default = 5000.0/ */ + FMOD_DSP_ITLOWPASS_RESONANCE /* Lowpass resonance Q value. 0.0 to 127.0. Default = 1.0. */ +} FMOD_DSP_ITLOWPASS; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_HIGHPASS filter. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_HIGHPASS_CUTOFF, /* Highpass cutoff frequency in hz. 1.0 to output 22000.0. Default = 5000.0. */ + FMOD_DSP_HIGHPASS_RESONANCE /* Highpass resonance Q value. 1.0 to 10.0. Default = 1.0. */ +} FMOD_DSP_HIGHPASS; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_ECHO filter. + + [REMARKS] + Note. Every time the delay is changed, the plugin re-allocates the echo buffer. This means the echo will dissapear at that time while it refills its new buffer.
+ Larger echo delays result in larger amounts of memory allocated.
+
+ 'maxchannels' also dictates the amount of memory allocated. By default, the maxchannels value is 0. If FMOD is set to stereo, the echo unit will allocate enough memory for 2 channels. If it is 5.1, it will allocate enough memory for a 6 channel echo, etc.
+ If the echo effect is only ever applied to the global mix (ie it was added with System::addDSP), then 0 is the value to set as it will be enough to handle all speaker modes.
+ When the echo is added to a channel (ie Channel::addDSP) then the channel count that comes in could be anything from 1 to 8 possibly. It is only in this case where you might want to increase the channel count above the output's channel count.
+ If a channel echo is set to a lower number than the sound's channel count that is coming in, it will not echo the sound.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_ECHO_DELAY, /* Echo delay in ms. 10 to 5000. Default = 500. */ + FMOD_DSP_ECHO_DECAYRATIO, /* Echo decay per delay. 0 to 1. 1.0 = No decay, 0.0 = total decay (ie simple 1 line delay). Default = 0.5. */ + FMOD_DSP_ECHO_MAXCHANNELS, /* Maximum channels supported. 0 to 16. 0 = same as fmod's default output polyphony, 1 = mono, 2 = stereo etc. See remarks for more. Default = 0. It is suggested to leave at 0! */ + FMOD_DSP_ECHO_DRYMIX, /* Volume of original signal to pass to output. 0.0 to 1.0. Default = 1.0. */ + FMOD_DSP_ECHO_WETMIX /* Volume of echo signal to pass to output. 0.0 to 1.0. Default = 1.0. */ +} FMOD_DSP_ECHO; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_DELAY filter. + + [REMARKS] + Note. Every time MaxDelay is changed, the plugin re-allocates the delay buffer. This means the delay will dissapear at that time while it refills its new buffer.
+ A larger MaxDelay results in larger amounts of memory allocated.
+ Channel delays above MaxDelay will be clipped to MaxDelay and the delay buffer will not be resized.
+
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_DELAY_CH0, /* Channel #0 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH1, /* Channel #1 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH2, /* Channel #2 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH3, /* Channel #3 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH4, /* Channel #4 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH5, /* Channel #5 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH6, /* Channel #6 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH7, /* Channel #7 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH8, /* Channel #8 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH9, /* Channel #9 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH10, /* Channel #10 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH11, /* Channel #11 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH12, /* Channel #12 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH13, /* Channel #13 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH14, /* Channel #14 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_CH15, /* Channel #15 Delay in ms. 0 to 10000. Default = 0. */ + FMOD_DSP_DELAY_MAXDELAY /* Maximum delay in ms. 0 to 10000. Default = 10. */ +} FMOD_DSP_DELAY; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_FLANGE filter. + + [REMARKS] + Flange is an effect where the signal is played twice at the same time, and one copy slides back and forth creating a whooshing or flanging effect.
+ As there are 2 copies of the same signal, by default each signal is given 50% mix, so that the total is not louder than the original unaffected signal.
+
+ Flange depth is a percentage of a 10ms shift from the original signal. Anything above 10ms is not considered flange because to the ear it begins to 'echo' so 10ms is the highest value possible.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_FLANGE_DRYMIX, /* Volume of original signal to pass to output. 0.0 to 1.0. Default = 0.45. */ + FMOD_DSP_FLANGE_WETMIX, /* Volume of flange signal to pass to output. 0.0 to 1.0. Default = 0.55. */ + FMOD_DSP_FLANGE_DEPTH, /* Flange depth. 0.01 to 1.0. Default = 1.0. */ + FMOD_DSP_FLANGE_RATE /* Flange speed in hz. 0.0 to 20.0. Default = 0.1. */ +} FMOD_DSP_FLANGE; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_TREMOLO filter. + + [REMARKS] + The tremolo effect varies the amplitude of a sound. Depending on the settings, this unit can produce a tremolo, chopper or auto-pan effect.
+
+ The shape of the LFO (low freq. oscillator) can morphed between sine, triangle and sawtooth waves using the FMOD_DSP_TREMOLO_SHAPE and FMOD_DSP_TREMOLO_SKEW parameters.
+ FMOD_DSP_TREMOLO_DUTY and FMOD_DSP_TREMOLO_SQUARE are useful for a chopper-type effect where the first controls the on-time duration and second controls the flatness of the envelope.
+ FMOD_DSP_TREMOLO_SPREAD varies the LFO phase between channels to get an auto-pan effect. This works best with a sine shape LFO.
+ The LFO can be synchronized using the FMOD_DSP_TREMOLO_PHASE parameter which sets its instantaneous phase.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_TREMOLO_FREQUENCY, /* LFO frequency in Hz. 0.1 to 20. Default = 4. */ + FMOD_DSP_TREMOLO_DEPTH, /* Tremolo depth. 0 to 1. Default = 0. */ + FMOD_DSP_TREMOLO_SHAPE, /* LFO shape morph between triangle and sine. 0 to 1. Default = 0. */ + FMOD_DSP_TREMOLO_SKEW, /* Time-skewing of LFO cycle. -1 to 1. Default = 0. */ + FMOD_DSP_TREMOLO_DUTY, /* LFO on-time. 0 to 1. Default = 0.5. */ + FMOD_DSP_TREMOLO_SQUARE, /* Flatness of the LFO shape. 0 to 1. Default = 0. */ + FMOD_DSP_TREMOLO_PHASE, /* Instantaneous LFO phase. 0 to 1. Default = 0. */ + FMOD_DSP_TREMOLO_SPREAD /* Rotation / auto-pan effect. -1 to 1. Default = 0. */ +} FMOD_DSP_TREMOLO; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_DISTORTION filter. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_DISTORTION_LEVEL /* Distortion value. 0.0 to 1.0. Default = 0.5. */ +} FMOD_DSP_DISTORTION; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_NORMALIZE filter. + + [REMARKS] + Normalize amplifies the sound based on the maximum peaks within the signal.
+ For example if the maximum peaks in the signal were 50% of the bandwidth, it would scale the whole sound by 2.
+ The lower threshold value makes the normalizer ignores peaks below a certain point, to avoid over-amplification if a loud signal suddenly came in, and also to avoid amplifying to maximum things like background hiss.
+
+ Because FMOD is a realtime audio processor, it doesn't have the luxury of knowing the peak for the whole sound (ie it can't see into the future), so it has to process data as it comes in.
+ To avoid very sudden changes in volume level based on small samples of new data, fmod fades towards the desired amplification which makes for smooth gain control. The fadetime parameter can control this.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_NORMALIZE_FADETIME, /* Time to ramp the silence to full in ms. 0.0 to 20000.0. Default = 5000.0. */ + FMOD_DSP_NORMALIZE_THRESHHOLD, /* Lower volume range threshold to ignore. 0.0 to 1.0. Default = 0.1. Raise higher to stop amplification of very quiet signals. */ + FMOD_DSP_NORMALIZE_MAXAMP /* Maximum amplification allowed. 1.0 to 100000.0. Default = 20.0. 1.0 = no amplifaction, higher values allow more boost. */ +} FMOD_DSP_NORMALIZE; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_PARAMEQ filter. + + [REMARKS] + Parametric EQ is a bandpass filter that attenuates or amplifies a selected frequency and its neighbouring frequencies.
+
+ To create a multi-band EQ create multiple FMOD_DSP_TYPE_PARAMEQ units and set each unit to different frequencies, for example 1000hz, 2000hz, 4000hz, 8000hz, 16000hz with a range of 1 octave each.
+
+ When a frequency has its gain set to 1.0, the sound will be unaffected and represents the original signal exactly.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_PARAMEQ_CENTER, /* Frequency center. 20.0 to 22000.0. Default = 8000.0. */ + FMOD_DSP_PARAMEQ_BANDWIDTH, /* Octave range around the center frequency to filter. 0.2 to 5.0. Default = 1.0. */ + FMOD_DSP_PARAMEQ_GAIN /* Frequency Gain. 0.05 to 3.0. Default = 1.0. */ +} FMOD_DSP_PARAMEQ; + + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_PITCHSHIFT filter. + + [REMARKS] + This pitch shifting unit can be used to change the pitch of a sound without speeding it up or slowing it down.
+ It can also be used for time stretching or scaling, for example if the pitch was doubled, and the frequency of the sound was halved, the pitch of the sound would sound correct but it would be twice as slow.
+
+ Warning! This filter is very computationally expensive! Similar to a vocoder, it requires several overlapping FFT and IFFT's to produce smooth output, and can require around 440mhz for 1 stereo 48khz signal using the default settings.
+ Reducing the signal to mono will half the cpu usage.
+ Reducing this will lower audio quality, but what settings to use are largely dependant on the sound being played. A noisy polyphonic signal will need higher fft size compared to a speaking voice for example.
+
+ This pitch shifter is based on the pitch shifter code at http://www.dspdimension.com, written by Stephan M. Bernsee.
+ The original code is COPYRIGHT 1999-2003 Stephan M. Bernsee .
+
+ 'maxchannels' dictates the amount of memory allocated. By default, the maxchannels value is 0. If FMOD is set to stereo, the pitch shift unit will allocate enough memory for 2 channels. If it is 5.1, it will allocate enough memory for a 6 channel pitch shift, etc.
+ If the pitch shift effect is only ever applied to the global mix (ie it was added with System::addDSP), then 0 is the value to set as it will be enough to handle all speaker modes.
+ When the pitch shift is added to a channel (ie Channel::addDSP) then the channel count that comes in could be anything from 1 to 8 possibly. It is only in this case where you might want to increase the channel count above the output's channel count.
+ If a channel pitch shift is set to a lower number than the sound's channel count that is coming in, it will not pitch shift the sound.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_PITCHSHIFT_PITCH, /* Pitch value. 0.5 to 2.0. Default = 1.0. 0.5 = one octave down, 2.0 = one octave up. 1.0 does not change the pitch. */ + FMOD_DSP_PITCHSHIFT_FFTSIZE, /* FFT window size. 256, 512, 1024, 2048, 4096. Default = 1024. Increase this to reduce 'smearing'. This effect is a warbling sound similar to when an mp3 is encoded at very low bitrates. */ + FMOD_DSP_PITCHSHIFT_OVERLAP, /* Removed. Do not use. FMOD now uses 4 overlaps and cannot be changed. */ + FMOD_DSP_PITCHSHIFT_MAXCHANNELS /* Maximum channels supported. 0 to 16. 0 = same as fmod's default output polyphony, 1 = mono, 2 = stereo etc. See remarks for more. Default = 0. It is suggested to leave at 0! */ +} FMOD_DSP_PITCHSHIFT; + + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_CHORUS filter. + + [REMARKS] + Chrous is an effect where the sound is more 'spacious' due to 1 to 3 versions of the sound being played along side the original signal but with the pitch of each copy modulating on a sine wave.
+ This is a highly configurable chorus unit. It supports 3 taps, small and large delay times and also feedback.
+ This unit also could be used to do a simple echo, or a flange effect. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_CHORUS_DRYMIX, /* Volume of original signal to pass to output. 0.0 to 1.0. Default = 0.5. */ + FMOD_DSP_CHORUS_WETMIX1, /* Volume of 1st chorus tap. 0.0 to 1.0. Default = 0.5. */ + FMOD_DSP_CHORUS_WETMIX2, /* Volume of 2nd chorus tap. This tap is 90 degrees out of phase of the first tap. 0.0 to 1.0. Default = 0.5. */ + FMOD_DSP_CHORUS_WETMIX3, /* Volume of 3rd chorus tap. This tap is 90 degrees out of phase of the second tap. 0.0 to 1.0. Default = 0.5. */ + FMOD_DSP_CHORUS_DELAY, /* Chorus delay in ms. 0.1 to 100.0. Default = 40.0 ms. */ + FMOD_DSP_CHORUS_RATE, /* Chorus modulation rate in hz. 0.0 to 20.0. Default = 0.8 hz. */ + FMOD_DSP_CHORUS_DEPTH, /* Chorus modulation depth. 0.0 to 1.0. Default = 0.03. */ + FMOD_DSP_CHORUS_FEEDBACK /* Chorus feedback. Controls how much of the wet signal gets fed back into the chorus buffer. 0.0 to 1.0. Default = 0.0. */ +} FMOD_DSP_CHORUS; + + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_ITECHO filter.
+ This is effectively a software based echo filter that emulates the DirectX DMO echo effect. Impulse tracker files can support this, and FMOD will produce the effect on ANY platform, not just those that support DirectX effects!
+ + [REMARKS] + Note. Every time the delay is changed, the plugin re-allocates the echo buffer. This means the echo will dissapear at that time while it refills its new buffer.
+ Larger echo delays result in larger amounts of memory allocated.
+
+ As this is a stereo filter made mainly for IT playback, it is targeted for stereo signals.
+ With mono signals only the FMOD_DSP_ITECHO_LEFTDELAY is used.
+ For multichannel signals (>2) there will be no echo on those channels.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::SetParameter + DSP::GetParameter + FMOD_DSP_TYPE + System::addDSP +] +*/ +typedef enum +{ + FMOD_DSP_ITECHO_WETDRYMIX, /* Ratio of wet (processed) signal to dry (unprocessed) signal. Must be in the range from 0.0 through 100.0 (all wet). The default value is 50. */ + FMOD_DSP_ITECHO_FEEDBACK, /* Percentage of output fed back into input, in the range from 0.0 through 100.0. The default value is 50. */ + FMOD_DSP_ITECHO_LEFTDELAY, /* Delay for left channel, in milliseconds, in the range from 1.0 through 2000.0. The default value is 500 ms. */ + FMOD_DSP_ITECHO_RIGHTDELAY, /* Delay for right channel, in milliseconds, in the range from 1.0 through 2000.0. The default value is 500 ms. */ + FMOD_DSP_ITECHO_PANDELAY /* Value that specifies whether to swap left and right delays with each successive echo. The default value is zero, meaning no swap. Possible values are defined as 0.0 (equivalent to FALSE) and 1.0 (equivalent to TRUE). CURRENTLY NOT SUPPORTED. */ +} FMOD_DSP_ITECHO; + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_COMPRESSOR unit. + This is a simple linked multichannel software limiter that is uniform across the whole spectrum.
+ + [REMARKS] + The limiter is not guaranteed to catch every peak above the threshold level, + because it cannot apply gain reduction instantaneously - the time delay is + determined by the attack time. However setting the attack time too short will + distort the sound, so it is a compromise. High level peaks can be avoided by + using a short attack time - but not too short, and setting the threshold a few + decibels below the critical level. +
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::SetParameter + DSP::GetParameter + FMOD_DSP_TYPE + System::addDSP +] +*/ +typedef enum +{ + FMOD_DSP_COMPRESSOR_THRESHOLD, /* Threshold level (dB) in the range from -60 through 0. The default value is 0. */ + FMOD_DSP_COMPRESSOR_ATTACK, /* Gain reduction attack time (milliseconds), in the range from 10 through 200. The default value is 50. */ + FMOD_DSP_COMPRESSOR_RELEASE, /* Gain reduction release time (milliseconds), in the range from 20 through 1000. The default value is 50. */ + FMOD_DSP_COMPRESSOR_GAINMAKEUP /* Make-up gain (dB) applied after limiting, in the range from 0 through 30. The default value is 0. */ +} FMOD_DSP_COMPRESSOR; + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_SFXREVERB unit.
+ + [REMARKS] + This is a high quality I3DL2 based reverb.
+ On top of the I3DL2 property set, "Dry Level" is also included to allow the dry mix to be changed.
+
+ These properties can be set with presets in FMOD_REVERB_PRESETS. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::SetParameter + DSP::GetParameter + FMOD_DSP_TYPE + System::addDSP + FMOD_REVERB_PRESETS +] +*/ +typedef enum +{ + FMOD_DSP_SFXREVERB_DRYLEVEL, /* Dry Level : Mix level of dry signal in output in mB. Ranges from -10000.0 to 0.0. Default is 0. */ + FMOD_DSP_SFXREVERB_ROOM, /* Room : Room effect level at low frequencies in mB. Ranges from -10000.0 to 0.0. Default is -10000.0. */ + FMOD_DSP_SFXREVERB_ROOMHF, /* Room HF : Room effect high-frequency level re. low frequency level in mB. Ranges from -10000.0 to 0.0. Default is 0.0. */ + FMOD_DSP_SFXREVERB_DECAYTIME, /* Decay Time : Reverberation decay time at low-frequencies in seconds. Ranges from 0.1 to 20.0. Default is 1.0. */ + FMOD_DSP_SFXREVERB_DECAYHFRATIO, /* Decay HF Ratio : High-frequency to low-frequency decay time ratio. Ranges from 0.1 to 2.0. Default is 0.5. */ + FMOD_DSP_SFXREVERB_REFLECTIONSLEVEL, /* Reflections : Early reflections level relative to room effect in mB. Ranges from -10000.0 to 1000.0. Default is -10000.0. */ + FMOD_DSP_SFXREVERB_REFLECTIONSDELAY, /* Reflect Delay : Delay time of first reflection in seconds. Ranges from 0.0 to 0.3. Default is 0.02. */ + FMOD_DSP_SFXREVERB_REVERBLEVEL, /* Reverb : Late reverberation level relative to room effect in mB. Ranges from -10000.0 to 2000.0. Default is 0.0. */ + FMOD_DSP_SFXREVERB_REVERBDELAY, /* Reverb Delay : Late reverberation delay time relative to first reflection in seconds. Ranges from 0.0 to 0.1. Default is 0.04. */ + FMOD_DSP_SFXREVERB_DIFFUSION, /* Diffusion : Reverberation diffusion (echo density) in percent. Ranges from 0.0 to 100.0. Default is 100.0. */ + FMOD_DSP_SFXREVERB_DENSITY, /* Density : Reverberation density (modal density) in percent. Ranges from 0.0 to 100.0. Default is 100.0. */ + FMOD_DSP_SFXREVERB_HFREFERENCE, /* HF Reference : Reference high frequency in Hz. Ranges from 20.0 to 20000.0. Default is 5000.0. */ + FMOD_DSP_SFXREVERB_ROOMLF, /* Room LF : Room effect low-frequency level in mB. Ranges from -10000.0 to 0.0. Default is 0.0. */ + FMOD_DSP_SFXREVERB_LFREFERENCE /* LF Reference : Reference low-frequency in Hz. Ranges from 20.0 to 1000.0. Default is 250.0. */ +} FMOD_DSP_SFXREVERB; + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_LOWPASS_SIMPLE filter.
+ This is a very simple low pass filter, based on two single-pole RC time-constant modules. + The emphasis is on speed rather than accuracy, so this should not be used for task requiring critical filtering.
+ + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_LOWPASS_SIMPLE_CUTOFF /* Lowpass cutoff frequency in hz. 10.0 to 22000.0. Default = 5000.0 */ +} FMOD_DSP_LOWPASS_SIMPLE; + +/* +[ENUM] +[ + [DESCRIPTION] + Parameter types for the FMOD_DSP_TYPE_HIGHPASS_SIMPLE filter.
+ This is a very simple single-order high pass filter. + The emphasis is on speed rather than accuracy, so this should not be used for task requiring critical filtering.
+ + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + DSP::setParameter + DSP::getParameter + FMOD_DSP_TYPE +] +*/ +typedef enum +{ + FMOD_DSP_HIGHPASS_SIMPLE_CUTOFF /* Highpass cutoff frequency in hz. 10.0 to 22000.0. Default = 1000.0 */ +} FMOD_DSP_HIGHPASS_SIMPLE; + +#endif + diff --git a/CocosDenshion/third_party/fmod/api/inc/fmod_errors.h b/CocosDenshion/third_party/fmod/api/inc/fmod_errors.h new file mode 100644 index 0000000000..220e06baae --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/inc/fmod_errors.h @@ -0,0 +1,127 @@ +/*$ preserve start $*/ + +/* ============================================================================================== */ +/* FMOD Ex - Error string header file. Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */ +/* */ +/* Use this header if you want to store or display a string version / english explanation of */ +/* the FMOD error codes. */ +/* */ +/* ============================================================================================== */ + +#ifndef _FMOD_ERRORS_H +#define _FMOD_ERRORS_H + +#include "fmod.h" + +#ifdef __GNUC__ +static const char *FMOD_ErrorString(FMOD_RESULT errcode) __attribute__((unused)); +#endif + +static const char *FMOD_ErrorString(FMOD_RESULT errcode) +{ + switch (errcode) + { +/*$ preserve end $*/ + case FMOD_ERR_ALREADYLOCKED: return "Tried to call lock a second time before unlock was called. "; + case FMOD_ERR_BADCOMMAND: return "Tried to call a function on a data type that does not allow this type of functionality (ie calling Sound::lock on a streaming sound). "; + case FMOD_ERR_CDDA_DRIVERS: return "Neither NTSCSI nor ASPI could be initialised. "; + case FMOD_ERR_CDDA_INIT: return "An error occurred while initialising the CDDA subsystem. "; + case FMOD_ERR_CDDA_INVALID_DEVICE: return "Couldn't find the specified device. "; + case FMOD_ERR_CDDA_NOAUDIO: return "No audio tracks on the specified disc. "; + case FMOD_ERR_CDDA_NODEVICES: return "No CD/DVD devices were found. "; + case FMOD_ERR_CDDA_NODISC: return "No disc present in the specified drive. "; + case FMOD_ERR_CDDA_READ: return "A CDDA read error occurred. "; + case FMOD_ERR_CHANNEL_ALLOC: return "Error trying to allocate a channel. "; + case FMOD_ERR_CHANNEL_STOLEN: return "The specified channel has been reused to play another sound. "; + case FMOD_ERR_COM: return "A Win32 COM related error occured. COM failed to initialize or a QueryInterface failed meaning a Windows codec or driver was not installed properly. "; + case FMOD_ERR_DMA: return "DMA Failure. See debug output for more information. "; + case FMOD_ERR_DSP_CONNECTION: return "DSP connection error. Connection possibly caused a cyclic dependancy. Or tried to connect a tree too many units deep (more than 128). "; + case FMOD_ERR_DSP_FORMAT: return "DSP Format error. A DSP unit may have attempted to connect to this network with the wrong format. "; + case FMOD_ERR_DSP_NOTFOUND: return "DSP connection error. Couldn't find the DSP unit specified. "; + case FMOD_ERR_DSP_RUNNING: return "DSP error. Cannot perform this operation while the network is in the middle of running. This will most likely happen if a connection or disconnection is attempted in a DSP callback. "; + case FMOD_ERR_DSP_TOOMANYCONNECTIONS: return "DSP connection error. The unit being connected to or disconnected should only have 1 input or output. "; + case FMOD_ERR_EVENT_ALREADY_LOADED: return "The specified project has already been loaded. Having multiple copies of the same project loaded simultaneously is forbidden. "; + case FMOD_ERR_EVENT_FAILED: return "An Event failed to be retrieved, most likely due to 'just fail' being specified as the max playbacks behavior. "; + case FMOD_ERR_EVENT_GUIDCONFLICT: return "An event with the same GUID already exists. "; + case FMOD_ERR_EVENT_INFOONLY: return "Can't execute this command on an EVENT_INFOONLY event. "; + case FMOD_ERR_EVENT_INTERNAL: return "An error occured that wasn't supposed to. See debug log for reason. "; + case FMOD_ERR_EVENT_MAXSTREAMS: return "Event failed because 'Max streams' was hit when FMOD_EVENT_INIT_FAIL_ON_MAXSTREAMS was specified. "; + case FMOD_ERR_EVENT_MISMATCH: return "FSB mismatches the FEV it was compiled with, the stream/sample mode it was meant to be created with was different, or the FEV was built for a different platform. "; + case FMOD_ERR_EVENT_NAMECONFLICT: return "A category with the same name already exists. "; + case FMOD_ERR_EVENT_NEEDSSIMPLE: return "Tried to call a function on a complex event that's only supported by simple events. "; + case FMOD_ERR_EVENT_NOTFOUND: return "The requested event, event group, event category or event property could not be found. "; + case FMOD_ERR_FILE_BAD: return "Error loading file. "; + case FMOD_ERR_FILE_COULDNOTSEEK: return "Couldn't perform seek operation. This is a limitation of the medium (ie netstreams) or the file format. "; + case FMOD_ERR_FILE_DISKEJECTED: return "Media was ejected while reading. "; + case FMOD_ERR_FILE_EOF: return "End of file unexpectedly reached while trying to read essential data (truncated data?). "; + case FMOD_ERR_FILE_NOTFOUND: return "File not found. "; + case FMOD_ERR_FILE_UNWANTED: return "Unwanted file access occured. "; + case FMOD_ERR_FORMAT: return "Unsupported file or audio format. "; + case FMOD_ERR_HTTP: return "A HTTP error occurred. This is a catch-all for HTTP errors not listed elsewhere. "; + case FMOD_ERR_HTTP_ACCESS: return "The specified resource requires authentication or is forbidden. "; + case FMOD_ERR_HTTP_PROXY_AUTH: return "Proxy authentication is required to access the specified resource. "; + case FMOD_ERR_HTTP_SERVER_ERROR: return "A HTTP server error occurred. "; + case FMOD_ERR_HTTP_TIMEOUT: return "The HTTP request timed out. "; + case FMOD_ERR_INITIALIZATION: return "FMOD was not initialized correctly to support this function. "; + case FMOD_ERR_INITIALIZED: return "Cannot call this command after System::init. "; + case FMOD_ERR_INTERNAL: return "An error occured that wasn't supposed to. Contact support. "; + case FMOD_ERR_INVALID_ADDRESS: return "On Xbox 360, this memory address passed to FMOD must be physical, (ie allocated with XPhysicalAlloc.) "; + case FMOD_ERR_INVALID_FLOAT: return "Value passed in was a NaN, Inf or denormalized float. "; + case FMOD_ERR_INVALID_HANDLE: return "An invalid object handle was used. "; + case FMOD_ERR_INVALID_PARAM: return "An invalid parameter was passed to this function. "; + case FMOD_ERR_INVALID_POSITION: return "An invalid seek position was passed to this function. "; + case FMOD_ERR_INVALID_SPEAKER: return "An invalid speaker was passed to this function based on the current speaker mode. "; + case FMOD_ERR_INVALID_SYNCPOINT: return "The syncpoint did not come from this sound handle. "; + case FMOD_ERR_INVALID_VECTOR: return "The vectors passed in are not unit length, or perpendicular. "; + case FMOD_ERR_MAXAUDIBLE: return "Reached maximum audible playback count for this sound's soundgroup. "; + case FMOD_ERR_MEMORY: return "Not enough memory or resources. "; + case FMOD_ERR_MEMORY_CANTPOINT: return "Can't use FMOD_OPENMEMORY_POINT on non PCM source data, or non mp3/xma/adpcm data if FMOD_CREATECOMPRESSEDSAMPLE was used. "; + case FMOD_ERR_MEMORY_SRAM: return "Not enough memory or resources on console sound ram. "; + case FMOD_ERR_MUSIC_NOCALLBACK: return "The music callback is required, but it has not been set. "; + case FMOD_ERR_MUSIC_NOTFOUND: return "The requested music entity could not be found. "; + case FMOD_ERR_MUSIC_UNINITIALIZED: return "Music system is not initialized probably because no music data is loaded. "; + case FMOD_ERR_NEEDS2D: return "Tried to call a command on a 3d sound when the command was meant for 2d sound. "; + case FMOD_ERR_NEEDS3D: return "Tried to call a command on a 2d sound when the command was meant for 3d sound. "; + case FMOD_ERR_NEEDSHARDWARE: return "Tried to use a feature that requires hardware support. (ie trying to play a GCADPCM compressed sound in software on Wii). "; + case FMOD_ERR_NEEDSSOFTWARE: return "Tried to use a feature that requires the software engine. Software engine has either been turned off, or command was executed on a hardware channel which does not support this feature. "; + case FMOD_ERR_NET_CONNECT: return "Couldn't connect to the specified host. "; + case FMOD_ERR_NET_SOCKET_ERROR: return "A socket error occurred. This is a catch-all for socket-related errors not listed elsewhere. "; + case FMOD_ERR_NET_URL: return "The specified URL couldn't be resolved. "; + case FMOD_ERR_NET_WOULD_BLOCK: return "Operation on a non-blocking socket could not complete immediately. "; + case FMOD_ERR_NOTREADY: return "Operation could not be performed because specified sound/DSP connection is not ready. "; + case FMOD_ERR_OUTPUT_ALLOCATED: return "Error initializing output device, but more specifically, the output device is already in use and cannot be reused. "; + case FMOD_ERR_OUTPUT_CREATEBUFFER: return "Error creating hardware sound buffer. "; + case FMOD_ERR_OUTPUT_DRIVERCALL: return "A call to a standard soundcard driver failed, which could possibly mean a bug in the driver or resources were missing or exhausted. "; + case FMOD_ERR_OUTPUT_ENUMERATION: return "Error enumerating the available driver list. List may be inconsistent due to a recent device addition or removal. "; + case FMOD_ERR_OUTPUT_FORMAT: return "Soundcard does not support the minimum features needed for this soundsystem (16bit stereo output). "; + case FMOD_ERR_OUTPUT_INIT: return "Error initializing output device. "; + case FMOD_ERR_OUTPUT_NOHARDWARE: return "FMOD_HARDWARE was specified but the sound card does not have the resources necessary to play it. "; + case FMOD_ERR_OUTPUT_NOSOFTWARE: return "Attempted to create a software sound but no software channels were specified in System::init. "; + case FMOD_ERR_PAN: return "Panning only works with mono or stereo sound sources. "; + case FMOD_ERR_PLUGIN: return "An unspecified error has been returned from a 3rd party plugin. "; + case FMOD_ERR_PLUGIN_INSTANCES: return "The number of allowed instances of a plugin has been exceeded. "; + case FMOD_ERR_PLUGIN_MISSING: return "A requested output, dsp unit type or codec was not available. "; + case FMOD_ERR_PLUGIN_RESOURCE: return "A resource that the plugin requires cannot be found. (ie the DLS file for MIDI playback) "; + case FMOD_ERR_PRELOADED: return "The specified sound is still in use by the event system, call EventSystem::unloadFSB before trying to release it. "; + case FMOD_ERR_PROGRAMMERSOUND: return "The specified sound is still in use by the event system, wait for the event which is using it finish with it. "; + case FMOD_ERR_RECORD: return "An error occured trying to initialize the recording device. "; + case FMOD_ERR_REVERB_INSTANCE: return "Specified instance in FMOD_REVERB_PROPERTIES couldn't be set. Most likely because it is an invalid instance number or the reverb doesnt exist. "; + case FMOD_ERR_SUBSOUNDS: return "The error occured because the sound referenced contains subsounds when it shouldn't have, or it doesn't contain subsounds when it should have. The operation may also not be able to be performed on a parent sound, or a parent sound was played without setting up a sentence first. "; + case FMOD_ERR_SUBSOUND_ALLOCATED: return "This subsound is already being used by another sound, you cannot have more than one parent to a sound. Null out the other parent's entry first. "; + case FMOD_ERR_SUBSOUND_CANTMOVE: return "Shared subsounds cannot be replaced or moved from their parent stream, such as when the parent stream is an FSB file. "; + case FMOD_ERR_SUBSOUND_MODE: return "The subsound's mode bits do not match with the parent sound's mode bits. See documentation for function that it was called with. "; + case FMOD_ERR_TAGNOTFOUND: return "The specified tag could not be found or there are no tags. "; + case FMOD_ERR_TOOMANYCHANNELS: return "The sound created exceeds the allowable input channel count. This can be increased using the maxinputchannels parameter in System::setSoftwareFormat. "; + case FMOD_ERR_UNIMPLEMENTED: return "Something in FMOD hasn't been implemented when it should be! contact support! "; + case FMOD_ERR_UNINITIALIZED: return "This command failed because System::init or System::setDriver was not called. "; + case FMOD_ERR_UNSUPPORTED: return "A command issued was not supported by this object. Possibly a plugin without certain callbacks specified. "; + case FMOD_ERR_UPDATE: return "An error caused by System::update occured. "; + case FMOD_ERR_VERSION: return "The version number of this file format is not supported. "; + case FMOD_OK: return "No errors."; + default : return "Unknown error."; +/*$ preserve start $*/ + }; +} + +#endif +/*$ preserve end $*/ diff --git a/CocosDenshion/third_party/fmod/api/inc/fmod_memoryinfo.h b/CocosDenshion/third_party/fmod/api/inc/fmod_memoryinfo.h new file mode 100644 index 0000000000..e6cdab6ec2 --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/inc/fmod_memoryinfo.h @@ -0,0 +1,201 @@ +/* ============================================================================================= */ +/* FMOD Ex - Memory info header file. Copyright (c), Firelight Technologies Pty, Ltd. 2008-2011. */ +/* */ +/* Use this header if you are interested in getting detailed information on FMOD's memory */ +/* usage. See the documentation for more details. */ +/* */ +/* ============================================================================================= */ + +#ifndef _FMOD_MEMORYINFO_H +#define _FMOD_MEMORYINFO_H + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure to be filled with detailed memory usage information of an FMOD object + + [REMARKS] + Every public FMOD class has a getMemoryInfo function which can be used to get detailed information on what memory resources are associated with the object in question. + On return from getMemoryInfo, each member of this structure will hold the amount of memory used for its type in bytes.
+
+ Members marked with [in] mean the user sets the value before passing it to the function.
+ Members marked with [out] mean FMOD sets the value to be used after the function exits.
+ + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + System::getMemoryInfo + EventSystem::getMemoryInfo + FMOD_MEMBITS + FMOD_EVENT_MEMBITS +] +*/ +typedef struct FMOD_MEMORY_USAGE_DETAILS +{ + unsigned int other; /* [out] Memory not accounted for by other types */ + unsigned int string; /* [out] String data */ + unsigned int system; /* [out] System object and various internals */ + unsigned int plugins; /* [out] Plugin objects and internals */ + unsigned int output; /* [out] Output module object and internals */ + unsigned int channel; /* [out] Channel related memory */ + unsigned int channelgroup; /* [out] ChannelGroup objects and internals */ + unsigned int codec; /* [out] Codecs allocated for streaming */ + unsigned int file; /* [out] File buffers and structures */ + unsigned int sound; /* [out] Sound objects and internals */ + unsigned int secondaryram; /* [out] Sound data stored in secondary RAM */ + unsigned int soundgroup; /* [out] SoundGroup objects and internals */ + unsigned int streambuffer; /* [out] Stream buffer memory */ + unsigned int dspconnection; /* [out] DSPConnection objects and internals */ + unsigned int dsp; /* [out] DSP implementation objects */ + unsigned int dspcodec; /* [out] Realtime file format decoding DSP objects */ + unsigned int profile; /* [out] Profiler memory footprint. */ + unsigned int recordbuffer; /* [out] Buffer used to store recorded data from microphone */ + unsigned int reverb; /* [out] Reverb implementation objects */ + unsigned int reverbchannelprops; /* [out] Reverb channel properties structs */ + unsigned int geometry; /* [out] Geometry objects and internals */ + unsigned int syncpoint; /* [out] Sync point memory. */ + unsigned int eventsystem; /* [out] EventSystem and various internals */ + unsigned int musicsystem; /* [out] MusicSystem and various internals */ + unsigned int fev; /* [out] Definition of objects contained in all loaded projects e.g. events, groups, categories */ + unsigned int memoryfsb; /* [out] Data loaded with preloadFSB */ + unsigned int eventproject; /* [out] EventProject objects and internals */ + unsigned int eventgroupi; /* [out] EventGroup objects and internals */ + unsigned int soundbankclass; /* [out] Objects used to manage wave banks */ + unsigned int soundbanklist; /* [out] Data used to manage lists of wave bank usage */ + unsigned int streaminstance; /* [out] Stream objects and internals */ + unsigned int sounddefclass; /* [out] Sound definition objects */ + unsigned int sounddefdefclass; /* [out] Sound definition static data objects */ + unsigned int sounddefpool; /* [out] Sound definition pool data */ + unsigned int reverbdef; /* [out] Reverb definition objects */ + unsigned int eventreverb; /* [out] Reverb objects */ + unsigned int userproperty; /* [out] User property objects */ + unsigned int eventinstance; /* [out] Event instance base objects */ + unsigned int eventinstance_complex; /* [out] Complex event instance objects */ + unsigned int eventinstance_simple; /* [out] Simple event instance objects */ + unsigned int eventinstance_layer; /* [out] Event layer instance objects */ + unsigned int eventinstance_sound; /* [out] Event sound instance objects */ + unsigned int eventenvelope; /* [out] Event envelope objects */ + unsigned int eventenvelopedef; /* [out] Event envelope definition objects */ + unsigned int eventparameter; /* [out] Event parameter objects */ + unsigned int eventcategory; /* [out] Event category objects */ + unsigned int eventenvelopepoint; /* [out] Event envelope point objects */ + unsigned int eventinstancepool; /* [out] Event instance pool memory */ +} FMOD_MEMORY_USAGE_DETAILS; + + +/* +[DEFINE] +[ + [NAME] + FMOD_MEMBITS + + [DESCRIPTION] + Bitfield used to request specific memory usage information from the getMemoryInfo function of every public FMOD Ex class. + Use with the "memorybits" parameter of getMemoryInfo to get information on FMOD Ex memory usage. + + [REMARKS] + Every public FMOD class has a getMemoryInfo function which can be used to get detailed information on what memory resources are associated with the object in question. + The FMOD_MEMBITS defines can be OR'd together to specify precisely what memory usage you'd like to get information on. See System::getMemoryInfo for an example. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_EVENT_MEMBITS + System::getMemoryInfo +] +*/ +#define FMOD_MEMBITS_OTHER 0x00000001 /* Memory not accounted for by other types */ +#define FMOD_MEMBITS_STRING 0x00000002 /* String data */ + +#define FMOD_MEMBITS_SYSTEM 0x00000004 /* System object and various internals */ +#define FMOD_MEMBITS_PLUGINS 0x00000008 /* Plugin objects and internals */ +#define FMOD_MEMBITS_OUTPUT 0x00000010 /* Output module object and internals */ +#define FMOD_MEMBITS_CHANNEL 0x00000020 /* Channel related memory */ +#define FMOD_MEMBITS_CHANNELGROUP 0x00000040 /* ChannelGroup objects and internals */ +#define FMOD_MEMBITS_CODEC 0x00000080 /* Codecs allocated for streaming */ +#define FMOD_MEMBITS_FILE 0x00000100 /* Codecs allocated for streaming */ +#define FMOD_MEMBITS_SOUND 0x00000200 /* Sound objects and internals */ +#define FMOD_MEMBITS_SOUND_SECONDARYRAM 0x00000400 /* Sound data stored in secondary RAM */ +#define FMOD_MEMBITS_SOUNDGROUP 0x00000800 /* SoundGroup objects and internals */ +#define FMOD_MEMBITS_STREAMBUFFER 0x00001000 /* Stream buffer memory */ +#define FMOD_MEMBITS_DSPCONNECTION 0x00002000 /* DSPConnection objects and internals */ +#define FMOD_MEMBITS_DSP 0x00004000 /* DSP implementation objects */ +#define FMOD_MEMBITS_DSPCODEC 0x00008000 /* Realtime file format decoding DSP objects */ +#define FMOD_MEMBITS_PROFILE 0x00010000 /* Profiler memory footprint. */ +#define FMOD_MEMBITS_RECORDBUFFER 0x00020000 /* Buffer used to store recorded data from microphone */ +#define FMOD_MEMBITS_REVERB 0x00040000 /* Reverb implementation objects */ +#define FMOD_MEMBITS_REVERBCHANNELPROPS 0x00080000 /* Reverb channel properties structs */ +#define FMOD_MEMBITS_GEOMETRY 0x00100000 /* Geometry objects and internals */ +#define FMOD_MEMBITS_SYNCPOINT 0x00200000 /* Sync point memory. */ +#define FMOD_MEMBITS_ALL 0xffffffff /* All memory used by FMOD Ex */ +/* [DEFINE_END] */ + + +/* +[DEFINE] +[ + [NAME] + FMOD_EVENT_MEMBITS + + [DESCRIPTION] + Bitfield used to request specific memory usage information from the getMemoryInfo function of every public FMOD Event System class. + Use with the "event_memorybits" parameter of getMemoryInfo to get information on FMOD Event System memory usage. + + [REMARKS] + Every public FMOD Event System class has a getMemoryInfo function which can be used to get detailed information on what memory resources are associated with the object in question. + The FMOD_EVENT_MEMBITS defines can be OR'd together to specify precisely what memory usage you'd like to get information on. See EventSystem::getMemoryInfo for an example. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_MEMBITS + System::getMemoryInfo +] +*/ +#define FMOD_EVENT_MEMBITS_EVENTSYSTEM 0x00000001 /* EventSystem and various internals */ +#define FMOD_EVENT_MEMBITS_MUSICSYSTEM 0x00000002 /* MusicSystem and various internals */ +#define FMOD_EVENT_MEMBITS_FEV 0x00000004 /* Definition of objects contained in all loaded projects e.g. events, groups, categories */ +#define FMOD_EVENT_MEMBITS_MEMORYFSB 0x00000008 /* Data loaded with preloadFSB */ +#define FMOD_EVENT_MEMBITS_EVENTPROJECT 0x00000010 /* EventProject objects and internals */ +#define FMOD_EVENT_MEMBITS_EVENTGROUPI 0x00000020 /* EventGroup objects and internals */ +#define FMOD_EVENT_MEMBITS_SOUNDBANKCLASS 0x00000040 /* Objects used to manage wave banks */ +#define FMOD_EVENT_MEMBITS_SOUNDBANKLIST 0x00000080 /* Data used to manage lists of wave bank usage */ +#define FMOD_EVENT_MEMBITS_STREAMINSTANCE 0x00000100 /* Stream objects and internals */ +#define FMOD_EVENT_MEMBITS_SOUNDDEFCLASS 0x00000200 /* Sound definition objects */ +#define FMOD_EVENT_MEMBITS_SOUNDDEFDEFCLASS 0x00000400 /* Sound definition static data objects */ +#define FMOD_EVENT_MEMBITS_SOUNDDEFPOOL 0x00000800 /* Sound definition pool data */ +#define FMOD_EVENT_MEMBITS_REVERBDEF 0x00001000 /* Reverb definition objects */ +#define FMOD_EVENT_MEMBITS_EVENTREVERB 0x00002000 /* Reverb objects */ +#define FMOD_EVENT_MEMBITS_USERPROPERTY 0x00004000 /* User property objects */ +#define FMOD_EVENT_MEMBITS_EVENTINSTANCE 0x00008000 /* Event instance base objects */ +#define FMOD_EVENT_MEMBITS_EVENTINSTANCE_COMPLEX 0x00010000 /* Complex event instance objects */ +#define FMOD_EVENT_MEMBITS_EVENTINSTANCE_SIMPLE 0x00020000 /* Simple event instance objects */ +#define FMOD_EVENT_MEMBITS_EVENTINSTANCE_LAYER 0x00040000 /* Event layer instance objects */ +#define FMOD_EVENT_MEMBITS_EVENTINSTANCE_SOUND 0x00080000 /* Event sound instance objects */ +#define FMOD_EVENT_MEMBITS_EVENTENVELOPE 0x00100000 /* Event envelope objects */ +#define FMOD_EVENT_MEMBITS_EVENTENVELOPEDEF 0x00200000 /* Event envelope definition objects */ +#define FMOD_EVENT_MEMBITS_EVENTPARAMETER 0x00400000 /* Event parameter objects */ +#define FMOD_EVENT_MEMBITS_EVENTCATEGORY 0x00800000 /* Event category objects */ +#define FMOD_EVENT_MEMBITS_EVENTENVELOPEPOINT 0x01000000 /* Event envelope point object+s */ +#define FMOD_EVENT_MEMBITS_EVENTINSTANCEPOOL 0x02000000 /* Event instance pool data */ +#define FMOD_EVENT_MEMBITS_ALL 0xffffffff /* All memory used by FMOD Event System */ + +/* All event instance memory */ +#define FMOD_EVENT_MEMBITS_EVENTINSTANCE_GROUP (FMOD_EVENT_MEMBITS_EVENTINSTANCE | \ + FMOD_EVENT_MEMBITS_EVENTINSTANCE_COMPLEX | \ + FMOD_EVENT_MEMBITS_EVENTINSTANCE_SIMPLE | \ + FMOD_EVENT_MEMBITS_EVENTINSTANCE_LAYER | \ + FMOD_EVENT_MEMBITS_EVENTINSTANCE_SOUND) + +/* All sound definition memory */ +#define FMOD_EVENT_MEMBITS_SOUNDDEF_GROUP (FMOD_EVENT_MEMBITS_SOUNDDEFCLASS | \ + FMOD_EVENT_MEMBITS_SOUNDDEFDEFCLASS | \ + FMOD_EVENT_MEMBITS_SOUNDDEFPOOL) +/* [DEFINE_END] */ + +#endif diff --git a/CocosDenshion/third_party/fmod/api/inc/fmod_output.h b/CocosDenshion/third_party/fmod/api/inc/fmod_output.h new file mode 100644 index 0000000000..e690efa2f0 --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/inc/fmod_output.h @@ -0,0 +1,93 @@ +/* ==================================================================================================== */ +/* FMOD Ex - output development header file. Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */ +/* */ +/* Use this header if you are wanting to develop your own output plugin to use with */ +/* FMOD's output system. With this header you can make your own output plugin that FMOD */ +/* can register and use. See the documentation and examples on how to make a working plugin. */ +/* */ +/* ==================================================================================================== */ + +#ifndef _FMOD_OUTPUT_H +#define _FMOD_OUTPUT_H + +#include "fmod.h" + +typedef struct FMOD_OUTPUT_STATE FMOD_OUTPUT_STATE; + +/* + Output callbacks +*/ +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_GETNUMDRIVERSCALLBACK)(FMOD_OUTPUT_STATE *output_state, int *numdrivers); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_GETDRIVERNAMECALLBACK)(FMOD_OUTPUT_STATE *output_state, int id, char *name, int namelen); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_GETDRIVERCAPSCALLBACK)(FMOD_OUTPUT_STATE *output_state, int id, FMOD_CAPS *caps); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_INITCALLBACK) (FMOD_OUTPUT_STATE *output_state, int selecteddriver, FMOD_INITFLAGS flags, int *outputrate, int outputchannels, FMOD_SOUND_FORMAT *outputformat, int dspbufferlength, int dspnumbuffers, void *extradriverdata); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_CLOSECALLBACK) (FMOD_OUTPUT_STATE *output_state); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_UPDATECALLBACK) (FMOD_OUTPUT_STATE *output_state); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_GETHANDLECALLBACK) (FMOD_OUTPUT_STATE *output_state, void **handle); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_GETPOSITIONCALLBACK) (FMOD_OUTPUT_STATE *output_state, unsigned int *pcm); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_LOCKCALLBACK) (FMOD_OUTPUT_STATE *output_state, unsigned int offset, unsigned int length, void **ptr1, void **ptr2, unsigned int *len1, unsigned int *len2); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_UNLOCKCALLBACK) (FMOD_OUTPUT_STATE *output_state, void *ptr1, void *ptr2, unsigned int len1, unsigned int len2); +typedef FMOD_RESULT (F_CALLBACK *FMOD_OUTPUT_READFROMMIXER) (FMOD_OUTPUT_STATE *output_state, void *buffer, unsigned int length); + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + When creating an output, declare one of these and provide the relevant callbacks and name for FMOD to use when it opens and reads a file of this type. + + [REMARKS] + Members marked with [in] mean the variable can be written to. The user can set the value.
+ Members marked with [out] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_OUTPUT_STATE +] +*/ +typedef struct FMOD_OUTPUT_DESCRIPTION +{ + const char *name; /* [in] Name of the output. */ + unsigned int version; /* [in] Plugin writer's version number. */ + int polling; /* [in] If TRUE (non zero), this tells FMOD to start a thread and call getposition / lock / unlock for feeding data. If 0, the output is probably callback based, so all the plugin needs to do is call readfrommixer to the appropriate pointer. */ + FMOD_OUTPUT_GETNUMDRIVERSCALLBACK getnumdrivers; /* [in] For sound device enumeration. This callback is to give System::getNumDrivers somthing to return. */ + FMOD_OUTPUT_GETDRIVERNAMECALLBACK getdrivername; /* [in] For sound device enumeration. This callback is to give System::getDriverName somthing to return. */ + FMOD_OUTPUT_GETDRIVERCAPSCALLBACK getdrivercaps; /* [in] For sound device enumeration. This callback is to give System::getDriverCaps somthing to return. */ + FMOD_OUTPUT_INITCALLBACK init; /* [in] Initialization function for the output device. This is called from System::init. */ + FMOD_OUTPUT_CLOSECALLBACK close; /* [in] Cleanup / close down function for the output device. This is called from System::close. */ + FMOD_OUTPUT_UPDATECALLBACK update; /* [in] Update function that is called once a frame by the user. This is called from System::update. */ + FMOD_OUTPUT_GETHANDLECALLBACK gethandle; /* [in] This is called from System::getOutputHandle. This is just to return a pointer to the internal system device object that the system may be using.*/ + FMOD_OUTPUT_GETPOSITIONCALLBACK getposition; /* [in] This is called from the FMOD software mixer thread if 'polling' = true. This returns a position value in samples so that FMOD knows where and when to fill its buffer. */ + FMOD_OUTPUT_LOCKCALLBACK lock; /* [in] This is called from the FMOD software mixer thread if 'polling' = true. This function provides a pointer to data that FMOD can write to when software mixing. */ + FMOD_OUTPUT_UNLOCKCALLBACK unlock; /* [in] This is called from the FMOD software mixer thread if 'polling' = true. This optional function accepts the data that has been mixed and copies it or does whatever it needs to before sending it to the hardware. */ +} FMOD_OUTPUT_DESCRIPTION; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Output plugin structure that is passed into each callback. + + [REMARKS] + Members marked with [in] mean the variable can be written to. The user can set the value.
+ Members marked with [out] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_OUTPUT_DESCRIPTION +] +*/ +struct FMOD_OUTPUT_STATE +{ + void *plugindata; /* [in] Plugin writer created data the output author wants to attach to this object. */ + FMOD_OUTPUT_READFROMMIXER readfrommixer; /* [out] Function to update mixer and write the result to the provided pointer. Used from callback based output only. Polling based output uses lock/unlock/getposition. */ +}; + +#endif + + diff --git a/CocosDenshion/third_party/fmod/api/inc/fmodlinux.h b/CocosDenshion/third_party/fmod/api/inc/fmodlinux.h new file mode 100644 index 0000000000..04750a07d9 --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/inc/fmodlinux.h @@ -0,0 +1,36 @@ +/* =========================================================================================== */ +/* FMOD Linux Specific header file. Copyright (c), Firelight Technologies Pty, Ltd. 2005-2011. */ +/* =========================================================================================== */ + +#ifndef _FMODLINUX_H +#define _FMODLINUX_H + +#include "fmod.h" + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Use this structure with System::init to set the information required for linux + initialisation. + + Pass this structure in as the "extradriverdata" parameter in System::init. + + [REMARKS] + + [PLATFORMS] + Linux, Linux64 + + [SEE_ALSO] + System::init +] +*/ +typedef struct FMOD_LINUX_EXTRADRIVERDATA +{ + const char *output_driver_arguments; /* ALSA Only - Arguments to apply to the selected output driver */ + const char *record_driver_arguments; /* ALSA Only - Arguments to apply to the selected input (record) driver */ +} FMOD_LINUX_EXTRADRIVERDATA; + +#endif + diff --git a/CocosDenshion/third_party/fmod/api/lib/libfmodex-4.36.01.so.REMOVED.git-id b/CocosDenshion/third_party/fmod/api/lib/libfmodex-4.36.01.so.REMOVED.git-id new file mode 100644 index 0000000000..119d3a913d --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/lib/libfmodex-4.36.01.so.REMOVED.git-id @@ -0,0 +1 @@ +5e11b3b6168668e874105ed574b60c39c48db02b \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/api/lib/libfmodex.so.REMOVED.git-id b/CocosDenshion/third_party/fmod/api/lib/libfmodex.so.REMOVED.git-id new file mode 100644 index 0000000000..119d3a913d --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/lib/libfmodex.so.REMOVED.git-id @@ -0,0 +1 @@ +5e11b3b6168668e874105ed574b60c39c48db02b \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/api/lib/libfmodexL-4.36.01.so.REMOVED.git-id b/CocosDenshion/third_party/fmod/api/lib/libfmodexL-4.36.01.so.REMOVED.git-id new file mode 100644 index 0000000000..0dc911b9a2 --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/lib/libfmodexL-4.36.01.so.REMOVED.git-id @@ -0,0 +1 @@ +c3663fea3c08b4112bd92639963b102b9aa42cb8 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/api/lib/libfmodexL.so.REMOVED.git-id b/CocosDenshion/third_party/fmod/api/lib/libfmodexL.so.REMOVED.git-id new file mode 100644 index 0000000000..0dc911b9a2 --- /dev/null +++ b/CocosDenshion/third_party/fmod/api/lib/libfmodexL.so.REMOVED.git-id @@ -0,0 +1 @@ +c3663fea3c08b4112bd92639963b102b9aa42cb8 \ No newline at end of file diff --git a/HelloWorld/Linux/app.config.txt b/HelloWorld/Linux/app.config.txt new file mode 100644 index 0000000000..104530ed60 --- /dev/null +++ b/HelloWorld/Linux/app.config.txt @@ -0,0 +1,5 @@ +[Trace] +GAME <0 or 1> Game Channel + +[Assert] +GAME <0 or 1> Game Assert Channel \ No newline at end of file diff --git a/HelloWorld/Linux/cocos2dx-hello.REMOVED.git-id b/HelloWorld/Linux/cocos2dx-hello.REMOVED.git-id new file mode 100644 index 0000000000..a3e074db77 --- /dev/null +++ b/HelloWorld/Linux/cocos2dx-hello.REMOVED.git-id @@ -0,0 +1 @@ +31c0c51a38e572f396b522e3f84d8e81006ec3c3 \ No newline at end of file diff --git a/HelloWorld/Linux/libcocos2dx.so.REMOVED.git-id b/HelloWorld/Linux/libcocos2dx.so.REMOVED.git-id new file mode 100644 index 0000000000..4be1a6e822 --- /dev/null +++ b/HelloWorld/Linux/libcocos2dx.so.REMOVED.git-id @@ -0,0 +1 @@ +209e03305db36dfa8d0554c51d5ffd29412eefd2 \ No newline at end of file diff --git a/HelloWorld/Linux/main.cpp b/HelloWorld/Linux/main.cpp new file mode 100644 index 0000000000..ce38bb10f4 --- /dev/null +++ b/HelloWorld/Linux/main.cpp @@ -0,0 +1,11 @@ +#include "main.h" + +#include "AppDelegate.h" + +int main(int argc, char **argv) { + + // create the application instance + AppDelegate app; + + return cocos2d::CCApplication::sharedApplication().run(); +} diff --git a/HelloWorld/Linux/main.h b/HelloWorld/Linux/main.h new file mode 100644 index 0000000000..952830d1ac --- /dev/null +++ b/HelloWorld/Linux/main.h @@ -0,0 +1,7 @@ +#ifndef __MAIN_H__ +#define __MAIN_H__ + +// C RunTime Header Files +#include "CCStdC.h" + +#endif // __MAIN_H__ diff --git a/cocos2dx/.settings/org.eclipse.cdt.codan.core.prefs b/cocos2dx/.settings/org.eclipse.cdt.codan.core.prefs new file mode 100644 index 0000000000..a6351ba77c --- /dev/null +++ b/cocos2dx/.settings/org.eclipse.cdt.codan.core.prefs @@ -0,0 +1,66 @@ +#Wed Aug 10 11:58:10 CST 2011 +eclipse.preferences.version=1 +org.eclipse.cdt.codan.checkers.errnoreturn=Warning +org.eclipse.cdt.codan.checkers.errnoreturn.params={implicit\=>false} +org.eclipse.cdt.codan.checkers.errreturnvalue=Error +org.eclipse.cdt.codan.checkers.errreturnvalue.params={} +org.eclipse.cdt.codan.checkers.noreturn=Error +org.eclipse.cdt.codan.checkers.noreturn.params={implicit\=>false} +org.eclipse.cdt.codan.internal.checkers.AbstractClassCreation=Error +org.eclipse.cdt.codan.internal.checkers.AbstractClassCreation.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.AmbiguousProblem=Error +org.eclipse.cdt.codan.internal.checkers.AmbiguousProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.AssignmentInConditionProblem=Warning +org.eclipse.cdt.codan.internal.checkers.AssignmentInConditionProblem.params={} +org.eclipse.cdt.codan.internal.checkers.AssignmentToItselfProblem=Error +org.eclipse.cdt.codan.internal.checkers.AssignmentToItselfProblem.params={} +org.eclipse.cdt.codan.internal.checkers.CaseBreakProblem=Warning +org.eclipse.cdt.codan.internal.checkers.CaseBreakProblem.params={no_break_comment\=>"no break",last_case_param\=>true,empty_case_param\=>false} +org.eclipse.cdt.codan.internal.checkers.CatchByReference=Warning +org.eclipse.cdt.codan.internal.checkers.CatchByReference.params={unknown\=>false,exceptions\=>()} +org.eclipse.cdt.codan.internal.checkers.CircularReferenceProblem=Error +org.eclipse.cdt.codan.internal.checkers.CircularReferenceProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.FieldResolutionProblem=Error +org.eclipse.cdt.codan.internal.checkers.FieldResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.FunctionResolutionProblem=Error +org.eclipse.cdt.codan.internal.checkers.FunctionResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.InvalidArguments=Error +org.eclipse.cdt.codan.internal.checkers.InvalidArguments.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.InvalidTemplateArgumentsProblem=Error +org.eclipse.cdt.codan.internal.checkers.InvalidTemplateArgumentsProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.LabelStatementNotFoundProblem=Error +org.eclipse.cdt.codan.internal.checkers.LabelStatementNotFoundProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.MemberDeclarationNotFoundProblem=Error +org.eclipse.cdt.codan.internal.checkers.MemberDeclarationNotFoundProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.MethodResolutionProblem=Error +org.eclipse.cdt.codan.internal.checkers.MethodResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.NamingConventionFunctionChecker=-Info +org.eclipse.cdt.codan.internal.checkers.NamingConventionFunctionChecker.params={pattern\=>"^[a-z]",macro\=>true,exceptions\=>()} +org.eclipse.cdt.codan.internal.checkers.NonVirtualDestructorProblem=Warning +org.eclipse.cdt.codan.internal.checkers.NonVirtualDestructorProblem.params={} +org.eclipse.cdt.codan.internal.checkers.OverloadProblem=Error +org.eclipse.cdt.codan.internal.checkers.OverloadProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.RedeclarationProblem=Error +org.eclipse.cdt.codan.internal.checkers.RedeclarationProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.RedefinitionProblem=Error +org.eclipse.cdt.codan.internal.checkers.RedefinitionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.ReturnStyleProblem=-Warning +org.eclipse.cdt.codan.internal.checkers.ReturnStyleProblem.params={} +org.eclipse.cdt.codan.internal.checkers.ScanfFormatStringSecurityProblem=-Warning +org.eclipse.cdt.codan.internal.checkers.ScanfFormatStringSecurityProblem.params={} +org.eclipse.cdt.codan.internal.checkers.StatementHasNoEffectProblem=Warning +org.eclipse.cdt.codan.internal.checkers.StatementHasNoEffectProblem.params={macro\=>true,exceptions\=>()} +org.eclipse.cdt.codan.internal.checkers.SuggestedParenthesisProblem=Warning +org.eclipse.cdt.codan.internal.checkers.SuggestedParenthesisProblem.params={paramNot\=>false} +org.eclipse.cdt.codan.internal.checkers.SuspiciousSemicolonProblem=Warning +org.eclipse.cdt.codan.internal.checkers.SuspiciousSemicolonProblem.params={else\=>false,afterelse\=>false} +org.eclipse.cdt.codan.internal.checkers.TypeResolutionProblem=Error +org.eclipse.cdt.codan.internal.checkers.TypeResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} +org.eclipse.cdt.codan.internal.checkers.UnusedFunctionDeclarationProblem=Warning +org.eclipse.cdt.codan.internal.checkers.UnusedFunctionDeclarationProblem.params={} +org.eclipse.cdt.codan.internal.checkers.UnusedStaticFunctionProblem=Warning +org.eclipse.cdt.codan.internal.checkers.UnusedStaticFunctionProblem.params={} +org.eclipse.cdt.codan.internal.checkers.UnusedVariableDeclarationProblem=Warning +org.eclipse.cdt.codan.internal.checkers.UnusedVariableDeclarationProblem.params={exceptions\=>("@(\#)","$Id")} +org.eclipse.cdt.codan.internal.checkers.VariableResolutionProblem=Error +org.eclipse.cdt.codan.internal.checkers.VariableResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}} diff --git a/cocos2dx/platform/Linux/CCAccelerometer_linux.h b/cocos2dx/platform/Linux/CCAccelerometer_linux.h new file mode 100644 index 0000000000..d1e879f049 --- /dev/null +++ b/cocos2dx/platform/Linux/CCAccelerometer_linux.h @@ -0,0 +1,29 @@ +/* + * CCAccelerometer_linux.h + * + * Created on: Aug 9, 2011 + * Author: laschweinski + */ + +#ifndef CCACCELEROMETER_LINUX_H_ +#define CCACCELEROMETER_LINUX_H_ + +#include "CCCommon.h" + +namespace cocos2d { + +class CCAccelerometer +{ +public: + CCAccelerometer(); + ~CCAccelerometer(); + + static CCAccelerometer* sharedAccelerometer() { return NULL; }; + + void removeDelegate(CCAccelerometerDelegate* pDelegate) {CC_UNUSED_PARAM(pDelegate);}; + void addDelegate(CCAccelerometerDelegate* pDelegate) {CC_UNUSED_PARAM(pDelegate);}; +}; + +}//namespace cocos2d + +#endif /* CCACCELEROMETER_LINUX_H_ */ diff --git a/cocos2dx/platform/Linux/CCAplication_linux.cpp b/cocos2dx/platform/Linux/CCAplication_linux.cpp new file mode 100644 index 0000000000..65e7efd658 --- /dev/null +++ b/cocos2dx/platform/Linux/CCAplication_linux.cpp @@ -0,0 +1,86 @@ +/* + * CCAplication_linux.cpp + * + * Created on: Aug 8, 2011 + * Author: laschweinski + */ +#include "CCApplication.h" + + +#include "CCDirector.h" + +NS_CC_BEGIN; + +// sharedApplication pointer +CCApplication * CCApplication::sm_pSharedApplication = 0; + +CCApplication::CCApplication() +{ + CC_ASSERT(! sm_pSharedApplication); + sm_pSharedApplication = this; +} + +CCApplication::~CCApplication() +{ + CC_ASSERT(this == sm_pSharedApplication); + sm_pSharedApplication = NULL; +} + +int CCApplication::run() +{ + // Initialize instance and cocos2d. + if (! initInstance() || ! applicationDidFinishLaunching()) + { + return 0; + } + + for (;;){ + //TODO will wait for some second based on the m_nAnimationInterval + CCDirector::sharedDirector()->mainLoop(); + } + return -1; +} + +CCApplication::Orientation CCApplication::setOrientation(Orientation orientation) +{ + // swap width and height + CCEGLView * pView = CCDirector::sharedDirector()->getOpenGLView(); + if (pView) + { + return (Orientation)pView->setDeviceOrientation(orientation); + } + return (Orientation)CCDirector::sharedDirector()->getDeviceOrientation(); +} + +void CCApplication::statusBarFrame(CCRect * rect){ + + if (rect) + { + // linux doesn't have status bar. + *rect = CCRectMake(0, 0, 0, 0); + } + +} + +void CCApplication::setAnimationInterval(double interval) +{ + //TODO do something else + m_nAnimationInterval = interval; +} + +////////////////////////////////////////////////////////////////////////// +// static member function +////////////////////////////////////////////////////////////////////////// +CCApplication& CCApplication::sharedApplication() +{ + CC_ASSERT(sm_pSharedApplication); + return *sm_pSharedApplication; +} + +ccLanguageType CCApplication::getCurrentLanguage() +{ + //TODO + return kLanguageEnglish; +} + +NS_CC_END; diff --git a/cocos2dx/platform/Linux/CCAplication_linux.h b/cocos2dx/platform/Linux/CCAplication_linux.h new file mode 100644 index 0000000000..8e2ea1934b --- /dev/null +++ b/cocos2dx/platform/Linux/CCAplication_linux.h @@ -0,0 +1,99 @@ +/* + * CCAplication_linux.h + * + * Created on: Aug 8, 2011 + * Author: laschweinski + */ + +#ifndef CCAPLICATION_LINUX_H_ +#define CCAPLICATION_LINUX_H_ + +#include "CCCommon.h" + +NS_CC_BEGIN; +class CCRect; + +class CCApplication { +public: + CCApplication(); + virtual ~CCApplication(); + + /** + @brief Implement for initialize OpenGL instance, set source path, etc... + */ + virtual bool initInstance() = 0; + + /** + @brief Implement CCDirector and CCScene init code here. + @return true Initialize success, app continue. + @return false Initialize failed, app terminate. + */ + virtual bool applicationDidFinishLaunching() = 0; + + /** + @brief The function be called when the application enter background + @param the pointer of the application + */ + virtual void applicationDidEnterBackground() = 0; + + /** + @brief The function be called when the application enter foreground + @param the pointer of the application + */ + virtual void applicationWillEnterForeground() = 0; + + /** + @brief Callback by CCDirector for limit FPS. + @interval The time, which expressed in second in second, between current frame and next. + */ + void setAnimationInterval(double interval); + + typedef enum + { + /// Device oriented vertically, home button on the bottom + kOrientationPortrait = 0, + /// Device oriented vertically, home button on the top + kOrientationPortraitUpsideDown = 1, + /// Device oriented horizontally, home button on the right + kOrientationLandscapeLeft = 2, + /// Device oriented horizontally, home button on the left + kOrientationLandscapeRight = 3, + }Orientation; + + /** + @brief Callback by CCDirector for change device orientation. + @orientation The defination of orientation which CCDirector want change to. + @return The actual orientation of the application. + */ + Orientation setOrientation(Orientation orientation); + + /** + @brief Get status bar rectangle in EGLView window. + */ + void statusBarFrame(CCRect * rect); + + /** + @brief Run the message loop. + */ + int run(); + + /** + @brief Get current applicaiton instance. + @return Current application instance pointer. + */ + static CCApplication& sharedApplication(); + + /** + @brief Get current language config + @return Current language config + */ + static ccLanguageType getCurrentLanguage(); +protected: + double m_nAnimationInterval; + + static CCApplication * sm_pSharedApplication; +}; + +NS_CC_END; + +#endif /* CCAPLICATION_LINUX_H_ */ diff --git a/cocos2dx/platform/Linux/CCEGLView_linux.cpp b/cocos2dx/platform/Linux/CCEGLView_linux.cpp new file mode 100644 index 0000000000..ac718f91bb --- /dev/null +++ b/cocos2dx/platform/Linux/CCEGLView_linux.cpp @@ -0,0 +1,357 @@ +/* + * CCEGLViewlinux.cpp + * + * Created on: Aug 8, 2011 + * Author: laschweinski + */ + +#include "CCEGLView_linux.h" + +#include "CCGL.h" + +#include "GL/glfw.h" + +#include "CCSet.h" +#include "ccMacros.h" +#include "CCDirector.h" +#include "CCTouch.h" +#include "CCTouchDispatcher.h" +#include "CCIMEDispatcher.h" + +PFNGLGENFRAMEBUFFERSEXTPROC glGenFramebuffersEXT = NULL; +PFNGLDELETEFRAMEBUFFERSEXTPROC glDeleteFramebuffersEXT = NULL; +PFNGLBINDFRAMEBUFFEREXTPROC glBindFramebufferEXT = NULL; +PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC glCheckFramebufferStatusEXT = NULL; +PFNGLFRAMEBUFFERTEXTURE2DEXTPROC glFramebufferTexture2DEXT = NULL; +PFNGLGENERATEMIPMAPEXTPROC glGenerateMipmapEXT = NULL; + +PFNGLGENBUFFERSARBPROC glGenBuffersARB = NULL; +PFNGLBINDBUFFERARBPROC glBindBufferARB = NULL; +PFNGLBUFFERDATAARBPROC glBufferDataARB = NULL; +PFNGLBUFFERSUBDATAARBPROC glBufferSubDataARB = NULL; +PFNGLDELETEBUFFERSARBPROC glDeleteBuffersARB = NULL; + +bool initExtensions() { +#define LOAD_EXTENSION_FUNCTION(TYPE, FN) FN = (TYPE)glfwGetProcAddress(#FN); + bool bRet = false; + do { + + char* p = (char*) glGetString(GL_EXTENSIONS); +// printf(p); + + /* Supports frame buffer? */ + if (glfwExtensionSupported("GL_EXT_framebuffer_object") != GL_FALSE) + { + + /* Loads frame buffer extension functions */ + LOAD_EXTENSION_FUNCTION(PFNGLGENERATEMIPMAPEXTPROC, + glGenerateMipmapEXT); + LOAD_EXTENSION_FUNCTION(PFNGLGENFRAMEBUFFERSEXTPROC, + glGenFramebuffersEXT); + LOAD_EXTENSION_FUNCTION(PFNGLDELETEFRAMEBUFFERSEXTPROC, + glDeleteFramebuffersEXT); + LOAD_EXTENSION_FUNCTION(PFNGLBINDFRAMEBUFFEREXTPROC, + glBindFramebufferEXT); + LOAD_EXTENSION_FUNCTION(PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC, + glCheckFramebufferStatusEXT); + LOAD_EXTENSION_FUNCTION(PFNGLFRAMEBUFFERTEXTURE2DEXTPROC, + glFramebufferTexture2DEXT); + + } else { + break; + } + + if (glfwExtensionSupported("GL_ARB_vertex_buffer_object") != GL_FALSE) { + LOAD_EXTENSION_FUNCTION(PFNGLGENBUFFERSARBPROC, glGenBuffersARB); + LOAD_EXTENSION_FUNCTION(PFNGLBINDBUFFERARBPROC, glBindBufferARB); + LOAD_EXTENSION_FUNCTION(PFNGLBUFFERDATAARBPROC, glBufferDataARB); + LOAD_EXTENSION_FUNCTION(PFNGLBUFFERSUBDATAARBPROC, + glBufferSubDataARB); + LOAD_EXTENSION_FUNCTION(PFNGLDELETEBUFFERSARBPROC, + glDeleteBuffersARB); + } else { + break; + } + bRet = true; + } while (0); + return bRet; +} + +NS_CC_BEGIN; +static CCEGLView* s_pMainWindow = NULL; + +CCEGLView::CCEGLView() +: m_bCaptured(false) +, m_bOrientationReverted(false) +, m_bOrientationInitVertical(false) +, m_pDelegate(NULL) +, m_eInitOrientation(CCDeviceOrientationPortrait) +, m_fScreenScaleFactor(1.0f) +, bIsInit(false) +{ + m_pTouch = new CCTouch; + m_pSet = new CCSet; + m_sSizeInPoint.width = m_sSizeInPoint.height = 0; +// SetRectEmpty(&m_rcViewPort); +} + +CCEGLView::~CCEGLView() +{ +} + +void keyEventHandle(int iKeyID,int iKeyState) { + if (iKeyState ==GLFW_RELEASE) { + return; + } + + if (iKeyID == GLFW_KEY_DEL) { + CCIMEDispatcher::sharedDispatcher()->dispatchDeleteBackward(); + } else if (iKeyID == GLFW_KEY_ENTER) { + CCIMEDispatcher::sharedDispatcher()->dispatchInsertText("\n", 1); + } else if (iKeyID == GLFW_KEY_TAB) { + + } +} + +void charEventHandle(int iCharID,int iCharState) { + if (iCharState ==GLFW_RELEASE) { + return; + } + + // ascii char + CCIMEDispatcher::sharedDispatcher()->dispatchInsertText((const char *)&iCharID, 1); + +} + +void mouseButtonEventHandle(int iMouseID,int iMouseState) { + if (iMouseID == GLFW_MOUSE_BUTTON_LEFT) { + //get current mouse pos + int x,y; + glfwGetMousePos(&x, &y); + CCPoint oPoint((float)x,(float)y); + + if (!CCRect::CCRectContainsPoint(s_pMainWindow->m_rcViewPort,oPoint)) { + CCLOG("not in the viewport"); + return; + } + + s_pMainWindow->m_pTouch->SetTouchInfo(0, (float)(oPoint.x - s_pMainWindow->m_rcViewPort.origin.x) / s_pMainWindow->m_fScreenScaleFactor, + (float)(oPoint.y - s_pMainWindow->m_rcViewPort.origin.y) / s_pMainWindow->m_fScreenScaleFactor); + s_pMainWindow->m_pSet->addObject(s_pMainWindow->m_pTouch); + s_pMainWindow->m_mousePoint = oPoint; + + if (iMouseState == GLFW_PRESS) { + s_pMainWindow->m_pDelegate->touchesBegan(s_pMainWindow->m_pSet,NULL); + + } else if (iMouseState == GLFW_RELEASE) { + s_pMainWindow->m_pDelegate->touchesEnded(s_pMainWindow->m_pSet,NULL); + } + } +} + +void mousePosEventHandle(int iPosX,int iPosY) { + int iButtonState = glfwGetMouseButton(GLFW_MOUSE_BUTTON_LEFT); + + //to test move + if (iButtonState == GLFW_PRESS) { + if (iPosX!=(int)s_pMainWindow->m_mousePoint.x||iPosY!=(int)s_pMainWindow->m_mousePoint.y) { + //it movies + s_pMainWindow->m_pTouch->SetTouchInfo(0, (float)(iPosX- s_pMainWindow->m_rcViewPort.origin.x) / s_pMainWindow->m_fScreenScaleFactor, + (float)(iPosY - s_pMainWindow->m_rcViewPort.origin.y) / s_pMainWindow->m_fScreenScaleFactor); + s_pMainWindow->m_pDelegate->touchesMoved(s_pMainWindow->m_pSet, NULL); + //update new mouse pos + s_pMainWindow->m_mousePoint.x = iPosX; + s_pMainWindow->m_mousePoint.y = iPosY; + } + } +} + +bool CCEGLView::Create(const char* pTitle, int iPixelWidth, int iPixelHeight, int iWidth, int iHeight, int iDepth) { + bool eResult; + int u32GLFWFlags = GLFW_WINDOW; + //create the window by glfw. + + //check + CCAssert(iPixelWidth!=0&&iPixelHeight!=0, "invalid window's size equal 0"); + CCAssert(iWidth!=0&&iHeight!=0, "invalid the size in points equal 0"); + + //Inits GLFW + eResult = glfwInit() != GL_FALSE; + + if (!eResult) { + CCAssert(0, "fail to init the glfw"); + } + + /* Updates window hint */ + glfwOpenWindowHint(GLFW_WINDOW_NO_RESIZE, GL_TRUE); + + /* Depending on video depth */ + switch(iDepth) + { + /* 16-bit */ + case 16: + { + /* Updates video mode */ + eResult = (glfwOpenWindow(iPixelWidth, iPixelHeight, 5, 6, 5, 0, 16, 0, (int)u32GLFWFlags) != false) ? true : false; + + break; + } + + /* 24-bit */ + case 24: + { + /* Updates video mode */ + eResult = (glfwOpenWindow(iPixelWidth, iPixelHeight, 8, 8, 8, 0, 16, 0, (int)u32GLFWFlags) != false) ? true : false; + + break; + } + + /* 32-bit */ + default: + case 32: + { + /* Updates video mode */ + eResult = (glfwOpenWindow(iPixelWidth, iPixelHeight, 8, 8, 8, 8, 16, 0, (int)u32GLFWFlags) != GL_FALSE) ? true :false; + break; + } + } + + /* Success? */ + if(eResult) + { + + /* Updates actual size */ + glfwGetWindowSize(&iPixelWidth, &iPixelHeight); + + //assign screen size and point's size + m_sSizeInPixel.width = iPixelWidth; + m_sSizeInPixel.height = iPixelHeight; + + m_sSizeInPoint.width = iWidth; + m_sSizeInPoint.height = iHeight; + + // calculate the factor and the rect of viewport + m_fScreenScaleFactor = MIN((float)m_sSizeInPixel.width / m_sSizeInPoint.width, + (float)m_sSizeInPixel.height / m_sSizeInPoint.height); + + int viewPortW = (int)(m_sSizeInPoint.width * m_fScreenScaleFactor); + int viewPortH = (int)(m_sSizeInPoint.height * m_fScreenScaleFactor); + m_rcViewPort.origin.x = (m_sSizeInPixel.width - viewPortW) / 2; + m_rcViewPort.origin.y = (m_sSizeInPixel.height - viewPortH) / 2; + m_rcViewPort.size.width = viewPortW; + m_rcViewPort.size.height = viewPortH; + + /* Updates its title */ + glfwSetWindowTitle(pTitle); + + //set the init flag + bIsInit = true; + s_pMainWindow = this; + + //register the glfw key event + glfwSetKeyCallback(keyEventHandle); + //register the glfw char event + glfwSetCharCallback(charEventHandle); + //register the glfw mouse event + glfwSetMouseButtonCallback(mouseButtonEventHandle); + //register the glfw mouse pos event + glfwSetMousePosCallback(mousePosEventHandle); + + //Inits extensions + eResult = initExtensions(); + + if (!eResult) { + CCAssert(0, "fail to init the extensions of opengl"); + } + + } + return true; +} + +CCSize CCEGLView::getSize() +{ + return CCSize((float)(m_sSizeInPoint.width), (float)(m_sSizeInPoint.height)); +} + +bool CCEGLView::isOpenGLReady() +{ + return bIsInit; +} + +void CCEGLView::release() +{ + /* Exits from GLFW */ + glfwTerminate(); +} + +void CCEGLView::setTouchDelegate(EGLTouchDelegate * pDelegate) { + //TODO touch event + m_pDelegate = pDelegate; + +} +void CCEGLView::swapBuffers() { + if (bIsInit) { + /* Swap buffers */ + glfwSwapBuffers(); + } +} + +int CCEGLView::setDeviceOrientation(int eOritation) { + CCLog("warning:could not setDeviceOrientation after initialized"); +} + +void CCEGLView::setViewPortInPoints(float x, float y, float w, float h) { +// TODO + if (bIsInit) { + float factor = m_fScreenScaleFactor / CC_CONTENT_SCALE_FACTOR(); + glViewport((GLint)(x * factor) + m_rcViewPort.origin.x, + (GLint)(y * factor) + m_rcViewPort.origin.y, + (GLint)(w * factor), + (GLint)(h * factor)); + } +} +void CCEGLView::setScissorInPoints(float x, float y, float w, float h) { + //TODO + if (bIsInit) { + float factor = m_fScreenScaleFactor / CC_CONTENT_SCALE_FACTOR(); + glScissor((GLint)(x * factor) + m_rcViewPort.origin.x, + (GLint)(y * factor) + m_rcViewPort.origin.y, + (GLint)(w * factor), + (GLint)(h * factor)); + } +} + +void CCEGLView::setIMEKeyboardState(bool bOpen) { + +} + +//void CCEGLView::resize(int width, int height) { +// //TODO +// return; +//} + +//void CCEGLView::centerWindow() { +// //TODO +// return; +//} +//void CCEGLView::setScreenScale(float factor) { +// m_fScreenScaleFactor = factor; +// +//} + +bool CCEGLView::canSetContentScaleFactor() { + return false; +} + +void CCEGLView::setContentScaleFactor(float contentScaleFactor) { + CCLog("could not set contentScaleFactor after initialized"); + +} + +CCEGLView& CCEGLView::sharedOpenGLView() +{ + CC_ASSERT(s_pMainWindow); + return *s_pMainWindow; +} + +NS_CC_END; diff --git a/cocos2dx/platform/Linux/CCEGLView_linux.h b/cocos2dx/platform/Linux/CCEGLView_linux.h new file mode 100644 index 0000000000..582ffe5b87 --- /dev/null +++ b/cocos2dx/platform/Linux/CCEGLView_linux.h @@ -0,0 +1,94 @@ +/* + * CCEGLViewlinux.h + * + * Created on: Aug 8, 2011 + * Author: laschweinski + */ + +#ifndef CCEGLVIEWLINUX_H_ +#define CCEGLVIEWLINUX_H_ + +#include "CCCommon.h" +#include "CCGeometry.h" + +bool initExtensions(); + +NS_CC_BEGIN; + +class CCSet; +class CCTouch; +class EGLTouchDelegate; + +class CCEGLView { +public: + CCEGLView(); + virtual ~CCEGLView(); + + friend void keyEventHandle(int,int); + friend void mouseButtonEventHandle(int,int); + friend void mousePosEventHandle(int,int); + friend void charEventHandle(int,int); + + /** + * iPixelWidth, height: the window's size + * iWidth ,height: the point size, which may scale. + * iDepth is not the buffer depth of opengl, it indicate how may bits for a pixel + */ + virtual bool Create(const char* pTitle, int iPixelWidth, int iPixelHeight, int iWidth, int iHeight, int iDepth=16); + + CCSize getSize(); + bool isOpenGLReady(); + void release(); + void setTouchDelegate(EGLTouchDelegate * pDelegate); + void swapBuffers(); + bool canSetContentScaleFactor(); + void setContentScaleFactor(float contentScaleFactor); + + int setDeviceOrientation(int eOritation); + void setViewPortInPoints(float x, float y, float w, float h); + void setScissorInPoints(float x, float y, float w, float h); + + void setIMEKeyboardState(bool bOpen); + +// void resize(int width, int height); + + /** + * not essential + */ +// void centerWindow(); +// void setScreenScale(float factor); + + /** + * the width and height is the real size of phone + */ + void setFrameWidthAndHeight(int width, int height); + + /** + @brief get the shared main open gl window + */ + static CCEGLView& sharedOpenGLView(); +private: + + bool m_bCaptured; + bool m_bOrientationReverted; + bool m_bOrientationInitVertical; + CCSet * m_pSet; + CCTouch * m_pTouch; + + //store current mouse point for moving, valid if and only if the mouse pressed + CCPoint m_mousePoint; + + EGLTouchDelegate * m_pDelegate; + + CCSize m_sSizeInPixel; + CCSize m_sSizeInPoint; + CCRect m_rcViewPort; + + bool bIsInit; + int m_eInitOrientation; + float m_fScreenScaleFactor; +}; + +NS_CC_END; + +#endif /* CCEGLVIEWLINUX_H_ */ diff --git a/cocos2dx/platform/Linux/CCFileUtils_Linux.cpp b/cocos2dx/platform/Linux/CCFileUtils_Linux.cpp new file mode 100644 index 0000000000..c2f6016466 --- /dev/null +++ b/cocos2dx/platform/Linux/CCFileUtils_Linux.cpp @@ -0,0 +1,86 @@ +/* + * CCFileUtils_Linux.cpp + * + * Created on: Aug 9, 2011 + * Author: laschweinski + */ +#include "CCCommon.h" +#include "ccMacros.h" + +#include "CCFileUtils.h" +#include "CCString.h" + +using namespace std; + +NS_CC_BEGIN; + +static string s_strResourcePath = ""; + +void CCFileUtils::setResourcePath(const char* pszResourcePath) { + CCAssert(pszResourcePath != NULL, "[FileUtils setResourcePath] -- wrong resource path"); + + s_strResourcePath = pszResourcePath; +} + +const char* CCFileUtils::fullPathFromRelativePath(const char *pszRelativePath) { + CCString *pRet = new CCString(); + pRet->autorelease(); + pRet->m_sString = s_strResourcePath + pszRelativePath; + return pRet->m_sString.c_str(); + +} + +const char *CCFileUtils::fullPathFromRelativeFile(const char *pszFilename, const char *pszRelativeFile) { + std::string relativeFile = pszRelativeFile; + CCString *pRet = new CCString(); + pRet->autorelease(); + pRet->m_sString = relativeFile.substr(0, relativeFile.rfind('/')+1); + pRet->m_sString += pszFilename; + return pRet->m_sString.c_str(); +} + +unsigned char* CCFileUtils::getFileData(const char* pszFileName, const char* pszMode, unsigned long * pSize) { + + string fullPath = pszFileName; + unsigned char * pData = 0; + + do + { + // read rrom other path than user set it + FILE *fp = fopen(pszFileName, pszMode); + CC_BREAK_IF(!fp); + + fseek(fp,0,SEEK_END); + *pSize = ftell(fp); + fseek(fp,0,SEEK_SET); + pData = new unsigned char[*pSize]; + *pSize = fread(pData,sizeof(unsigned char), *pSize,fp); + fclose(fp); + }while (0); + + if (! pData && getIsPopupNotify()) + { + std::string title = "Notification"; + std::string msg = "Get data from file("; + msg.append(fullPath.c_str()).append(") failed!"); + CCMessageBox(msg.c_str(), title.c_str()); + } + return pData; + +} + +void CCFileUtils::setResource(const char* pszZipFileName) { + CCAssert(0, "Have not implement!"); +} + +int CCFileUtils::ccLoadFileIntoMemory(const char *filename, unsigned char **out) { + CCAssert(0, "Have not implement!"); + return 0; +} + +string CCFileUtils::getWriteablePath() { + //return current resource path + return s_strResourcePath; +} + +NS_CC_END; diff --git a/cocos2dx/platform/Linux/CCImage_Linux.cpp b/cocos2dx/platform/Linux/CCImage_Linux.cpp new file mode 100644 index 0000000000..ab157958d4 --- /dev/null +++ b/cocos2dx/platform/Linux/CCImage_Linux.cpp @@ -0,0 +1,344 @@ +#include + +#include +#include +#include + +#include "CCFileUtils.h" + +#include "CCPlatformMacros.h" +#include "CCImage.h" +#include "ft2build.h" +#include "CCStdC.h" +#include FT_FREETYPE_H + +#define szFont_kenning 2 + +#define SHIFT6(num) (num>>6) + +using namespace std; + +struct TextLine { + string sLineStr; + int iLineWidth; +}; + +NS_CC_BEGIN; +class BitmapDC +{ +public: + BitmapDC() { + libError = FT_Init_FreeType( &library ); + iInterval = szFont_kenning; + m_pData = NULL; + reset(); + } + + ~BitmapDC() { + FT_Done_FreeType(library); + //data will be deleted by CCImage +// if (m_pData) { +// delete m_pData; +// } + + } + + void reset() { + iMaxLineWidth = 0; + iMaxLineHeight = 0; + vLines.clear(); + } + + void buildLine(stringstream& ss, FT_Face face, int iCurXCursor, char cLastChar) { + TextLine oTempLine; + ss << '\0'; + oTempLine.sLineStr = ss.str(); + //get last glyph + FT_Load_Glyph(face, FT_Get_Char_Index(face, cLastChar), + FT_LOAD_DEFAULT); + + oTempLine.iLineWidth = iCurXCursor - SHIFT6(face->glyph->metrics.horiAdvance+face->glyph->metrics.horiBearingX-face->glyph->metrics.width)/*-iInterval*/;//TODO interval + iMaxLineWidth = MAX(iMaxLineWidth, oTempLine.iLineWidth); + ss.clear(); + ss.str(""); + vLines.push_back(oTempLine); + } + + bool divideString(FT_Face face, const char* sText, int iMaxWidth, int iMaxHeight) { + const char* pText = sText; + int iError = 0; + int iCurXCursor; + iError = FT_Load_Glyph(face, FT_Get_Char_Index(face, *pText), + FT_LOAD_DEFAULT); + if (iError) { + return false; + } + iCurXCursor = -SHIFT6(face->glyph->metrics.horiBearingX); + //init stringstream + stringstream ss; + + int cLastCh = 0; + + while (*pText != '\0') { + if (*pText == '\n') { + buildLine(ss, face, iCurXCursor, cLastCh); + + pText++; + iError = FT_Load_Glyph(face, FT_Get_Char_Index(face, *pText), + FT_LOAD_DEFAULT); + if (iError) { + return false; + } + iCurXCursor = -SHIFT6(face->glyph->metrics.horiBearingX); + continue; + } + + iError = FT_Load_Glyph(face, FT_Get_Char_Index(face, *pText), + FT_LOAD_DEFAULT); + + if (iError) { + return false; + //break; + } + //check its width + //divide it when exceeding + if ((iMaxWidth > 0 + && iCurXCursor + SHIFT6(face->glyph->metrics.width) + > iMaxWidth)) { + buildLine(ss, face , iCurXCursor, cLastCh); + + iCurXCursor = -SHIFT6(face->glyph->metrics.horiBearingX); + + } + + cLastCh = *pText; + ss << *pText; + iCurXCursor += SHIFT6(face->glyph->metrics.horiAdvance) + iInterval; + pText++; + + } + if (iError) { + return false; + } + + buildLine(ss,face, iCurXCursor, cLastCh); + + return true; + } + + /** + * compute the start pos of every line + * + * return >0 represent the start x pos of the line + * while -1 means fail + * + */ + int computeLineStart(FT_Face face, CCImage::ETextAlign eAlignMask, char cText, + int iLineIndex) { + int iRet; + int iError = FT_Load_Glyph(face, FT_Get_Char_Index(face, cText), + FT_LOAD_DEFAULT); + if (iError) { + return -1; + } + + if (eAlignMask == CCImage::kAlignCenter) { + iRet = (iMaxLineWidth - vLines[iLineIndex].iLineWidth) / 2 + - SHIFT6(face->glyph->metrics.horiBearingX ); + + } else if (eAlignMask == CCImage::kAlignRight) { + iRet = (iMaxLineWidth - vLines[iLineIndex].iLineWidth) + - SHIFT6(face->glyph->metrics.horiBearingX ); + } else { + // left or other situation + iRet = -SHIFT6(face->glyph->metrics.horiBearingX ); + } + return iRet; + } + + bool getBitmap(const char *text, int nWidth, int nHeight, CCImage::ETextAlign eAlignMask, const char * pFontName, float fontSize) { + FT_Face face; + FT_Error iError; + + const char* pText = text; + //data will be deleted by CCImage +// if (m_pData) { +// delete m_pData; +// } + + int iCurXCursor, iCurYCursor; + bool bRet = false; + if (libError) { + return false; + } + do { + iError = FT_New_Face( library, pFontName, 0, &face ); + + if (iError) { + //no valid font found use default + CCLog("no valid font, use default %s\n", pFontName); + iError = FT_New_Face( library, "/usr/share/fonts/truetype/freefont/FreeSans.ttf", 0, &face ); + } + CC_BREAK_IF(iError); + + //select utf8 charmap + iError = FT_Select_Charmap(face,FT_ENCODING_UNICODE); + CC_BREAK_IF(iError); + + iError = FT_Set_Pixel_Sizes(face, fontSize,fontSize); + CC_BREAK_IF(iError); + + iError = divideString(face, text, nWidth, nHeight)?0:1; + + //compute the final line width + iMaxLineWidth = MAX(iMaxLineWidth, nWidth); + + iMaxLineHeight = (face->size->metrics.ascender >> 6) + - (face->size->metrics.descender >> 6); + iMaxLineHeight *= vLines.size(); + + //compute the final line height + iMaxLineHeight = MAX(iMaxLineHeight, nHeight); + m_pData = new unsigned char[iMaxLineWidth * iMaxLineHeight*4]; + iCurYCursor = SHIFT6(face->size->metrics.ascender); + + memset(m_pData,0, iMaxLineWidth * iMaxLineHeight*4); + + for (int i = 0; i < vLines.size(); i++) { + pText = vLines[i].sLineStr.c_str(); + //initialize the origin cursor + iCurXCursor = computeLineStart(face, eAlignMask, *pText, i); + + while (*pText != 0) { + int iError = FT_Load_Glyph(face, FT_Get_Char_Index(face, *pText), + FT_LOAD_RENDER); + if (iError) { + break; + } + + // convert glyph to bitmap with 256 gray + // and get the bitmap + FT_Bitmap & bitmap = face->glyph->bitmap; + + for (int i = 0; i < bitmap.rows; ++i) { + for (int j = 0; j < bitmap.width; ++j) { + // if it has gray>0 we set show it as 1, o otherwise + int iY = iCurYCursor + i + - (face->glyph->metrics.horiBearingY + >> 6); + int iX = iCurXCursor + + (face->glyph->metrics.horiBearingX + >> 6) + j; + + if (iY>=iMaxLineHeight) { + //exceed the height truncate + continue; + } + +// m_pData[(iY * iMaxLineWidth + iX) * 4 + 3] = +// bitmap.buffer[i * bitmap.width + j] ? +// 0xff : 0;//alpha +// m_pData[(iY * iMaxLineWidth + iX) * 4 + 1] = +// bitmap.buffer[i * bitmap.width + j];//R +// m_pData[(iY * iMaxLineWidth + iX) * 4 + 2] = +// bitmap.buffer[i * bitmap.width + j];//G +// m_pData[(iY * iMaxLineWidth + iX) * 4 + 0] = +// bitmap.buffer[i * bitmap.width + j];//B + int iTemp = 0; + unsigned char cTemp = bitmap.buffer[i + * bitmap.width + j]; + iTemp |= (cTemp ? 0xff : 0)<<24; + iTemp |= cTemp << 16 | cTemp << 8 | cTemp; + *(int*) &m_pData[(iY * iMaxLineWidth + iX) + * 4 + 0] = iTemp; + } + } + //step to next glyph + iCurXCursor += (face->glyph->metrics.horiAdvance >> 6) + + iInterval; + + pText++; + } + iCurYCursor += (face->size->metrics.ascender >> 6) + - (face->size->metrics.descender >> 6); + } + //print all image bitmap +// for (int i = 0; i < iMaxLineHeight; i++) { +// for (int j = 0; j < iMaxLineWidth; j++) { +// printf("%d", +// m_pData[(i * iMaxLineWidth + j) * 4] ? 1 : 0); +// } +// printf("\n"); +// } + + // free face + FT_Done_Face(face); + face = NULL; + + //clear all lines + vLines.clear(); + + //success; + if (iError) { + bRet = false; + } else + bRet = true; + }while(0); + + return bRet; + } +public: + FT_Library library; + unsigned char *m_pData; + int libError; + vector vLines; + int iInterval; + int iMaxLineWidth; + int iMaxLineHeight; +}; + +static BitmapDC& sharedBitmapDC() +{ + static BitmapDC s_BmpDC; + return s_BmpDC; +} + +bool CCImage::initWithString( + const char * pText, + int nWidth/* = 0*/, + int nHeight/* = 0*/, + ETextAlign eAlignMask/* = kAlignCenter*/, + const char * pFontName/* = nil*/, + int nSize/* = 0*/) +{ + bool bRet = false; + do + { + CC_BREAK_IF(! pText); + + BitmapDC &dc = sharedBitmapDC(); + + const char* pFullFontName = CCFileUtils::fullPathFromRelativePath(pFontName); + + CC_BREAK_IF(! dc.getBitmap(pText, nWidth, nHeight, eAlignMask, pFullFontName, nSize)); + + // assign the dc.m_pData to m_pData in order to save time + m_pData = dc.m_pData; + CC_BREAK_IF(! m_pData); + + m_nWidth = (short)dc.iMaxLineWidth; + m_nHeight = (short)dc.iMaxLineHeight; + m_bHasAlpha = true; + m_bPreMulti = true; + m_nBitsPerComponent = 8; + + bRet = true; + + dc.reset(); + }while (0); + + //do nothing + return bRet; +} + +NS_CC_END; diff --git a/tests/test.linux/main.cpp b/tests/test.linux/main.cpp new file mode 100644 index 0000000000..1fac7f0f95 --- /dev/null +++ b/tests/test.linux/main.cpp @@ -0,0 +1,13 @@ +#include "main.h" + +#include "AppDelegate.h" + +int main(int argc, char **argv) { + + // create the application instance + + + AppDelegate app; + + return cocos2d::CCApplication::sharedApplication().run(); +} diff --git a/tests/test.linux/main.h b/tests/test.linux/main.h new file mode 100644 index 0000000000..86022e430a --- /dev/null +++ b/tests/test.linux/main.h @@ -0,0 +1,13 @@ +#ifndef __MAIN_H__ +#define __MAIN_H__ + +#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers + +// Windows Header Files: +//#include +//#include + +// C RunTime Header Files +#include "CCStdC.h" + +#endif // __MAIN_H__ From abc856ac6d52934cf69bfffebdc9f2c703566551 Mon Sep 17 00:00:00 2001 From: laschweinski Date: Fri, 19 Aug 2011 15:37:57 +0800 Subject: [PATCH 07/31] add box2d test --- tests/AppDelegate.cpp | 2 +- tests/tests/Box2DTestBed/Tests/EdgeShapes.h | 3 +++ tests/tests/controller.cpp | 4 ++-- tests/tests/tests.h | 4 ++-- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/tests/AppDelegate.cpp b/tests/AppDelegate.cpp index 5611bea08d..ff730d1228 100644 --- a/tests/AppDelegate.cpp +++ b/tests/AppDelegate.cpp @@ -95,7 +95,7 @@ bool AppDelegate::applicationDidFinishLaunching() // pDirector->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); // turn on display FPS -// pDirector->setDisplayFPS(true); + pDirector->setDisplayFPS(true); // set FPS. the default value is 1.0/60 if you don't call this pDirector->setAnimationInterval(1.0 / 60); diff --git a/tests/tests/Box2DTestBed/Tests/EdgeShapes.h b/tests/tests/Box2DTestBed/Tests/EdgeShapes.h index db3f5ec685..89b9dc30de 100644 --- a/tests/tests/Box2DTestBed/Tests/EdgeShapes.h +++ b/tests/tests/Box2DTestBed/Tests/EdgeShapes.h @@ -19,6 +19,9 @@ #ifndef EDGE_SHAPES_H #define EDGE_SHAPES_H +#include "memory.h" +#include "string.h" + class EdgeShapesCallback : public b2RayCastCallback { public: diff --git a/tests/tests/controller.cpp b/tests/tests/controller.cpp index f6c8f87701..191bc665f7 100644 --- a/tests/tests/controller.cpp +++ b/tests/tests/controller.cpp @@ -77,9 +77,9 @@ static TestScene* CreateTestScene(int nIdx) case TEST_TEXTURE2D: pScene = new TextureTestScene(); break; case TEST_BOX2D: -// pScene = new Box2DTestScene(); break; + pScene = new Box2DTestScene(); break; case TEST_BOX2DBED: -// pScene = new Box2dTestBedScene(); break; + pScene = new Box2dTestBedScene(); break; case TEST_EFFECT_ADVANCE: pScene = new EffectAdvanceScene(); break; case TEST_HIRES: diff --git a/tests/tests/tests.h b/tests/tests/tests.h index cbf1d7522a..265f4a9a25 100644 --- a/tests/tests/tests.h +++ b/tests/tests/tests.h @@ -28,8 +28,8 @@ #include "SpriteTest/SpriteTest.h" #include "SchedulerTest/SchedulerTest.h" #include "RenderTextureTest/RenderTextureTest.h" -//#include "Box2DTest/Box2dTest.h" -//#include "Box2DTestBed/Box2dView.h" +#include "Box2DTest/Box2dTest.h" +#include "Box2DTestBed/Box2dView.h" #include "EffectsAdvancedTest/EffectsAdvancedTest.h" #include "HiResTest/HiResTest.h" #include "AccelerometerTest/AccelerometerTest.h" From ff5222fff8c1e6e9c148b9d3f6a1303148a38483 Mon Sep 17 00:00:00 2001 From: laschweinski Date: Sun, 21 Aug 2011 19:00:26 +0800 Subject: [PATCH 08/31] some files missiong(eclipse with git is too hard to play) --- HelloCocos2dx/Classes/AppDelegate.cpp | 117 ++++++ HelloCocos2dx/Classes/AppDelegate.h | 43 ++ HelloCocos2dx/Classes/HelloWorldScene.cpp | 82 ++++ HelloCocos2dx/Classes/HelloWorldScene.h | 22 + HelloCocos2dx/Linux/main.cpp | 13 + HelloCocos2dx/Linux/main.h | 13 + HelloCocos2dx/Resource/app.config.txt | 5 + HelloCocos2dx/android/AndroidManifest.xml | 22 + HelloCocos2dx/android/build.properties | 17 + HelloCocos2dx/android/build.xml | 79 ++++ HelloCocos2dx/android/build_native.sh | 29 ++ HelloCocos2dx/android/default.properties | 11 + .../gen/org/cocos2dx/application/R.java | 26 ++ HelloCocos2dx/android/jni/helloworld/main.cpp | 34 ++ HelloCocos2dx/android/local.properties | 10 + HelloCocos2dx/android/proguard.cfg | 40 ++ .../android/res/layout/game_demo.xml | 13 + .../android/res/layout/helloworld_demo.xml | 13 + HelloCocos2dx/android/res/values/strings.xml | 4 + .../cocos2dx/application/ApplicationDemo.java | 50 +++ .../cocos2dx/lib/Cocos2dxAccelerometer.java | 71 ++++ .../org/cocos2dx/lib/Cocos2dxActivity.java | 257 ++++++++++++ .../src/org/cocos2dx/lib/Cocos2dxBitmap.java | 354 ++++++++++++++++ .../cocos2dx/lib/Cocos2dxGLSurfaceView.java | 384 ++++++++++++++++++ .../src/org/cocos2dx/lib/Cocos2dxMusic.java | 177 ++++++++ .../org/cocos2dx/lib/Cocos2dxRenderer.java | 107 +++++ .../src/org/cocos2dx/lib/Cocos2dxSound.java | 160 ++++++++ HelloWorld/android/build.properties | 17 + HelloWorld/android/build.xml | 79 ++++ HelloWorld/android/local.properties | 10 + HelloWorld/android/proguard.cfg | 40 ++ HelloWorld/android/res/layout/game_demo.xml | 13 + create-android-project.sh | 6 +- mycreate-android-project.sh | 60 +++ template/android/mycopy_files.sh | 127 ++++++ .../PlanetCute-1024x1024.png.REMOVED.git-id | 1 + .../Res/Images/atlastest.png.REMOVED.git-id | 1 + .../Images/background1-hd.png.REMOVED.git-id | 1 + .../Res/Images/background1.png.REMOVED.git-id | 1 + .../Images/background2-hd.png.REMOVED.git-id | 1 + .../Res/Images/background2.png.REMOVED.git-id | 1 + .../Res/Images/bugs/bug886.png.REMOVED.git-id | 1 + ...ossini_dance_atlas-mono.png.REMOVED.git-id | 1 + .../landscape-1024x1024.png.REMOVED.git-id | 1 + .../Images/spritesheet1.png.REMOVED.git-id | 1 + .../TileMaps/hexa-tiles.png.REMOVED.git-id | 1 + .../TileMaps/ortho-test1.png.REMOVED.git-id | 1 + .../Res/animations/grossini.plist.xml | 282 +++++++++++++ tests/test.linux/Res/app.config.txt | 5 + .../Res/background.mp3.REMOVED.git-id | 1 + .../fonts/bitmapFontTest.png.REMOVED.git-id | 1 + .../fonts/bitmapFontTest2.png.REMOVED.git-id | 1 + .../Res/fonts/futura-48.png.REMOVED.git-id | 1 + ..._bold_italic-charmap-hd.png.REMOVED.git-id | 1 + 54 files changed, 2806 insertions(+), 3 deletions(-) create mode 100644 HelloCocos2dx/Classes/AppDelegate.cpp create mode 100644 HelloCocos2dx/Classes/AppDelegate.h create mode 100644 HelloCocos2dx/Classes/HelloWorldScene.cpp create mode 100644 HelloCocos2dx/Classes/HelloWorldScene.h create mode 100644 HelloCocos2dx/Linux/main.cpp create mode 100644 HelloCocos2dx/Linux/main.h create mode 100644 HelloCocos2dx/Resource/app.config.txt create mode 100644 HelloCocos2dx/android/AndroidManifest.xml create mode 100644 HelloCocos2dx/android/build.properties create mode 100644 HelloCocos2dx/android/build.xml create mode 100644 HelloCocos2dx/android/build_native.sh create mode 100644 HelloCocos2dx/android/default.properties create mode 100644 HelloCocos2dx/android/gen/org/cocos2dx/application/R.java create mode 100644 HelloCocos2dx/android/jni/helloworld/main.cpp create mode 100644 HelloCocos2dx/android/local.properties create mode 100644 HelloCocos2dx/android/proguard.cfg create mode 100644 HelloCocos2dx/android/res/layout/game_demo.xml create mode 100644 HelloCocos2dx/android/res/layout/helloworld_demo.xml create mode 100644 HelloCocos2dx/android/res/values/strings.xml create mode 100644 HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java create mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java create mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxActivity.java create mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxBitmap.java create mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java create mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxMusic.java create mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxRenderer.java create mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxSound.java create mode 100644 HelloWorld/android/build.properties create mode 100644 HelloWorld/android/build.xml create mode 100644 HelloWorld/android/local.properties create mode 100644 HelloWorld/android/proguard.cfg create mode 100644 HelloWorld/android/res/layout/game_demo.xml create mode 100755 mycreate-android-project.sh create mode 100644 template/android/mycopy_files.sh create mode 100644 tests/test.linux/Res/Images/PlanetCute-1024x1024.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/Images/atlastest.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/Images/background1-hd.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/Images/background1.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/Images/background2-hd.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/Images/background2.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/Images/bugs/bug886.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/Images/grossini_dance_atlas-mono.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/Images/landscape-1024x1024.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/Images/spritesheet1.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/TileMaps/hexa-tiles.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/TileMaps/ortho-test1.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/animations/grossini.plist.xml create mode 100644 tests/test.linux/Res/app.config.txt create mode 100644 tests/test.linux/Res/background.mp3.REMOVED.git-id create mode 100644 tests/test.linux/Res/fonts/bitmapFontTest.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/fonts/bitmapFontTest2.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/fonts/futura-48.png.REMOVED.git-id create mode 100644 tests/test.linux/Res/fonts/tuffy_bold_italic-charmap-hd.png.REMOVED.git-id diff --git a/HelloCocos2dx/Classes/AppDelegate.cpp b/HelloCocos2dx/Classes/AppDelegate.cpp new file mode 100644 index 0000000000..b403f1f400 --- /dev/null +++ b/HelloCocos2dx/Classes/AppDelegate.cpp @@ -0,0 +1,117 @@ +#include "AppDelegate.h" + +#include "cocos2d.h" +#include "HelloWorldScene.h" + +#include "CCEGLView.h" + +USING_NS_CC; + +AppDelegate::AppDelegate() { + +} + +AppDelegate::~AppDelegate() { +} + +bool AppDelegate::initInstance() { + bool bRet = false; + do { +#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) + + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView * pMainWnd = new CCEGLView(); + CC_BREAK_IF(! pMainWnd + || ! pMainWnd->Create(TEXT("cocos2d: Hello World"), 480, 320)); + +#endif // CC_PLATFORM_WIN32 +#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) + + // OpenGLView initialized in testsAppDelegate.mm on ios platform, nothing need to do here. + +#endif // CC_PLATFORM_IOS +#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) + + // OpenGLView initialized in HelloWorld/android/jni/helloworld/main.cpp + // the default setting is to create a fullscreen view + // if you want to use auto-scale, please enable view->create(320,480) in main.cpp + // if the resources under '/sdcard" or other writeable path, set it. + // warning: the audio source should in assets/ + // cocos2d::CCFileUtils::setResourcePath("/sdcard"); + +#endif // CC_PLATFORM_ANDROID +#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) + + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView* pMainWnd = new CCEGLView(this); + CC_BREAK_IF(! pMainWnd || ! pMainWnd->Create(320,480, WM_WINDOW_ROTATE_MODE_CW)); + +#ifndef _TRANZDA_VM_ + // on wophone emulator, we copy resources files to Work7/NEWPLUS/TDA_DATA/Data/ folder instead of zip file + cocos2d::CCFileUtils::setResource("HelloWorld.zip"); +#endif + +#endif // CC_PLATFORM_WOPHONE +#if (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) + // MaxAksenov said it's NOT a very elegant solution. I agree, haha + CCDirector::sharedDirector()->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); +#endif +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView * pMainWnd = new CCEGLView(); + CC_BREAK_IF(! pMainWnd + || ! pMainWnd->Create("cocos2d: Hello World", 800, 480,480, 320)); + + CCFileUtils::setResourcePath("Resource/"); + +#endif // CC_PLATFORM_LINUX + bRet = true; + } while (0); + return bRet; +} + +bool AppDelegate::applicationDidFinishLaunching() { + // initialize director + CCDirector *pDirector = CCDirector::sharedDirector(); + + pDirector->setOpenGLView(&CCEGLView::sharedOpenGLView()); + + // enable High Resource Mode(2x, such as iphone4) and maintains low resource on other devices. +// pDirector->enableRetinaDisplay(true); + + // turn on display FPS + pDirector->setDisplayFPS(true); + + // pDirector->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); + + // set FPS. the default value is 1.0/60 if you don't call this + pDirector->setAnimationInterval(1.0 / 60); + + // create a scene. it's an autorelease object + CCScene *pScene = HelloWorld::scene(); + + // run + pDirector->runWithScene(pScene); + + return true; +} + +// This function will be called when the app is inactive. When comes a phone call,it's be invoked too +void AppDelegate::applicationDidEnterBackground() { + CCDirector::sharedDirector()->pause(); + + // if you use SimpleAudioEngine, it must be pause + // SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); +} + +// this function will be called when the app is active again +void AppDelegate::applicationWillEnterForeground() { + CCDirector::sharedDirector()->resume(); + + // if you use SimpleAudioEngine, it must resume here + // SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); +} diff --git a/HelloCocos2dx/Classes/AppDelegate.h b/HelloCocos2dx/Classes/AppDelegate.h new file mode 100644 index 0000000000..6a7b537389 --- /dev/null +++ b/HelloCocos2dx/Classes/AppDelegate.h @@ -0,0 +1,43 @@ +#ifndef _APP_DELEGATE_H_ +#define _APP_DELEGATE_H_ + +#include "CCApplication.h" + +/** +@brief The cocos2d Application. + +The reason for implement as private inheritance is to hide some interface call by CCDirector. +*/ +class AppDelegate : private cocos2d::CCApplication +{ +public: + AppDelegate(); + virtual ~AppDelegate(); + + /** + @brief Implement for initialize OpenGL instance, set source path, etc... + */ + virtual bool initInstance(); + + /** + @brief Implement CCDirector and CCScene init code here. + @return true Initialize success, app continue. + @return false Initialize failed, app terminate. + */ + virtual bool applicationDidFinishLaunching(); + + /** + @brief The function be called when the application enter background + @param the pointer of the application + */ + virtual void applicationDidEnterBackground(); + + /** + @brief The function be called when the application enter foreground + @param the pointer of the application + */ + virtual void applicationWillEnterForeground(); +}; + +#endif // _APP_DELEGATE_H_ + diff --git a/HelloCocos2dx/Classes/HelloWorldScene.cpp b/HelloCocos2dx/Classes/HelloWorldScene.cpp new file mode 100644 index 0000000000..794823e80f --- /dev/null +++ b/HelloCocos2dx/Classes/HelloWorldScene.cpp @@ -0,0 +1,82 @@ +#include "HelloWorldScene.h" + +USING_NS_CC; + +CCScene* HelloWorld::scene() +{ + // 'scene' is an autorelease object + CCScene *scene = CCScene::node(); + + // 'layer' is an autorelease object + HelloWorld *layer = HelloWorld::node(); + + // add layer as a child to scene + scene->addChild(layer); + + // return the scene + return scene; +} + +// on "init" you need to initialize your instance +bool HelloWorld::init() +{ + ////////////////////////////// + // 1. super init first + if ( !CCLayer::init() ) + { + return false; + } + + ///////////////////////////// + // 2. add a menu item with "X" image, which is clicked to quit the program + // you may modify it. + + // add a "close" icon to exit the progress. it's an autorelease object + CCMenuItemImage *pCloseItem = CCMenuItemImage::itemFromNormalImage( + "CloseNormal.png", + "CloseSelected.png", + this, + menu_selector(HelloWorld::menuCloseCallback) ); + pCloseItem->setPosition( ccp(CCDirector::sharedDirector()->getWinSize().width - 20, 20) ); + + // create menu, it's an autorelease object + CCMenu* pMenu = CCMenu::menuWithItems(pCloseItem, NULL); + pMenu->setPosition( CCPointZero ); + this->addChild(pMenu, 1); + + ///////////////////////////// + // 3. add your codes below... + + // add a label shows "Hello World" + // create and initialize a label + CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello\nWorld", CCSize(0,0), CCTextAlignmentCenter,"Materhorn.", 34); + + // ask director the window size + CCSize size = CCDirector::sharedDirector()->getWinSize(); + + // position the label on the center of the screen + pLabel->setPosition( ccp(size.width / 2, size.height - 200) ); + + // add the label as a child to this layer + this->addChild(pLabel, 1); + + // add "HelloWorld" splash screen" + CCSprite* pSprite = CCSprite::spriteWithFile("HelloWorld.png"); + + // position the sprite on the center of the screen + pSprite->setPosition( ccp(size.width/2, size.height/2) ); + + // add the sprite as a child to this layer + this->addChild(pSprite, 0); + + return true; +} + +void HelloWorld::menuCloseCallback(CCObject* pSender) +{ + CCDirector::sharedDirector()->end(); + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) + exit(0); +#endif +} diff --git a/HelloCocos2dx/Classes/HelloWorldScene.h b/HelloCocos2dx/Classes/HelloWorldScene.h new file mode 100644 index 0000000000..274a176df0 --- /dev/null +++ b/HelloCocos2dx/Classes/HelloWorldScene.h @@ -0,0 +1,22 @@ +#ifndef __HELLOWORLD_SCENE_H__ +#define __HELLOWORLD_SCENE_H__ + +#include "cocos2d.h" + +class HelloWorld : public cocos2d::CCLayer +{ +public: + // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone + virtual bool init(); + + // there's no 'id' in cpp, so we recommand to return the exactly class pointer + static cocos2d::CCScene* scene(); + + // a selector callback + virtual void menuCloseCallback(CCObject* pSender); + + // implement the "static node()" method manually + LAYER_NODE_FUNC(HelloWorld); +}; + +#endif // __HELLOWORLD_SCENE_H__ diff --git a/HelloCocos2dx/Linux/main.cpp b/HelloCocos2dx/Linux/main.cpp new file mode 100644 index 0000000000..1fac7f0f95 --- /dev/null +++ b/HelloCocos2dx/Linux/main.cpp @@ -0,0 +1,13 @@ +#include "main.h" + +#include "AppDelegate.h" + +int main(int argc, char **argv) { + + // create the application instance + + + AppDelegate app; + + return cocos2d::CCApplication::sharedApplication().run(); +} diff --git a/HelloCocos2dx/Linux/main.h b/HelloCocos2dx/Linux/main.h new file mode 100644 index 0000000000..86022e430a --- /dev/null +++ b/HelloCocos2dx/Linux/main.h @@ -0,0 +1,13 @@ +#ifndef __MAIN_H__ +#define __MAIN_H__ + +#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers + +// Windows Header Files: +//#include +//#include + +// C RunTime Header Files +#include "CCStdC.h" + +#endif // __MAIN_H__ diff --git a/HelloCocos2dx/Resource/app.config.txt b/HelloCocos2dx/Resource/app.config.txt new file mode 100644 index 0000000000..104530ed60 --- /dev/null +++ b/HelloCocos2dx/Resource/app.config.txt @@ -0,0 +1,5 @@ +[Trace] +GAME <0 or 1> Game Channel + +[Assert] +GAME <0 or 1> Game Assert Channel \ No newline at end of file diff --git a/HelloCocos2dx/android/AndroidManifest.xml b/HelloCocos2dx/android/AndroidManifest.xml new file mode 100644 index 0000000000..787e349005 --- /dev/null +++ b/HelloCocos2dx/android/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/HelloCocos2dx/android/build.properties b/HelloCocos2dx/android/build.properties new file mode 100644 index 0000000000..ee52d86d94 --- /dev/null +++ b/HelloCocos2dx/android/build.properties @@ -0,0 +1,17 @@ +# This file is used to override default values used by the Ant build system. +# +# This file must be checked in Version Control Systems, as it is +# integral to the build system of your project. + +# This file is only used by the Ant script. + +# You can use this to override default values such as +# 'source.dir' for the location of your java source folder and +# 'out.dir' for the location of your output folder. + +# You can also use it define how the release builds are signed by declaring +# the following properties: +# 'key.store' for the location of your keystore and +# 'key.alias' for the name of the key to use. +# The password will be asked during the build when you use the 'release' target. + diff --git a/HelloCocos2dx/android/build.xml b/HelloCocos2dx/android/build.xml new file mode 100644 index 0000000000..768294d19c --- /dev/null +++ b/HelloCocos2dx/android/build.xml @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HelloCocos2dx/android/build_native.sh b/HelloCocos2dx/android/build_native.sh new file mode 100644 index 0000000000..5e1db3e435 --- /dev/null +++ b/HelloCocos2dx/android/build_native.sh @@ -0,0 +1,29 @@ +# set params +ANDROID_NDK_ROOT=/cygdrive/e/android-ndk-r5 +COCOS2DX_ROOT=/cygdrive/d/Work7/cocos2d-x +HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloWorld/android + +# make sure assets is exist +if [ -d $HELLOWORLD_ROOT/assets ]; then + rm -rf $HELLOWORLD_ROOT/assets +fi + +mkdir $HELLOWORLD_ROOT/assets + +# copy resources +for file in $COCOS2DX_ROOT/HelloWorld/Resource/* +do + if [ -d $file ]; then + cp -rf $file $HELLOWORLD_ROOT/assets + fi + + if [ -f $file ]; then + cp $file $HELLOWORLD_ROOT/assets + fi +done + +# build +pushd $ANDROID_NDK_ROOT +./ndk-build -C $HELLOWORLD_ROOT $* +popd + diff --git a/HelloCocos2dx/android/default.properties b/HelloCocos2dx/android/default.properties new file mode 100644 index 0000000000..9d135cb85f --- /dev/null +++ b/HelloCocos2dx/android/default.properties @@ -0,0 +1,11 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system use, +# "build.properties", and override values to adapt the script to your +# project structure. + +# Project target. +target=android-7 diff --git a/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java b/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java new file mode 100644 index 0000000000..979d1ae7fc --- /dev/null +++ b/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java @@ -0,0 +1,26 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package org.cocos2dx.application; + +public final class R { + public static final class attr { + } + public static final class drawable { + public static final int icon=0x7f020000; + } + public static final class id { + public static final int helloworld_gl_surfaceview=0x7f050001; + public static final int textField=0x7f050000; + } + public static final class layout { + public static final int helloworld_demo=0x7f030000; + } + public static final class string { + public static final int app_name=0x7f040000; + } +} diff --git a/HelloCocos2dx/android/jni/helloworld/main.cpp b/HelloCocos2dx/android/jni/helloworld/main.cpp new file mode 100644 index 0000000000..e4ceb2f4ea --- /dev/null +++ b/HelloCocos2dx/android/jni/helloworld/main.cpp @@ -0,0 +1,34 @@ +#include "AppDelegate.h" +#include "cocos2d.h" +#include +#include + +#define LOG_TAG "main" +#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__) + +using namespace cocos2d; + +extern "C" +{ + +void Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeInit(JNIEnv* env, jobject thiz, jint w, jint h) +{ + if (!cocos2d::CCDirector::sharedDirector()->getOpenGLView()) + { + cocos2d::CCEGLView *view = &cocos2d::CCEGLView::sharedOpenGLView(); + view->setFrameWidthAndHeight(w, h); + // if you want to run in WVGA with HVGA resource, set it + // view->create(480, 320); + cocos2d::CCDirector::sharedDirector()->setOpenGLView(view); + + AppDelegate *pAppDelegate = new AppDelegate(); + cocos2d::CCApplication::sharedApplication().run(); + } + else + { + cocos2d::CCTextureCache::reloadAllTextures(); + cocos2d::CCDirector::sharedDirector()->setGLDefaultValues(); + } +} + +} diff --git a/HelloCocos2dx/android/local.properties b/HelloCocos2dx/android/local.properties new file mode 100644 index 0000000000..ba25bfda91 --- /dev/null +++ b/HelloCocos2dx/android/local.properties @@ -0,0 +1,10 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must *NOT* be checked in Version Control Systems, +# as it contains information specific to your local configuration. + +# location of the SDK. This is only used by Ant +# For customization when using a Version Control System, please read the +# header note. +sdk.dir=/home/laschweinski/android/android-sdk-linux_86 diff --git a/HelloCocos2dx/android/proguard.cfg b/HelloCocos2dx/android/proguard.cfg new file mode 100644 index 0000000000..b1cdf17b5b --- /dev/null +++ b/HelloCocos2dx/android/proguard.cfg @@ -0,0 +1,40 @@ +-optimizationpasses 5 +-dontusemixedcaseclassnames +-dontskipnonpubliclibraryclasses +-dontpreverify +-verbose +-optimizations !code/simplification/arithmetic,!field/*,!class/merging/* + +-keep public class * extends android.app.Activity +-keep public class * extends android.app.Application +-keep public class * extends android.app.Service +-keep public class * extends android.content.BroadcastReceiver +-keep public class * extends android.content.ContentProvider +-keep public class * extends android.app.backup.BackupAgentHelper +-keep public class * extends android.preference.Preference +-keep public class com.android.vending.licensing.ILicensingService + +-keepclasseswithmembernames class * { + native ; +} + +-keepclasseswithmembers class * { + public (android.content.Context, android.util.AttributeSet); +} + +-keepclasseswithmembers class * { + public (android.content.Context, android.util.AttributeSet, int); +} + +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); +} + +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keep class * implements android.os.Parcelable { + public static final android.os.Parcelable$Creator *; +} diff --git a/HelloCocos2dx/android/res/layout/game_demo.xml b/HelloCocos2dx/android/res/layout/game_demo.xml new file mode 100644 index 0000000000..7fd5ed4b76 --- /dev/null +++ b/HelloCocos2dx/android/res/layout/game_demo.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/HelloCocos2dx/android/res/layout/helloworld_demo.xml b/HelloCocos2dx/android/res/layout/helloworld_demo.xml new file mode 100644 index 0000000000..f63c70b11e --- /dev/null +++ b/HelloCocos2dx/android/res/layout/helloworld_demo.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/HelloCocos2dx/android/res/values/strings.xml b/HelloCocos2dx/android/res/values/strings.xml new file mode 100644 index 0000000000..5efa161ddd --- /dev/null +++ b/HelloCocos2dx/android/res/values/strings.xml @@ -0,0 +1,4 @@ + + + helloworld + diff --git a/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java b/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java new file mode 100644 index 0000000000..45e812f09c --- /dev/null +++ b/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java @@ -0,0 +1,50 @@ +package org.cocos2dx.application; +import org.cocos2dx.lib.Cocos2dxActivity; +import org.cocos2dx.lib.Cocos2dxGLSurfaceView; + +import android.os.Bundle; +import android.widget.EditText; + +public class ApplicationDemo extends Cocos2dxActivity{ + private Cocos2dxGLSurfaceView mGLView; + + protected void onCreate(Bundle savedInstanceState){ + super.onCreate(savedInstanceState); + + // get the packageName,it's used to set the resource path + String packageName = getApplication().getPackageName(); + super.setPackageName(packageName); + + setContentView(R.layout.helloworld_demo); + mGLView = (Cocos2dxGLSurfaceView) findViewById(R.id.helloworld_gl_surfaceview); + mGLView.setTextField((EditText)findViewById(R.id.textField)); + + // Get the size of the mGLView after the layout happens + mGLView.post(new Runnable() { + + @Override + public void run() { + Cocos2dxActivity.screenHeight = mGLView.getHeight(); + Cocos2dxActivity.screenWidth = mGLView.getWidth(); + } + }); + } + + @Override + protected void onPause() { + super.onPause(); + mGLView.onPause(); + } + + @Override + protected void onResume() { + super.onResume(); + mGLView.onResume(); + } + + static { + System.loadLibrary("cocos2d"); + System.loadLibrary("cocosdenshion"); + System.loadLibrary("helloworld"); + } +} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java new file mode 100644 index 0000000000..a3a7a7f46f --- /dev/null +++ b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java @@ -0,0 +1,71 @@ +package org.cocos2dx.lib; + +import android.content.Context; +import android.content.res.Configuration; +import android.hardware.Sensor; +import android.hardware.SensorEvent; +import android.hardware.SensorEventListener; +import android.hardware.SensorManager; +import android.util.Log; +import android.view.WindowManager; + +/** + * + * This class is used for controlling the Accelerometer + * + */ +public class Cocos2dxAccelerometer implements SensorEventListener { + + private static final String TAG = "Cocos2dxAccelerometer"; + private Context mContext; + private SensorManager mSensorManager; + private Sensor mAccelerometer; + + public Cocos2dxAccelerometer(Context context){ + mContext = context; + + //Get an instance of the SensorManager + mSensorManager = (SensorManager) mContext.getSystemService(Context.SENSOR_SERVICE); + mAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER); + } + + public void enable() { + mSensorManager.registerListener(this, mAccelerometer, SensorManager.SENSOR_DELAY_GAME); + } + + public void disable () { + mSensorManager.unregisterListener(this); + } + + @Override + public void onSensorChanged(SensorEvent event) { + + if (event.sensor.getType() != Sensor.TYPE_ACCELEROMETER){ + return; + } + + float x = event.values[0]; + float y = event.values[1]; + float z = event.values[2]; + + /* + * Because the axes are not swapped when the device's screen orientation changes. + * So we should swap it here. + */ + int orientation = mContext.getResources().getConfiguration().orientation; + if (orientation == Configuration.ORIENTATION_LANDSCAPE){ + float tmp = x; + x = -y; + y = tmp; + } + + onSensorChanged(x, y, z, event.timestamp); + // Log.d(TAG, "x = " + event.values[0] + " y = " + event.values[1] + " z = " + event.values[2]); + } + + @Override + public void onAccuracyChanged(Sensor sensor, int accuracy) { + } + + private static native void onSensorChanged(float x, float y, float z, long timeStamp); +} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxActivity.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxActivity.java new file mode 100644 index 0000000000..6e16fc921c --- /dev/null +++ b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxActivity.java @@ -0,0 +1,257 @@ +/* + * Copyright (C) 2009 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This is a small port of the "San Angeles Observation" demo + * program for OpenGL ES 1.x. For more details, see: + * + * http://jet.ro/visuals/san-angeles-observation/ + * + * This program demonstrates how to use a GLSurfaceView from Java + * along with native OpenGL calls to perform frame rendering. + * + * Touching the screen will start/stop the animation. + * + * Note that the demo runs much faster on the emulator than on + * real devices, this is mainly due to the following facts: + * + * - the demo sends bazillions of polygons to OpenGL without + * even trying to do culling. Most of them are clearly out + * of view. + * + * - on a real device, the GPU bus is the real bottleneck + * that prevent the demo from getting acceptable performance. + * + * - the software OpenGL engine used in the emulator uses + * the system bus instead, and its code rocks :-) + * + * Fixing the program to send less polygons to the GPU is left + * as an exercise to the reader. As always, patches welcomed :-) + */ + +package org.cocos2dx.lib; + +import android.app.Activity; +import android.app.AlertDialog; +import android.app.Dialog; +import android.content.DialogInterface; +import android.content.pm.ApplicationInfo; +import android.content.pm.PackageManager; +import android.content.pm.PackageManager.NameNotFoundException; +import android.os.Bundle; +import android.os.Handler; +import android.os.Message; +import android.util.DisplayMetrics; +import android.util.Log; + +public class Cocos2dxActivity extends Activity{ + public static int screenWidth; + public static int screenHeight; + private static Cocos2dxMusic backgroundMusicPlayer; + private static Cocos2dxSound soundPlayer; + private static Cocos2dxAccelerometer accelerometer; + private static boolean accelerometerEnabled = false; + private static Handler handler; + private final static int HANDLER_SHOW_DIALOG = 1; + private static String packageName; + + private static native void nativeSetPaths(String apkPath); + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + // get frame size + DisplayMetrics dm = new DisplayMetrics(); + getWindowManager().getDefaultDisplay().getMetrics(dm); + screenWidth = dm.widthPixels; + screenHeight = dm.heightPixels; + accelerometer = new Cocos2dxAccelerometer(this); + + // init media player and sound player + backgroundMusicPlayer = new Cocos2dxMusic(this); + soundPlayer = new Cocos2dxSound(this); + + // init bitmap context + Cocos2dxBitmap.setContext(this); + + handler = new Handler(){ + public void handleMessage(Message msg){ + switch(msg.what){ + case HANDLER_SHOW_DIALOG: + showDialog(((DialogMessage)msg.obj).title, ((DialogMessage)msg.obj).message); + break; + } + } + }; + } + + public static String getCurrentLanguage() { + String languageName = java.util.Locale.getDefault().getLanguage(); + return languageName; + } + + public static void showMessageBox(String title, String message){ + Message msg = new Message(); + msg.what = HANDLER_SHOW_DIALOG; + msg.obj = new DialogMessage(title, message); + + handler.sendMessage(msg); + } + + public static void enableAccelerometer() { + accelerometerEnabled = true; + accelerometer.enable(); + } + + public static void disableAccelerometer() { + accelerometerEnabled = false; + accelerometer.disable(); + } + + public static void playBackgroundMusic(String path, boolean isLoop){ + backgroundMusicPlayer.playBackgroundMusic(path, isLoop); + } + + public static void stopBackgroundMusic(){ + backgroundMusicPlayer.stopBackgroundMusic(); + } + + public static void pauseBackgroundMusic(){ + backgroundMusicPlayer.pauseBackgroundMusic(); + } + + public static void resumeBackgroundMusic(){ + backgroundMusicPlayer.resumeBackgroundMusic(); + } + + public static void rewindBackgroundMusic(){ + backgroundMusicPlayer.rewindBackgroundMusic(); + } + + public static boolean isBackgroundMusicPlaying(){ + return backgroundMusicPlayer.isBackgroundMusicPlaying(); + } + + public static float getBackgroundMusicVolume(){ + return backgroundMusicPlayer.getBackgroundVolume(); + } + + public static void setBackgroundMusicVolume(float volume){ + backgroundMusicPlayer.setBackgroundVolume(volume); + } + + public static int playEffect(String path, boolean isLoop){ + return soundPlayer.playEffect(path, isLoop); + } + + public static void stopEffect(int soundId){ + soundPlayer.stopEffect(soundId); + } + + public static float getEffectsVolume(){ + return soundPlayer.getEffectsVolume(); + } + + public static void setEffectsVolume(float volume){ + soundPlayer.setEffectsVolume(volume); + } + + public static void preloadEffect(String path){ + soundPlayer.preloadEffect(path); + } + + public static void unloadEffect(String path){ + soundPlayer.unloadEffect(path); + } + + public static void end(){ + backgroundMusicPlayer.end(); + soundPlayer.end(); + } + + public static String getCocos2dxPackageName(){ + return packageName; + } + + public static void terminateProcess(){ + android.os.Process.killProcess(android.os.Process.myPid()); + } + + @Override + protected void onResume() { + super.onResume(); + if (accelerometerEnabled) { + accelerometer.enable(); + } + + // resume background music + resumeBackgroundMusic(); + } + + @Override + protected void onPause() { + super.onPause(); + if (accelerometerEnabled) { + accelerometer.disable(); + } + + // pause background music + pauseBackgroundMusic(); + } + + protected void setPackageName(String packageName) { + Cocos2dxActivity.packageName = packageName; + + String apkFilePath = ""; + ApplicationInfo appInfo = null; + PackageManager packMgmr = getApplication().getPackageManager(); + try { + appInfo = packMgmr.getApplicationInfo(packageName, 0); + } catch (NameNotFoundException e) { + e.printStackTrace(); + throw new RuntimeException("Unable to locate assets, aborting..."); + } + apkFilePath = appInfo.sourceDir; + Log.w("apk path", apkFilePath); + + // add this link at the renderer class + nativeSetPaths(apkFilePath); + } + + private void showDialog(String title, String message){ + Dialog dialog = new AlertDialog.Builder(this) + .setTitle(title) + .setMessage(message) + .setPositiveButton("Ok", + new DialogInterface.OnClickListener() + { + public void onClick(DialogInterface dialog, int whichButton){ + + } + }).create(); + + dialog.show(); + } +} + +class DialogMessage { + public String title; + public String message; + + public DialogMessage(String title, String message){ + this.message = message; + this.title = title; + } +} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxBitmap.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxBitmap.java new file mode 100644 index 0000000000..6aabcf2d67 --- /dev/null +++ b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxBitmap.java @@ -0,0 +1,354 @@ +package org.cocos2dx.lib; + +import java.nio.ByteBuffer; +import java.nio.ByteOrder; +import java.util.LinkedList; + +import android.content.Context; +import android.graphics.Bitmap; +import android.graphics.Canvas; +import android.graphics.Color; +import android.graphics.Paint; +import android.graphics.Typeface; +import android.graphics.Paint.Align; +import android.graphics.Paint.FontMetricsInt; +import android.util.Log; + +public class Cocos2dxBitmap{ + /* + * The values are the same as cocos2dx/platform/CCImage.h. + * I think three alignments are OK. + */ + private static final int ALIGNCENTER = 0x33; + private static final int ALIGNLEFT = 0x31; + private static final int ALIGNRIGHT = 0x32; + + private static Context context; + + public static void setContext(Context context){ + Cocos2dxBitmap.context = context; + } + + /* + * @width: the width to draw, it can be 0 + * @height: the height to draw, it can be 0 + */ + public static void createTextBitmap(String content, String fontName, + int fontSize, int alignment, int width, int height){ + + content = refactorString(content); + Paint paint = newPaint(fontName, fontSize, alignment); + + TextProperty textProperty = computeTextProperty(content, paint, width, height); + + // Draw text to bitmap + Bitmap bitmap = Bitmap.createBitmap(textProperty.maxWidth, + textProperty.totalHeight, Bitmap.Config.ARGB_8888); + Canvas canvas = new Canvas(bitmap); + + // Draw string + FontMetricsInt fm = paint.getFontMetricsInt(); + int x = 0; + int y = -fm.ascent; + String[] lines = textProperty.lines; + for (String line : lines){ + x = computeX(paint, line, textProperty.maxWidth, alignment); + canvas.drawText(line, x, y, paint); + y += textProperty.heightPerLine; + } + + initNativeObject(bitmap); + } + + private static int computeX(Paint paint, String content, int w, int alignment){ + int ret = 0; + + switch (alignment){ + case ALIGNCENTER: + ret = w / 2; + break; + + // ret = 0 + case ALIGNLEFT: + break; + + case ALIGNRIGHT: + ret = w; + break; + + /* + * Default is align left. + * Should be same as newPaint(). + */ + default: + break; + } + + return ret; + } + + private static class TextProperty{ + // The max width of lines + int maxWidth; + // The height of all lines + int totalHeight; + int heightPerLine; + String[] lines; + + TextProperty(int w, int h, String[] lines){ + this.maxWidth = w; + this.heightPerLine = h; + this.totalHeight = h * lines.length; + this.lines = lines; + } + } + + private static TextProperty computeTextProperty(String content, Paint paint, + int maxWidth, int maxHeight){ + FontMetricsInt fm = paint.getFontMetricsInt(); + int h = (int)Math.ceil(fm.descent - fm.ascent); + int maxContentWidth = 0; + + String[] lines = splitString(content, maxHeight, maxWidth, paint); + + if (maxWidth != 0){ + maxContentWidth = maxWidth; + } + else { + /* + * Compute the max width + */ + int temp = 0; + for (String line : lines){ + temp = (int)Math.ceil(paint.measureText(line, 0, line.length())); + if (temp > maxContentWidth){ + maxContentWidth = temp; + } + } + } + + return new TextProperty(maxContentWidth, h, lines); + } + + /* + * If maxWidth or maxHeight is not 0, + * split the string to fix the maxWidth and maxHeight. + */ + private static String[] splitString(String content, int maxHeight, int maxWidth, + Paint paint){ + String[] lines = content.split("\\n"); + String[] ret = null; + FontMetricsInt fm = paint.getFontMetricsInt(); + int heightPerLine = (int)Math.ceil(fm.descent - fm.ascent); + int maxLines = maxHeight / heightPerLine; + + if (maxWidth != 0){ + LinkedList strList = new LinkedList(); + for (String line : lines){ + /* + * The width of line is exceed maxWidth, should divide it into + * two or more lines. + */ + int lineWidth = (int)Math.ceil(paint.measureText(line)); + if (lineWidth > maxWidth){ + strList.addAll(divideStringWithMaxWidth(paint, line, maxWidth)); + } + else{ + strList.add(line); + } + + /* + * Should not exceed the max height; + */ + if (maxLines > 0 && strList.size() >= maxLines){ + break; + } + } + + /* + * Remove exceeding lines + */ + if (maxLines > 0 && strList.size() > maxLines){ + while (strList.size() > maxLines){ + strList.removeLast(); + } + } + + ret = new String[strList.size()]; + strList.toArray(ret); + } else + if (maxHeight != 0 && lines.length > maxLines) { + /* + * Remove exceeding lines + */ + LinkedList strList = new LinkedList(); + for (int i = 0; i < maxLines; i++){ + strList.add(lines[i]); + } + ret = new String[strList.size()]; + strList.toArray(ret); + } + else { + ret = lines; + } + + return ret; + } + + private static LinkedList divideStringWithMaxWidth(Paint paint, String content, + int width){ + int charLength = content.length(); + int start = 0; + int tempWidth = 0; + LinkedList strList = new LinkedList(); + + /* + * Break a String into String[] by the width & should wrap the word + */ + for (int i = 1; i <= charLength; ++i){ + tempWidth = (int)Math.ceil(paint.measureText(content, start, i)); + if (tempWidth >= width){ + int lastIndexOfSpace = content.substring(0, i).lastIndexOf(" "); + + if (lastIndexOfSpace != -1){ + /** + * Should wrap the word + */ + strList.add(content.substring(start, lastIndexOfSpace)); + i = lastIndexOfSpace; + } + else { + /* + * Should not exceed the width + */ + if (tempWidth > width){ + strList.add(content.substring(start, i - 1)); + /* + * compute from previous char + */ + --i; + } + else { + strList.add(content.substring(start, i)); + } + } + + start = i; + } + } + + /* + * Add the last chars + */ + if (start < charLength){ + strList.add(content.substring(start)); + } + + return strList; + } + + private static Paint newPaint(String fontName, int fontSize, int alignment){ + Paint paint = new Paint(); + paint.setColor(Color.WHITE); + paint.setTextSize(fontSize); + paint.setAntiAlias(true); + + /* + * Set type face for paint, now it support .ttf file. + */ + if (fontName.endsWith(".ttf")){ + try { + Typeface typeFace = Typeface.createFromAsset(context.getAssets(), fontName); + paint.setTypeface(typeFace); + } catch (Exception e){ + Log.e("Cocos2dxBitmap", + "error to create ttf type face: " + fontName); + + /* + * The file may not find, use system font + */ + paint.setTypeface(Typeface.create(fontName, Typeface.NORMAL)); + } + } + else { + paint.setTypeface(Typeface.create(fontName, Typeface.NORMAL)); + } + + switch (alignment){ + case ALIGNCENTER: + paint.setTextAlign(Align.CENTER); + break; + + case ALIGNLEFT: + paint.setTextAlign(Align.LEFT); + break; + + case ALIGNRIGHT: + paint.setTextAlign(Align.RIGHT); + break; + + default: + paint.setTextAlign(Align.LEFT); + break; + } + + return paint; + } + + private static String refactorString(String str){ + // Avoid error when content is "" + if (str.compareTo("") == 0){ + return " "; + } + + /* + * If the font of "\n" is "" or "\n", insert " " in front of it. + * + * For example: + * "\nabc" -> " \nabc" + * "\nabc\n\n" -> " \nabc\n \n" + */ + StringBuilder strBuilder = new StringBuilder(str); + int start = 0; + int index = strBuilder.indexOf("\n"); + while (index != -1){ + if (index == 0 || strBuilder.charAt(index -1) == '\n'){ + strBuilder.insert(start, " "); + start = index + 2; + } else { + start = index + 1; + } + + if (start > strBuilder.length() || index == strBuilder.length()){ + break; + } + + index = strBuilder.indexOf("\n", start); + } + + return strBuilder.toString(); + } + + private static void initNativeObject(Bitmap bitmap){ + byte[] pixels = getPixels(bitmap); + if (pixels == null){ + return; + } + + nativeInitBitmapDC(bitmap.getWidth(), bitmap.getHeight(), pixels); + } + + private static byte[] getPixels(Bitmap bitmap){ + if (bitmap != null){ + byte[] pixels = new byte[bitmap.getWidth() * bitmap.getHeight() * 4]; + ByteBuffer buf = ByteBuffer.wrap(pixels); + buf.order(ByteOrder.nativeOrder()); + bitmap.copyPixelsToBuffer(buf); + return pixels; + } + + return null; + } + + private static native void nativeInitBitmapDC(int width, int height, byte[] pixels); +} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java new file mode 100644 index 0000000000..8af93bc490 --- /dev/null +++ b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java @@ -0,0 +1,384 @@ +package org.cocos2dx.lib; + +import android.content.Context; +import android.opengl.GLSurfaceView; +import android.os.Handler; +import android.os.Message; +import android.text.Editable; +import android.text.TextWatcher; +import android.util.AttributeSet; +import android.util.Log; +import android.view.KeyEvent; +import android.view.MotionEvent; +import android.view.inputmethod.InputMethodManager; +import android.widget.LinearLayout; +import android.widget.TextView; +import android.widget.TextView.OnEditorActionListener; + +class TextInputWraper implements TextWatcher, OnEditorActionListener { + + private static final Boolean debug = false; + private void LogD(String msg) { + if (debug) Log.d("TextInputFilter", msg); + } + + private Cocos2dxGLSurfaceView mMainView; + private String mText; + private String mOriginText; + + private Boolean isFullScreenEdit() { + InputMethodManager imm = (InputMethodManager)mMainView.getTextField().getContext().getSystemService(Context.INPUT_METHOD_SERVICE); + return imm.isFullscreenMode(); + } + + public TextInputWraper(Cocos2dxGLSurfaceView view) { + mMainView = view; + } + + public void setOriginText(String text) { + mOriginText = text; + } + + @Override + public void afterTextChanged(Editable s) { + if (isFullScreenEdit()) { + return; + } + + LogD("afterTextChanged: " + s); + int nModified = s.length() - mText.length(); + if (nModified > 0) { + final String insertText = s.subSequence(mText.length(), s.length()).toString(); + mMainView.insertText(insertText); + LogD("insertText(" + insertText + ")"); + } + else { + for (; nModified < 0; ++nModified) { + mMainView.deleteBackward(); + LogD("deleteBackward"); + } + } + mText = s.toString(); + } + + @Override + public void beforeTextChanged(CharSequence s, int start, int count, + int after) { + LogD("beforeTextChanged(" + s + ")start: " + start + ",count: " + count + ",after: " + after); + mText = s.toString(); + } + + @Override + public void onTextChanged(CharSequence s, int start, int before, int count) { + } + + @Override + public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { + if (mMainView.getTextField() == v && isFullScreenEdit()) { + // user press the action button, delete all old text and insert new text + for (int i = mOriginText.length(); i > 0; --i) { + mMainView.deleteBackward(); + LogD("deleteBackward"); + } + String text = v.getText().toString(); + + /* + * If user input nothing, translate "\n" to engine. + */ + if (text.compareTo("") == 0){ + text = "\n"; + } + + if ('\n' != text.charAt(text.length() - 1)) { + text += '\n'; + } + + final String insertText = text; + mMainView.insertText(insertText); + LogD("insertText(" + insertText + ")"); + } + return false; + } +} + +public class Cocos2dxGLSurfaceView extends GLSurfaceView { + + static private Cocos2dxGLSurfaceView mainView; + + private static final String TAG = Cocos2dxGLSurfaceView.class.getCanonicalName(); + private Cocos2dxRenderer mRenderer; + + private static final boolean debug = false; + + /////////////////////////////////////////////////////////////////////////// + // for initialize + /////////////////////////////////////////////////////////////////////////// + public Cocos2dxGLSurfaceView(Context context) { + super(context); + initView(); + } + + public Cocos2dxGLSurfaceView(Context context, AttributeSet attrs) { + super(context, attrs); + initView(); + } + + protected void initView() { + mRenderer = new Cocos2dxRenderer(); + setFocusableInTouchMode(true); + setRenderer(mRenderer); + + textInputWraper = new TextInputWraper(this); + + handler = new Handler(){ + public void handleMessage(Message msg){ + switch(msg.what){ + case HANDLER_OPEN_IME_KEYBOARD: + if (null != mTextField && mTextField.requestFocus()) { + mTextField.removeTextChangedListener(textInputWraper); + mTextField.setText(""); + String text = (String)msg.obj; + mTextField.append(text); + textInputWraper.setOriginText(text); + mTextField.addTextChangedListener(textInputWraper); + InputMethodManager imm = (InputMethodManager)mainView.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); + imm.showSoftInput(mTextField, 0); + Log.d("GLSurfaceView", "showSoftInput"); + } + break; + + case HANDLER_CLOSE_IME_KEYBOARD: + if (null != mTextField) { + mTextField.removeTextChangedListener(textInputWraper); + InputMethodManager imm = (InputMethodManager)mainView.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); + imm.hideSoftInputFromWindow(mTextField.getWindowToken(), 0); + Log.d("GLSurfaceView", "HideSoftInput"); + } + break; + } + } + }; + + mainView = this; + } + + public void onPause(){ + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleOnPause(); + } + }); + + super.onPause(); + } + + public void onResume(){ + super.onResume(); + + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleOnResume(); + } + }); + } + + /////////////////////////////////////////////////////////////////////////// + // for text input + /////////////////////////////////////////////////////////////////////////// + private final static int HANDLER_OPEN_IME_KEYBOARD = 2; + private final static int HANDLER_CLOSE_IME_KEYBOARD = 3; + private static Handler handler; + private static TextInputWraper textInputWraper; + private TextView mTextField; + + public TextView getTextField() { + return mTextField; + } + + public void setTextField(TextView view) { + mTextField = view; + if (null != mTextField && null != textInputWraper) { + LinearLayout.LayoutParams linearParams = (LinearLayout.LayoutParams) mTextField.getLayoutParams(); + linearParams.height = 0; + mTextField.setLayoutParams(linearParams); + mTextField.setOnEditorActionListener(textInputWraper); + this.requestFocus(); + } + } + + public static void openIMEKeyboard() { + Message msg = new Message(); + msg.what = HANDLER_OPEN_IME_KEYBOARD; + msg.obj = mainView.getContentText(); + handler.sendMessage(msg); + + } + + private String getContentText() { + return mRenderer.getContentText(); + } + + public static void closeIMEKeyboard() { + Message msg = new Message(); + msg.what = HANDLER_CLOSE_IME_KEYBOARD; + handler.sendMessage(msg); + } + + public void insertText(final String text) { + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleInsertText(text); + } + }); + } + + public void deleteBackward() { + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleDeleteBackward(); + } + }); + } + + /////////////////////////////////////////////////////////////////////////// + // for touch event + /////////////////////////////////////////////////////////////////////////// + + public boolean onTouchEvent(final MotionEvent event) { + // these data are used in ACTION_MOVE and ACTION_CANCEL + final int pointerNumber = event.getPointerCount(); + final int[] ids = new int[pointerNumber]; + final float[] xs = new float[pointerNumber]; + final float[] ys = new float[pointerNumber]; + + for (int i = 0; i < pointerNumber; i++) { + ids[i] = event.getPointerId(i); + xs[i] = event.getX(i); + ys[i] = event.getY(i); + } + + switch (event.getAction() & MotionEvent.ACTION_MASK) { + case MotionEvent.ACTION_POINTER_DOWN: + final int idPointerDown = event.getAction() >> MotionEvent.ACTION_POINTER_ID_SHIFT; + final float xPointerDown = event.getX(idPointerDown); + final float yPointerDown = event.getY(idPointerDown); + + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleActionDown(idPointerDown, xPointerDown, yPointerDown); + } + }); + break; + + case MotionEvent.ACTION_DOWN: + // there are only one finger on the screen + final int idDown = event.getPointerId(0); + final float xDown = event.getX(idDown); + final float yDown = event.getY(idDown); + + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleActionDown(idDown, xDown, yDown); + } + }); + break; + + case MotionEvent.ACTION_MOVE: + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleActionMove(ids, xs, ys); + } + }); + break; + + case MotionEvent.ACTION_POINTER_UP: + final int idPointerUp = event.getAction() >> MotionEvent.ACTION_POINTER_ID_SHIFT; + final float xPointerUp = event.getX(idPointerUp); + final float yPointerUp = event.getY(idPointerUp); + + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleActionUp(idPointerUp, xPointerUp, yPointerUp); + } + }); + break; + + case MotionEvent.ACTION_UP: + // there are only one finger on the screen + final int idUp = event.getPointerId(0); + final float xUp = event.getX(idUp); + final float yUp = event.getY(idUp); + + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleActionUp(idUp, xUp, yUp); + } + }); + break; + + case MotionEvent.ACTION_CANCEL: + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleActionCancel(ids, xs, ys); + } + }); + break; + } + + if (debug){ + dumpEvent(event); + } + return true; + } + + @Override + public boolean onKeyDown(int keyCode, KeyEvent event) { + final int kc = keyCode; + if (keyCode == KeyEvent.KEYCODE_BACK || keyCode == KeyEvent.KEYCODE_MENU) { + queueEvent(new Runnable() { + @Override + public void run() { + mRenderer.handleKeyDown(kc); + } + }); + return true; + } + return super.onKeyDown(keyCode, event); + } + // Show an event in the LogCat view, for debugging + private void dumpEvent(MotionEvent event) { + String names[] = { "DOWN" , "UP" , "MOVE" , "CANCEL" , "OUTSIDE" , + "POINTER_DOWN" , "POINTER_UP" , "7?" , "8?" , "9?" }; + StringBuilder sb = new StringBuilder(); + int action = event.getAction(); + int actionCode = action & MotionEvent.ACTION_MASK; + sb.append("event ACTION_" ).append(names[actionCode]); + if (actionCode == MotionEvent.ACTION_POINTER_DOWN + || actionCode == MotionEvent.ACTION_POINTER_UP) { + sb.append("(pid " ).append( + action >> MotionEvent.ACTION_POINTER_ID_SHIFT); + sb.append(")" ); + } + sb.append("[" ); + for (int i = 0; i < event.getPointerCount(); i++) { + sb.append("#" ).append(i); + sb.append("(pid " ).append(event.getPointerId(i)); + sb.append(")=" ).append((int) event.getX(i)); + sb.append("," ).append((int) event.getY(i)); + if (i + 1 < event.getPointerCount()) + sb.append(";" ); + } + sb.append("]" ); + Log.d(TAG, sb.toString()); + } +} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxMusic.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxMusic.java new file mode 100644 index 0000000000..70fb03b254 --- /dev/null +++ b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxMusic.java @@ -0,0 +1,177 @@ +package org.cocos2dx.lib; + +import android.content.Context; +import android.content.res.AssetFileDescriptor; +import android.media.MediaPlayer; +import android.util.Log; + +/** + * + * This class is used for controlling background music + * + */ +public class Cocos2dxMusic { + + private static final String TAG = "Cocos2dxMusic"; + private float mLeftVolume; + private float mRightVolume; + private Context mContext; + private MediaPlayer mBackgroundMediaPlayer; + private boolean mIsPaused; + private String mCurrentPath; + + public Cocos2dxMusic(Context context){ + this.mContext = context; + initData(); + } + + public void playBackgroundMusic(String path, boolean isLoop){ + if (mCurrentPath == null){ + // it is the first time to play background music + // or end() was called + mBackgroundMediaPlayer = createMediaplayerFromAssets(path); + mCurrentPath = path; + } + else { + if (! mCurrentPath.equals(path)){ + // play new background music + + // release old resource and create a new one + if (mBackgroundMediaPlayer != null){ + mBackgroundMediaPlayer.release(); + } + mBackgroundMediaPlayer = createMediaplayerFromAssets(path); + + // record the path + mCurrentPath = path; + } + } + + if (mBackgroundMediaPlayer == null){ + Log.e(TAG, "playBackgroundMusic: background media player is null"); + } else { + // if the music is playing or paused, stop it + mBackgroundMediaPlayer.stop(); + + mBackgroundMediaPlayer.setLooping(isLoop); + + try { + mBackgroundMediaPlayer.prepare(); + mBackgroundMediaPlayer.seekTo(0); + mBackgroundMediaPlayer.start(); + + this.mIsPaused = false; + } catch (Exception e){ + Log.e(TAG, "playBackgroundMusic: error state"); + } + } + } + + public void stopBackgroundMusic(){ + if (mBackgroundMediaPlayer != null){ + mBackgroundMediaPlayer.stop(); + + // should set the state, if not , the following sequence will be error + // play -> pause -> stop -> resume + this.mIsPaused = false; + } + } + + public void pauseBackgroundMusic(){ + if (mBackgroundMediaPlayer != null && mBackgroundMediaPlayer.isPlaying()){ + mBackgroundMediaPlayer.pause(); + this.mIsPaused = true; + } + } + + public void resumeBackgroundMusic(){ + if (mBackgroundMediaPlayer != null && this.mIsPaused){ + mBackgroundMediaPlayer.start(); + this.mIsPaused = false; + } + } + + public void rewindBackgroundMusic(){ + if (mBackgroundMediaPlayer != null){ + mBackgroundMediaPlayer.stop(); + + try { + mBackgroundMediaPlayer.prepare(); + mBackgroundMediaPlayer.seekTo(0); + mBackgroundMediaPlayer.start(); + + this.mIsPaused = false; + } catch (Exception e){ + Log.e(TAG, "rewindBackgroundMusic: error state"); + } + } + } + + public boolean isBackgroundMusicPlaying(){ + boolean ret = false; + + if (mBackgroundMediaPlayer == null){ + ret = false; + } else { + ret = mBackgroundMediaPlayer.isPlaying(); + } + + return ret; + } + + public void end(){ + if (mBackgroundMediaPlayer != null){ + mBackgroundMediaPlayer.release(); + } + + initData(); + } + + public float getBackgroundVolume(){ + if (this.mBackgroundMediaPlayer != null){ + return (this.mLeftVolume + this.mRightVolume) / 2; + } else { + return 0.0f; + } + } + + public void setBackgroundVolume(float volume){ + this.mLeftVolume = this.mRightVolume = volume; + if (this.mBackgroundMediaPlayer != null){ + this.mBackgroundMediaPlayer.setVolume(this.mLeftVolume, this.mRightVolume); + } + } + + private void initData(){ + mLeftVolume =0.5f; + mRightVolume = 0.5f; + mBackgroundMediaPlayer = null; + mIsPaused = false; + mCurrentPath = null; + } + + /** + * create mediaplayer for music + * @param path the path relative to assets + * @return + */ + private MediaPlayer createMediaplayerFromAssets(String path){ + MediaPlayer mediaPlayer = null; + + try{ + AssetFileDescriptor assetFileDescritor = mContext.getAssets().openFd(path); + + mediaPlayer = new MediaPlayer(); + mediaPlayer.setDataSource(assetFileDescritor.getFileDescriptor(), + assetFileDescritor.getStartOffset(), assetFileDescritor.getLength()); + mediaPlayer.prepare(); + + mediaPlayer.setVolume(mLeftVolume, mRightVolume); + }catch (Exception e) { + mediaPlayer = null; + Log.e(TAG, "error: " + e.getMessage(), e); + } + + return mediaPlayer; + } +} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxRenderer.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxRenderer.java new file mode 100644 index 0000000000..95139b4dc6 --- /dev/null +++ b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxRenderer.java @@ -0,0 +1,107 @@ +package org.cocos2dx.lib; + +import javax.microedition.khronos.egl.EGLConfig; +import javax.microedition.khronos.opengles.GL10; + +import android.opengl.GLSurfaceView; + +public class Cocos2dxRenderer implements GLSurfaceView.Renderer { + private final static long NANOSECONDSPERSECOND = 1000000000L; + private final static long NANOSECONDSPERMINISECOND = 1000000; + private static long animationInterval = (long)(1.0 / 60 * NANOSECONDSPERSECOND); + private long last; + + public void onSurfaceCreated(GL10 gl, EGLConfig config) { + nativeInit(Cocos2dxActivity.screenWidth, Cocos2dxActivity.screenHeight); + last = System.nanoTime(); + } + + public void onSurfaceChanged(GL10 gl, int w, int h) { + } + + public void onDrawFrame(GL10 gl) { + + long now = System.nanoTime(); + long interval = now - last; + + // should render a frame when onDrawFrame() is called + // or there is a "ghost" + nativeRender(); + + // fps controlling + if (interval < animationInterval){ + try { + // because we render it before, so we should sleep twice time interval + Thread.sleep((animationInterval - interval) * 2 / NANOSECONDSPERMINISECOND); + } catch (Exception e){} + } + + last = now; + } + + public void handleActionDown(int id, float x, float y) + { + nativeTouchesBegin(id, x, y); + } + + public void handleActionUp(int id, float x, float y) + { + nativeTouchesEnd(id, x, y); + } + + public void handleActionCancel(int[] id, float[] x, float[] y) + { + nativeTouchesCancel(id, x, y); + } + + public void handleActionMove(int[] id, float[] x, float[] y) + { + nativeTouchesMove(id, x, y); + } + + public void handleKeyDown(int keyCode) + { + nativeKeyDown(keyCode); + } + + public void handleOnPause(){ + nativeOnPause(); + } + + public void handleOnResume(){ + nativeOnResume(); + } + + public static void setAnimationInterval(double interval){ + animationInterval = (long)(interval * NANOSECONDSPERSECOND); + } + private static native void nativeTouchesBegin(int id, float x, float y); + private static native void nativeTouchesEnd(int id, float x, float y); + private static native void nativeTouchesMove(int[] id, float[] x, float[] y); + private static native void nativeTouchesCancel(int[] id, float[] x, float[] y); + private static native boolean nativeKeyDown(int keyCode); + private static native void nativeRender(); + private static native void nativeInit(int w, int h); + private static native void nativeOnPause(); + private static native void nativeOnResume(); + + ///////////////////////////////////////////////////////////////////////////////// + // handle input method edit message + ///////////////////////////////////////////////////////////////////////////////// + + public void handleInsertText(final String text) { + nativeInsertText(text); + } + + public void handleDeleteBackward() { + nativeDeleteBackward(); + } + + public String getContentText() { + return nativeGetContentText(); + } + + private static native void nativeInsertText(String text); + private static native void nativeDeleteBackward(); + private static native String nativeGetContentText(); +} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxSound.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxSound.java new file mode 100644 index 0000000000..ed037e44cc --- /dev/null +++ b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxSound.java @@ -0,0 +1,160 @@ +package org.cocos2dx.lib; + +import java.util.HashMap; + +import android.content.Context; +import android.media.AudioManager; +import android.media.SoundPool; +import android.util.Log; + +/** + * + * This class is used for controlling effect + * + */ + +public class Cocos2dxSound { + private Context mContext; + private SoundPool mSoundPool; + private float mLeftVolume; + private float mRightVolume; + + // sound id and stream id map + private HashMap mSoundIdStreamIdMap; + // sound path and sound id map + private HashMap mPathSoundIDMap; + + private static final String TAG = "Cocos2dxSound"; + private static final int MAX_SIMULTANEOUS_STREAMS_DEFAULT = 5; + private static final float SOUND_RATE = 1.0f; + private static final int SOUND_PRIORITY = 1; + private static final int SOUND_QUALITY = 5; + + private final int INVALID_SOUND_ID = -1; + private final int INVALID_STREAM_ID = -1; + + public Cocos2dxSound(Context context){ + this.mContext = context; + initData(); + } + + public int preloadEffect(String path){ + int soundId = INVALID_SOUND_ID; + + // if the sound is preloaded, pass it + if (this.mPathSoundIDMap.get(path) != null){ + soundId = this.mPathSoundIDMap.get(path).intValue(); + } else { + soundId = createSoundIdFromAsset(path); + + if (soundId != INVALID_SOUND_ID){ + // the sound is loaded but has not been played + this.mSoundIdStreamIdMap.put(soundId, INVALID_STREAM_ID); + + // record path and sound id map + this.mPathSoundIDMap.put(path, soundId); + } + } + + + + return soundId; + } + + public void unloadEffect(String path){ + // get sound id and remove from mPathSoundIDMap + Integer soundId = this.mPathSoundIDMap.remove(path); + + if (soundId != null){ + // unload effect + this.mSoundPool.unload(soundId.intValue()); + + // remove record from mSoundIdStreamIdMap + this.mSoundIdStreamIdMap.remove(soundId); + } + } + + public int playEffect(String path, boolean isLoop){ + Integer soundId = this.mPathSoundIDMap.get(path); + + if (soundId != null){ + // the sound is preloaded, stop it first + + this.mSoundPool.stop(soundId); + + // play sound + int streamId = this.mSoundPool.play(soundId.intValue(), this.mLeftVolume, + this.mRightVolume, SOUND_PRIORITY, isLoop ? -1 : 0, SOUND_RATE); + + // record sound id and stream id map + this.mSoundIdStreamIdMap.put(soundId, streamId); + } else { + // the effect is not prepared + soundId = preloadEffect(path); + if (soundId == INVALID_SOUND_ID){ + // can not preload effect + return INVALID_SOUND_ID; + } + + /* + * Someone reports that, it can not play effect for the + * first time. If you are lucky to meet it. There are two + * ways to resolve it. + * 1. Add some delay here. I don't know how long it is, so + * I don't add it here. + * 2. If you use 2.2(API level 8), you can call + * SoundPool.setOnLoadCompleteListener() to play the effect. + * Because the method is supported from 2.2, so I can't use + * it here. + */ + playEffect(path, isLoop); + } + + return soundId.intValue(); + } + + public void stopEffect(int soundId){ + Integer streamId = this.mSoundIdStreamIdMap.get(soundId); + + if (streamId != null && streamId.intValue() != INVALID_STREAM_ID){ + this.mSoundPool.stop(streamId.intValue()); + } + } + + public float getEffectsVolume(){ + return (this.mLeftVolume + this.mRightVolume) / 2; + } + + public void setEffectsVolume(float volume){ + this.mLeftVolume = this.mRightVolume = volume; + } + + public void end(){ + this.mSoundPool.release(); + this.mPathSoundIDMap.clear(); + this.mSoundIdStreamIdMap.clear(); + + initData(); + } + + public int createSoundIdFromAsset(String path){ + int soundId = INVALID_SOUND_ID; + + try { + soundId = mSoundPool.load(mContext.getAssets().openFd(path), 0); + } catch(Exception e){ + Log.e(TAG, "error: " + e.getMessage(), e); + } + + return soundId; + } + + private void initData(){ + this.mSoundIdStreamIdMap = new HashMap(); + mSoundPool = new SoundPool(MAX_SIMULTANEOUS_STREAMS_DEFAULT, AudioManager.STREAM_MUSIC, SOUND_QUALITY); + mPathSoundIDMap = new HashMap(); + + this.mLeftVolume = 0.5f; + this.mRightVolume = 0.5f; + } +} diff --git a/HelloWorld/android/build.properties b/HelloWorld/android/build.properties new file mode 100644 index 0000000000..ee52d86d94 --- /dev/null +++ b/HelloWorld/android/build.properties @@ -0,0 +1,17 @@ +# This file is used to override default values used by the Ant build system. +# +# This file must be checked in Version Control Systems, as it is +# integral to the build system of your project. + +# This file is only used by the Ant script. + +# You can use this to override default values such as +# 'source.dir' for the location of your java source folder and +# 'out.dir' for the location of your output folder. + +# You can also use it define how the release builds are signed by declaring +# the following properties: +# 'key.store' for the location of your keystore and +# 'key.alias' for the name of the key to use. +# The password will be asked during the build when you use the 'release' target. + diff --git a/HelloWorld/android/build.xml b/HelloWorld/android/build.xml new file mode 100644 index 0000000000..768294d19c --- /dev/null +++ b/HelloWorld/android/build.xml @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HelloWorld/android/local.properties b/HelloWorld/android/local.properties new file mode 100644 index 0000000000..ba25bfda91 --- /dev/null +++ b/HelloWorld/android/local.properties @@ -0,0 +1,10 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must *NOT* be checked in Version Control Systems, +# as it contains information specific to your local configuration. + +# location of the SDK. This is only used by Ant +# For customization when using a Version Control System, please read the +# header note. +sdk.dir=/home/laschweinski/android/android-sdk-linux_86 diff --git a/HelloWorld/android/proguard.cfg b/HelloWorld/android/proguard.cfg new file mode 100644 index 0000000000..b1cdf17b5b --- /dev/null +++ b/HelloWorld/android/proguard.cfg @@ -0,0 +1,40 @@ +-optimizationpasses 5 +-dontusemixedcaseclassnames +-dontskipnonpubliclibraryclasses +-dontpreverify +-verbose +-optimizations !code/simplification/arithmetic,!field/*,!class/merging/* + +-keep public class * extends android.app.Activity +-keep public class * extends android.app.Application +-keep public class * extends android.app.Service +-keep public class * extends android.content.BroadcastReceiver +-keep public class * extends android.content.ContentProvider +-keep public class * extends android.app.backup.BackupAgentHelper +-keep public class * extends android.preference.Preference +-keep public class com.android.vending.licensing.ILicensingService + +-keepclasseswithmembernames class * { + native ; +} + +-keepclasseswithmembers class * { + public (android.content.Context, android.util.AttributeSet); +} + +-keepclasseswithmembers class * { + public (android.content.Context, android.util.AttributeSet, int); +} + +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); +} + +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keep class * implements android.os.Parcelable { + public static final android.os.Parcelable$Creator *; +} diff --git a/HelloWorld/android/res/layout/game_demo.xml b/HelloWorld/android/res/layout/game_demo.xml new file mode 100644 index 0000000000..7fd5ed4b76 --- /dev/null +++ b/HelloWorld/android/res/layout/game_demo.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/create-android-project.sh b/create-android-project.sh index 1ed7dd02b9..3c8d427b7c 100755 --- a/create-android-project.sh +++ b/create-android-project.sh @@ -5,8 +5,8 @@ # Don't modify the script until you know what you do. # set environment paramters -NDK_ROOT="/workspace/android-dev/android-ndk-r5" -ANDROID_SDK_ROOT="/workspace/android-dev/android-sdk-mac_86" +NDK_ROOT="/home/laschweinski/android/android-ndk-r5" +ANDROID_SDK_ROOT="/home/laschweinski/android/android-sdk-linux_86" # check if it was called by .bat file if [ $# -eq 5 ];then @@ -56,4 +56,4 @@ check_path create_android_project # invoke template/android/copy_files.sh -sh `pwd`/template/android/copy_files.sh `pwd` $PROJECT_NAME $NDK_ROOT $PACKAGE_PATH \ No newline at end of file +sh `pwd`/template/android/copy_files.sh `pwd` $PROJECT_NAME $NDK_ROOT $PACKAGE_PATH diff --git a/mycreate-android-project.sh b/mycreate-android-project.sh new file mode 100755 index 0000000000..b0f3993896 --- /dev/null +++ b/mycreate-android-project.sh @@ -0,0 +1,60 @@ +#!/bin/sh +# This script should be called by create-android-project.bat +# or should be runned in linux shell. It can not be runned under +# cygwin. +# Don't modify the script until you know what you do. + +# set environment paramters +NDK_ROOT="/home/laschweinski/android/android-ndk-r5" +ANDROID_SDK_ROOT="/home/laschweinski/android/android-sdk-linux_86" +COCOS2DX_ROOT="/home/laschweinski/git/cocos2d-x" + +# check if it was called by .bat file +if [ $# -eq 5 ];then + if [ $5 = "windows" ];then + # called by .bat file + sh $1/template/android/copy_files.sh $1 $2 $3 $4 + exit + fi +fi + + +# the bash file should not be called by cygwin +KERNEL_NAME=`uname -s | grep "CYGWIN*"` +if [ $KERNEL_NAME"hi" != "hi" ]; then + echo "Error!!!" + echo "Don't run in cygwin. You should run corresponding bat." + exit +fi + +# ok, it was run under linux + +# check it was runned in cocos2d-x root +#check_path(){ +# if [ ! -f create-android-project.sh ];then +# echo Error!!! +# echo Please run in cocos2dx root +# exit +# fi +#} + +create_android_project(){ + echo "Input package path. For example: org.cocos2dx.example" + read PACKAGE_PATH + echo "Now cocos2d-x suppurts Android 2.1-update1, 2.2, 2.3 & 3.0" + echo "Other versions have not tested." + $ANDROID_SDK_ROOT/tools/android list targets + echo "input target id:" + read TARGET_ID + echo "input your project name:" + read PROJECT_NAME + PROJECT_DIR=`pwd`/$PROJECT_NAME + + $ANDROID_SDK_ROOT/tools/android create project -n $PROJECT_NAME -t $TARGET_ID -k $PACKAGE_PATH -a $PROJECT_NAME -p $PROJECT_DIR +} + +#check_path +create_android_project + +# invoke template/android/copy_files.sh +sh $COCOS2DX_ROOT/template/android/mycopy_files.sh $COCOS2DX_ROOT $PROJECT_NAME $NDK_ROOT $PACKAGE_PATH diff --git a/template/android/mycopy_files.sh b/template/android/mycopy_files.sh new file mode 100644 index 0000000000..4c1bf7bb08 --- /dev/null +++ b/template/android/mycopy_files.sh @@ -0,0 +1,127 @@ +# check the args +# $1: root of cocos2dx $2: app name $3: ndk root $4:pakcage path + +APP_NAME=$2 +COCOS2DX_ROOT=$1 +APP_DIR=`pwd`/$APP_NAME +HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloCocos2dx +NDK_ROOT=$3 +PACKAGE_PATH=$4 + +# xxx.yyy.zzz -> xxx/yyy/zzz +convert_package_path_to_dir(){ + PACKAGE_PATH_DIR=`echo $1 | sed -e "s/\./\//g"` +} + +# make director andorid and copy all files and directories into it +move_files_into_android(){ + mkdir $APP_DIR/android + + for file in $APP_DIR/* + do + if [ -d $file ]; then + if [ $file != $APP_DIR/android ]; then + mv -f $file $APP_DIR/android + fi + fi + + if [ -f $file ]; then + mv $file $APP_DIR/android + fi + done +} + +#copy linux's +move_files_into_linux(){ + mkdir $APP_DIR/Linux + for file in `ls $HELLOWORLD_ROOT/Linux/* | grep -E '.*\.[cpp|h]' ` + do + if [ -f $file ];then + cp $file $APP_DIR/Linux + fi + done +} + +#copy eclipse configures +move_eclipse_configures_into(){ + for file in `ls -a $HELLOWORLD_ROOT/ | grep -E '\..*project' ` + do + cp $HELLOWORLD_ROOT/$file $APP_DIR/ + done +} + +#copy main sources +copy_cpp_h_from_helloworld(){ + mkdir $APP_DIR/Classes + for file in `ls $HELLOWORLD_ROOT/Classes/* | grep -E '.*\.[cpp|h]' ` + do + if [ -f $file ];then + cp $file $APP_DIR/Classes + fi + done +} + +# copy resources +copy_resouces(){ + mkdir $APP_DIR/Resource + + for file in $HELLOWORLD_ROOT/Resource/* + do + cp $file $APP_DIR/Resource + done +} + +# from HelloWorld copy src and jni to APP_DIR +copy_src_and_jni(){ + cp -rf $HELLOWORLD_ROOT/android/jni $APP_DIR/android + cp -rf $HELLOWORLD_ROOT/android/src $APP_DIR/android + + # repalce Android.mk and Application.mk + cat $COCOS2DX_ROOT/template/android/AndroidTemplate1.mk > $APP_DIR/android/jni/helloworld/Android.mk + cat $COCOS2DX_ROOT/template/android/Application.mk > $APP_DIR/android/jni/Application.mk +} + +# copy build_native.sh and replace something +copy_build_native(){ + # here should use # instead of /, why?? + sed "s#__cocos2dxroot__#$COCOS2DX_ROOT#;s#__ndkroot__#$NDK_ROOT#;s#__projectname__#$APP_NAME#" $COCOS2DX_ROOT/template/android/build_native.sh > $APP_DIR/android/build_native.sh + chmod u+x $APP_DIR/android/build_native.sh +} + +# replace AndroidManifext.xml and change the activity name +# use sed to replace the specified line +modify_androidmanifest(){ + sed "s/ApplicationDemo/$APP_NAME/;s/org\.cocos2dx\.application/$PACKAGE_PATH/" $HELLOWORLD_ROOT/android/AndroidManifest.xml > $APP_DIR/android/AndroidManifest.xml +} + +# modify ApplicationDemo.java +modify_applicationdemo(){ + convert_package_path_to_dir $PACKAGE_PATH + + # rename APP_DIR/android/src/org/cocos2dx/application/ApplicationDemo.java to + # APP_DIR/android/src/org/cocos2dx/application/$APP_NAME.java, change helloworld to game + sed "s/ApplicationDemo/$APP_NAME/;s/helloworld/game/;s/org\.cocos2dx\.application/$PACKAGE_PATH/" $APP_DIR/android/src/org/cocos2dx/application/ApplicationDemo.java > $APP_DIR/android/src/$PACKAGE_PATH_DIR/tempfile.java + rm -fr $APP_DIR/android/src/org/cocos2dx/application + mv $APP_DIR/android/src/$PACKAGE_PATH_DIR/tempfile.java $APP_DIR/android/src/$PACKAGE_PATH_DIR/$APP_NAME.java + + +} + +modify_layout(){ + cp $HELLOWORLD_ROOT/android/res/layout/helloworld_demo.xml $APP_DIR/android/res/layout + sed "s/helloworld_gl_surfaceview/game_gl_surfaceview/" $APP_DIR/android/res/layout/helloworld_demo.xml > $APP_DIR/android/res/layout/game_demo.xml + rm -f $APP_DIR/android/res/layout/main.xml + rm -f $APP_DIR/android/res/layout/helloworld_demo.xml +} + + +move_files_into_android +move_files_into_linux +move_eclipse_configures_into +copy_cpp_h_from_helloworld +copy_resouces +copy_src_and_jni +copy_build_native +modify_androidmanifest +modify_applicationdemo +modify_layout diff --git a/tests/test.linux/Res/Images/PlanetCute-1024x1024.png.REMOVED.git-id b/tests/test.linux/Res/Images/PlanetCute-1024x1024.png.REMOVED.git-id new file mode 100644 index 0000000000..840b1569f8 --- /dev/null +++ b/tests/test.linux/Res/Images/PlanetCute-1024x1024.png.REMOVED.git-id @@ -0,0 +1 @@ +c839baf9990fed7ddcaca66167188203ceaf9370 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/atlastest.png.REMOVED.git-id b/tests/test.linux/Res/Images/atlastest.png.REMOVED.git-id new file mode 100644 index 0000000000..835f70a6c7 --- /dev/null +++ b/tests/test.linux/Res/Images/atlastest.png.REMOVED.git-id @@ -0,0 +1 @@ +2aaf84affb08908ea5aa5fd7ce5de973b88109bc \ No newline at end of file diff --git a/tests/test.linux/Res/Images/background1-hd.png.REMOVED.git-id b/tests/test.linux/Res/Images/background1-hd.png.REMOVED.git-id new file mode 100644 index 0000000000..0666bb0757 --- /dev/null +++ b/tests/test.linux/Res/Images/background1-hd.png.REMOVED.git-id @@ -0,0 +1 @@ +79a3a895ba8a3568400db39e819a15d110045d6c \ No newline at end of file diff --git a/tests/test.linux/Res/Images/background1.png.REMOVED.git-id b/tests/test.linux/Res/Images/background1.png.REMOVED.git-id new file mode 100644 index 0000000000..d09b5d1a5e --- /dev/null +++ b/tests/test.linux/Res/Images/background1.png.REMOVED.git-id @@ -0,0 +1 @@ +abd4b23cdfdb825428fdd2a1c7381671ce83bbed \ No newline at end of file diff --git a/tests/test.linux/Res/Images/background2-hd.png.REMOVED.git-id b/tests/test.linux/Res/Images/background2-hd.png.REMOVED.git-id new file mode 100644 index 0000000000..1ef2da98a2 --- /dev/null +++ b/tests/test.linux/Res/Images/background2-hd.png.REMOVED.git-id @@ -0,0 +1 @@ +33b72a10558b874067b03ec1fd2a38a53b31d044 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/background2.png.REMOVED.git-id b/tests/test.linux/Res/Images/background2.png.REMOVED.git-id new file mode 100644 index 0000000000..dcbc6e2095 --- /dev/null +++ b/tests/test.linux/Res/Images/background2.png.REMOVED.git-id @@ -0,0 +1 @@ +b56dda22b7fe9d89ae31e8dbec799917405ed5e2 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/bugs/bug886.png.REMOVED.git-id b/tests/test.linux/Res/Images/bugs/bug886.png.REMOVED.git-id new file mode 100644 index 0000000000..936cf762a1 --- /dev/null +++ b/tests/test.linux/Res/Images/bugs/bug886.png.REMOVED.git-id @@ -0,0 +1 @@ +6b9dcb4915a36e3aefef3f153949a96b145fba0d \ No newline at end of file diff --git a/tests/test.linux/Res/Images/grossini_dance_atlas-mono.png.REMOVED.git-id b/tests/test.linux/Res/Images/grossini_dance_atlas-mono.png.REMOVED.git-id new file mode 100644 index 0000000000..9e2d81b2cf --- /dev/null +++ b/tests/test.linux/Res/Images/grossini_dance_atlas-mono.png.REMOVED.git-id @@ -0,0 +1 @@ +0a08f47624fb92eef7de9fed051d92a25e3c6ff8 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/landscape-1024x1024.png.REMOVED.git-id b/tests/test.linux/Res/Images/landscape-1024x1024.png.REMOVED.git-id new file mode 100644 index 0000000000..bed5c69dcd --- /dev/null +++ b/tests/test.linux/Res/Images/landscape-1024x1024.png.REMOVED.git-id @@ -0,0 +1 @@ +365a14b28310b73a048597cc8d87609975705172 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/spritesheet1.png.REMOVED.git-id b/tests/test.linux/Res/Images/spritesheet1.png.REMOVED.git-id new file mode 100644 index 0000000000..b828d6a4fb --- /dev/null +++ b/tests/test.linux/Res/Images/spritesheet1.png.REMOVED.git-id @@ -0,0 +1 @@ +9246a8bc975c764e4aa71f54a50d5f4e4bce7a18 \ No newline at end of file diff --git a/tests/test.linux/Res/TileMaps/hexa-tiles.png.REMOVED.git-id b/tests/test.linux/Res/TileMaps/hexa-tiles.png.REMOVED.git-id new file mode 100644 index 0000000000..12596d37ed --- /dev/null +++ b/tests/test.linux/Res/TileMaps/hexa-tiles.png.REMOVED.git-id @@ -0,0 +1 @@ +6869c5352bc6510dba54803f5f4459b0a6a3fcf2 \ No newline at end of file diff --git a/tests/test.linux/Res/TileMaps/ortho-test1.png.REMOVED.git-id b/tests/test.linux/Res/TileMaps/ortho-test1.png.REMOVED.git-id new file mode 100644 index 0000000000..303efad475 --- /dev/null +++ b/tests/test.linux/Res/TileMaps/ortho-test1.png.REMOVED.git-id @@ -0,0 +1 @@ +d13ddb0931c1772127b38010990140adce837bc8 \ No newline at end of file diff --git a/tests/test.linux/Res/animations/grossini.plist.xml b/tests/test.linux/Res/animations/grossini.plist.xml new file mode 100644 index 0000000000..2c894b6f3a --- /dev/null +++ b/tests/test.linux/Res/animations/grossini.plist.xml @@ -0,0 +1,282 @@ + + + + + texture + + width + 512 + height + 256 + + frames + + grossini_dance_01.png + + x + 347 + y + 1 + width + 51 + height + 109 + offsetX + 0 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_02.png + + x + 215 + y + 111 + width + 63 + height + 109 + offsetX + -6 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_03.png + + x + 151 + y + 111 + width + 63 + height + 109 + offsetX + -6 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_04.png + + x + 1 + y + 111 + width + 74 + height + 109 + offsetX + -0.5 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_05.png + + x + 76 + y + 111 + width + 74 + height + 109 + offsetX + -0.5 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_06.png + + x + 399 + y + 1 + width + 63 + height + 109 + offsetX + -6 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_07.png + + x + 105 + y + 1 + width + 63 + height + 109 + offsetX + -6 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_08.png + + x + 1 + y + 1 + width + 51 + height + 109 + offsetX + 0 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_09.png + + x + 295 + y + 1 + width + 51 + height + 109 + offsetX + 0 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_10.png + + x + 232 + y + 1 + width + 62 + height + 109 + offsetX + 5.5 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_11.png + + x + 169 + y + 1 + width + 62 + height + 109 + offsetX + 5.5 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_12.png + + x + 279 + y + 111 + width + 51 + height + 106 + offsetX + 0 + offsetY + -2.5 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_13.png + + x + 53 + y + 1 + width + 51 + height + 109 + offsetX + 0 + offsetY + -1 + originalWidth + 85 + originalHeight + -121 + + grossini_dance_14.png + + x + 331 + y + 111 + width + 51 + height + 106 + offsetX + 0 + offsetY + -2.5 + originalWidth + 85 + originalHeight + -121 + + + + diff --git a/tests/test.linux/Res/app.config.txt b/tests/test.linux/Res/app.config.txt new file mode 100644 index 0000000000..104530ed60 --- /dev/null +++ b/tests/test.linux/Res/app.config.txt @@ -0,0 +1,5 @@ +[Trace] +GAME <0 or 1> Game Channel + +[Assert] +GAME <0 or 1> Game Assert Channel \ No newline at end of file diff --git a/tests/test.linux/Res/background.mp3.REMOVED.git-id b/tests/test.linux/Res/background.mp3.REMOVED.git-id new file mode 100644 index 0000000000..cfc16a8a4e --- /dev/null +++ b/tests/test.linux/Res/background.mp3.REMOVED.git-id @@ -0,0 +1 @@ +aec1c0a8c8068377fddca5ddd32084d8c3c3c419 \ No newline at end of file diff --git a/tests/test.linux/Res/fonts/bitmapFontTest.png.REMOVED.git-id b/tests/test.linux/Res/fonts/bitmapFontTest.png.REMOVED.git-id new file mode 100644 index 0000000000..726316927e --- /dev/null +++ b/tests/test.linux/Res/fonts/bitmapFontTest.png.REMOVED.git-id @@ -0,0 +1 @@ +112328fdb03b8966c8cb7b62a5fc51ce0d4570b1 \ No newline at end of file diff --git a/tests/test.linux/Res/fonts/bitmapFontTest2.png.REMOVED.git-id b/tests/test.linux/Res/fonts/bitmapFontTest2.png.REMOVED.git-id new file mode 100644 index 0000000000..d025022480 --- /dev/null +++ b/tests/test.linux/Res/fonts/bitmapFontTest2.png.REMOVED.git-id @@ -0,0 +1 @@ +9975e4961272d5bda6d5f3bbd61ea0fc02222199 \ No newline at end of file diff --git a/tests/test.linux/Res/fonts/futura-48.png.REMOVED.git-id b/tests/test.linux/Res/fonts/futura-48.png.REMOVED.git-id new file mode 100644 index 0000000000..451874e3f2 --- /dev/null +++ b/tests/test.linux/Res/fonts/futura-48.png.REMOVED.git-id @@ -0,0 +1 @@ +6a89fbfbe3c98e2d72c84e4d76873375eca87802 \ No newline at end of file diff --git a/tests/test.linux/Res/fonts/tuffy_bold_italic-charmap-hd.png.REMOVED.git-id b/tests/test.linux/Res/fonts/tuffy_bold_italic-charmap-hd.png.REMOVED.git-id new file mode 100644 index 0000000000..5696ae5bfc --- /dev/null +++ b/tests/test.linux/Res/fonts/tuffy_bold_italic-charmap-hd.png.REMOVED.git-id @@ -0,0 +1 @@ +8167faf6c40ffd95a03028f1dcee1abdaa48b222 \ No newline at end of file From 8f4d47900bf9047f35e7b7866b82c97bb83ac775 Mon Sep 17 00:00:00 2001 From: laschweinski Date: Sun, 21 Aug 2011 19:03:46 +0800 Subject: [PATCH 09/31] new file: cocos2dx/.cproject new file: cocos2dx/.project --- cocos2dx/.cproject | 401 +++++++++++++++++++++++++++++++++++++++++++++ cocos2dx/.project | 83 ++++++++++ 2 files changed, 484 insertions(+) create mode 100644 cocos2dx/.cproject create mode 100644 cocos2dx/.project diff --git a/cocos2dx/.cproject b/cocos2dx/.cproject new file mode 100644 index 0000000000..a6752ba459 --- /dev/null +++ b/cocos2dx/.cproject @@ -0,0 +1,401 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2dx/.project b/cocos2dx/.project new file mode 100644 index 0000000000..6a4ab0d741 --- /dev/null +++ b/cocos2dx/.project @@ -0,0 +1,83 @@ + + + cocos2dx-base + + + + + + org.eclipse.cdt.managedbuilder.core.genmakebuilder + clean,full,incremental, + + + ?name? + + + + org.eclipse.cdt.make.core.append_environment + true + + + org.eclipse.cdt.make.core.autoBuildTarget + all + + + org.eclipse.cdt.make.core.buildArguments + + + + org.eclipse.cdt.make.core.buildCommand + make + + + org.eclipse.cdt.make.core.buildLocation + ${workspace_loc:/cocos2dx-base/Debug} + + + org.eclipse.cdt.make.core.cleanBuildTarget + clean + + + org.eclipse.cdt.make.core.contents + org.eclipse.cdt.make.core.activeConfigSettings + + + org.eclipse.cdt.make.core.enableAutoBuild + false + + + org.eclipse.cdt.make.core.enableCleanBuild + true + + + org.eclipse.cdt.make.core.enableFullBuild + true + + + org.eclipse.cdt.make.core.fullBuildTarget + all + + + org.eclipse.cdt.make.core.stopOnError + true + + + org.eclipse.cdt.make.core.useDefaultBuildCmd + true + + + + + org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder + full,incremental, + + + + + + org.eclipse.cdt.core.cnature + org.eclipse.cdt.core.ccnature + org.eclipse.cdt.managedbuilder.core.managedBuildNature + org.eclipse.cdt.managedbuilder.core.ScannerConfigNature + + From d57d9ca6f69a960a9777503633ba20fa2dc02b65 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 23 Aug 2011 11:28:04 +0800 Subject: [PATCH 10/31] modified: cocos2dx/.cproject modified: cocos2dx/CCConfiguration.cpp modified: cocos2dx/CCConfiguration.h modified: cocos2dx/actions/CCActionGrid3D.cpp modified: cocos2dx/platform/Linux/CCAplication_linux.cpp modified: cocos2dx/platform/Linux/CCAplication_linux.h modified: cocos2dx/platform/Linux/CCImage_Linux.cpp modified: mycreate-android-project.sh new file: post.sh modified: template/android/mycopy_files.sh modified: tests/AppDelegate.cpp new file: tests/test.linux/Res deleted: tests/test.linux/Res/Hello.png deleted: tests/test.linux/Res/Images/BoilingFoam.plist deleted: tests/test.linux/Res/Images/BurstPipe.plist deleted: tests/test.linux/Res/Images/Comet.plist deleted: tests/test.linux/Res/Images/Comet.png deleted: tests/test.linux/Res/Images/ExplodingRing.plist deleted: tests/test.linux/Res/Images/Flower.plist deleted: tests/test.linux/Res/Images/Fog.png deleted: tests/test.linux/Res/Images/Galaxy.plist deleted: tests/test.linux/Res/Images/HelloWorld.png deleted: tests/test.linux/Res/Images/Icon.png deleted: tests/test.linux/Res/Images/LavaFlow.plist deleted: tests/test.linux/Res/Images/Pea.png deleted: tests/test.linux/Res/Images/Phoenix.plist deleted: tests/test.linux/Res/Images/PlanetCute-1024x1024.png deleted: tests/test.linux/Res/Images/SendScoreButton.png deleted: tests/test.linux/Res/Images/SendScoreButtonPressed.png deleted: tests/test.linux/Res/Images/SpinningPeas.plist deleted: tests/test.linux/Res/Images/SpinningPeas.png deleted: tests/test.linux/Res/Images/Spiral.plist deleted: tests/test.linux/Res/Images/SpookyPeas.plist deleted: tests/test.linux/Res/Images/SpookyPeas.png deleted: tests/test.linux/Res/Images/Upsidedown.plist deleted: tests/test.linux/Res/Images/atlastest.png deleted: tests/test.linux/Res/Images/b1-hd.png deleted: tests/test.linux/Res/Images/b1.png deleted: tests/test.linux/Res/Images/b2-hd.png deleted: tests/test.linux/Res/Images/b2.png deleted: tests/test.linux/Res/Images/background.png deleted: tests/test.linux/Res/Images/background1-hd.png deleted: tests/test.linux/Res/Images/background1.png deleted: tests/test.linux/Res/Images/background2-hd.png deleted: tests/test.linux/Res/Images/background2.png deleted: tests/test.linux/Res/Images/background3-hd.png deleted: tests/test.linux/Res/Images/background3.png deleted: tests/test.linux/Res/Images/ball-hd.png deleted: tests/test.linux/Res/Images/ball.png deleted: tests/test.linux/Res/Images/bitmapFontTest3.fnt deleted: tests/test.linux/Res/Images/bitmapFontTest3.png deleted: tests/test.linux/Res/Images/blocks-hd.png deleted: tests/test.linux/Res/Images/blocks.png deleted: tests/test.linux/Res/Images/btn-about-normal.png deleted: tests/test.linux/Res/Images/btn-about-selected.png deleted: tests/test.linux/Res/Images/btn-highscores-normal.png deleted: tests/test.linux/Res/Images/btn-highscores-selected.png deleted: tests/test.linux/Res/Images/btn-play-normal.png deleted: tests/test.linux/Res/Images/btn-play-selected.png deleted: tests/test.linux/Res/Images/bugs/RetinaDisplay.jpg deleted: tests/test.linux/Res/Images/bugs/bug886.jpg deleted: tests/test.linux/Res/Images/bugs/bug886.png deleted: tests/test.linux/Res/Images/bugs/circle-hd.plist deleted: tests/test.linux/Res/Images/bugs/circle-hd.png deleted: tests/test.linux/Res/Images/bugs/circle.plist deleted: tests/test.linux/Res/Images/bugs/circle.png deleted: tests/test.linux/Res/Images/bugs/corner.png deleted: tests/test.linux/Res/Images/bugs/edge.png deleted: tests/test.linux/Res/Images/bugs/fill.png deleted: tests/test.linux/Res/Images/bugs/picture-hd.png deleted: tests/test.linux/Res/Images/bugs/picture.png deleted: tests/test.linux/Res/Images/close-hd.png deleted: tests/test.linux/Res/Images/close.png deleted: tests/test.linux/Res/Images/debian.plist deleted: tests/test.linux/Res/Images/f1-hd.png deleted: tests/test.linux/Res/Images/f1.png deleted: tests/test.linux/Res/Images/f2-hd.png deleted: tests/test.linux/Res/Images/f2.png deleted: tests/test.linux/Res/Images/fire-grayscale.png deleted: tests/test.linux/Res/Images/fire.png deleted: tests/test.linux/Res/Images/fps_images.png deleted: tests/test.linux/Res/Images/grossini-hd.png deleted: tests/test.linux/Res/Images/grossini.png deleted: tests/test.linux/Res/Images/grossini_128x256_mipmap.pvr deleted: tests/test.linux/Res/Images/grossini_dance_01.png deleted: tests/test.linux/Res/Images/grossini_dance_02.png deleted: tests/test.linux/Res/Images/grossini_dance_03.png deleted: tests/test.linux/Res/Images/grossini_dance_04.png deleted: tests/test.linux/Res/Images/grossini_dance_05.png deleted: tests/test.linux/Res/Images/grossini_dance_06.png deleted: tests/test.linux/Res/Images/grossini_dance_07.png deleted: tests/test.linux/Res/Images/grossini_dance_08.png deleted: tests/test.linux/Res/Images/grossini_dance_09.png deleted: tests/test.linux/Res/Images/grossini_dance_10.png deleted: tests/test.linux/Res/Images/grossini_dance_11.png deleted: tests/test.linux/Res/Images/grossini_dance_12.png deleted: tests/test.linux/Res/Images/grossini_dance_13.png deleted: tests/test.linux/Res/Images/grossini_dance_14.png deleted: tests/test.linux/Res/Images/grossini_dance_atlas-hd.png deleted: tests/test.linux/Res/Images/grossini_dance_atlas-mono.png deleted: tests/test.linux/Res/Images/grossini_dance_atlas.png deleted: tests/test.linux/Res/Images/grossini_dance_atlas_nomipmap.png deleted: tests/test.linux/Res/Images/grossini_pvr_rgba4444.pvr deleted: tests/test.linux/Res/Images/grossini_pvr_rgba8888.pvr deleted: tests/test.linux/Res/Images/grossinis_sister1-hd.png deleted: tests/test.linux/Res/Images/grossinis_sister1-testalpha.png deleted: tests/test.linux/Res/Images/grossinis_sister1-testalpha.ppng deleted: tests/test.linux/Res/Images/grossinis_sister1.png deleted: tests/test.linux/Res/Images/grossinis_sister2-hd.png deleted: tests/test.linux/Res/Images/grossinis_sister2.png deleted: tests/test.linux/Res/Images/landscape-1024x1024.png deleted: tests/test.linux/Res/Images/logo-mipmap.pvr deleted: tests/test.linux/Res/Images/logo-nomipmap.pvr deleted: tests/test.linux/Res/Images/menuitemsprite.png deleted: tests/test.linux/Res/Images/paddle-hd.png deleted: tests/test.linux/Res/Images/paddle.png deleted: tests/test.linux/Res/Images/particles-hd.png deleted: tests/test.linux/Res/Images/particles.png deleted: tests/test.linux/Res/Images/pattern1.png deleted: tests/test.linux/Res/Images/piece.png deleted: tests/test.linux/Res/Images/powered.png deleted: tests/test.linux/Res/Images/r1-hd.png deleted: tests/test.linux/Res/Images/r1.png deleted: tests/test.linux/Res/Images/r2-hd.png deleted: tests/test.linux/Res/Images/r2.png deleted: tests/test.linux/Res/Images/snow.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-0-0.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-0-1.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-0-2.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-0-3.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-0-4.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-0-5.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-0-6.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-0-7.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-1-0.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-1-1.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-1-2.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-1-3.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-1-4.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-1-5.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-1-6.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-1-7.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-2-0.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-2-1.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-2-2.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-2-3.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-2-4.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-2-5.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-2-6.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-2-7.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-3-0.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-3-1.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-3-2.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-3-3.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-3-4.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-3-5.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-3-6.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-3-7.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-4-0.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-4-1.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-4-2.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-4-3.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-4-4.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-4-5.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-4-6.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-4-7.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-5-0.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-5-1.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-5-2.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-5-3.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-5-4.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-5-5.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-5-6.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-5-7.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-6-0.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-6-1.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-6-2.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-6-3.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-6-4.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-6-5.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-6-6.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-6-7.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-7-0.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-7-1.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-7-2.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-7-3.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-7-4.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-7-5.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-7-6.png deleted: tests/test.linux/Res/Images/sprites_test/sprite-7-7.png deleted: tests/test.linux/Res/Images/spritesheet1.png deleted: tests/test.linux/Res/Images/stars-grayscale.png deleted: tests/test.linux/Res/Images/stars.png deleted: tests/test.linux/Res/Images/stars2-grayscale.png deleted: tests/test.linux/Res/Images/stars2.png deleted: tests/test.linux/Res/Images/streak.png deleted: tests/test.linux/Res/Images/test-rgba1.png deleted: tests/test.linux/Res/Images/test_blend.png deleted: tests/test.linux/Res/Images/test_image-bad_encoding.pvr deleted: tests/test.linux/Res/Images/test_image.jpeg deleted: tests/test.linux/Res/Images/test_image.png deleted: tests/test.linux/Res/Images/test_image.pvr deleted: tests/test.linux/Res/Images/test_image.pvrraw deleted: tests/test.linux/Res/Images/test_image_a8.pvr deleted: tests/test.linux/Res/Images/test_image_ai88.pvr deleted: tests/test.linux/Res/Images/test_image_bgra8888.pvr deleted: tests/test.linux/Res/Images/test_image_i8.pvr deleted: tests/test.linux/Res/Images/test_image_pvrtc2bpp.pvr deleted: tests/test.linux/Res/Images/test_image_pvrtc4bpp.pvr deleted: tests/test.linux/Res/Images/test_image_rgb565.pvr deleted: tests/test.linux/Res/Images/test_image_rgba4444.pvr deleted: tests/test.linux/Res/Images/test_image_rgba4444.pvr.ccz deleted: tests/test.linux/Res/Images/test_image_rgba4444.pvr.gz deleted: tests/test.linux/Res/Images/test_image_rgba4444_mipmap.pvr deleted: tests/test.linux/Res/Images/test_image_rgba5551.pvr deleted: tests/test.linux/Res/Images/test_image_rgba8888.pvr deleted: tests/test.linux/Res/Images/texture1024x1024.png deleted: tests/test.linux/Res/Images/texture2048x2048.png deleted: tests/test.linux/Res/Images/texture512x512.png deleted: tests/test.linux/Res/TileMaps/fixed-ortho-test2.png deleted: tests/test.linux/Res/TileMaps/hexa-test.tmx deleted: tests/test.linux/Res/TileMaps/hexa-tiles.png deleted: tests/test.linux/Res/TileMaps/iso-test-bug787.tmx deleted: tests/test.linux/Res/TileMaps/iso-test-movelayer.tmx deleted: tests/test.linux/Res/TileMaps/iso-test-objectgroup.tmx deleted: tests/test.linux/Res/TileMaps/iso-test-vertexz.tmx deleted: tests/test.linux/Res/TileMaps/iso-test-zorder.tmx deleted: tests/test.linux/Res/TileMaps/iso-test.png deleted: tests/test.linux/Res/TileMaps/iso-test.tmx deleted: tests/test.linux/Res/TileMaps/iso-test1.tmx deleted: tests/test.linux/Res/TileMaps/iso-test2-uncompressed.tmx deleted: tests/test.linux/Res/TileMaps/iso-test2.png deleted: tests/test.linux/Res/TileMaps/iso-test2.tmx deleted: tests/test.linux/Res/TileMaps/iso.png deleted: tests/test.linux/Res/TileMaps/levelmap.tga deleted: tests/test.linux/Res/TileMaps/ortho-objects.tmx deleted: tests/test.linux/Res/TileMaps/ortho-test1.png deleted: tests/test.linux/Res/TileMaps/ortho-test1_bw.png deleted: tests/test.linux/Res/TileMaps/ortho-test2.png deleted: tests/test.linux/Res/TileMaps/orthogonal-test-movelayer.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test-vertexz.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test-zorder.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test1.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test1.tsx deleted: tests/test.linux/Res/TileMaps/orthogonal-test2.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test3.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test4-hd.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test4.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test5.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test6-hd.tmx deleted: tests/test.linux/Res/TileMaps/orthogonal-test6.tmx deleted: tests/test.linux/Res/TileMaps/test-object-layer.tmx deleted: tests/test.linux/Res/TileMaps/tiles-hd.png deleted: tests/test.linux/Res/TileMaps/tiles.png deleted: tests/test.linux/Res/TileMaps/tmw_desert_spacing-hd.png deleted: tests/test.linux/Res/TileMaps/tmw_desert_spacing.png deleted: tests/test.linux/Res/animations/dragon_animation-hd.png deleted: tests/test.linux/Res/animations/dragon_animation.png deleted: tests/test.linux/Res/animations/ghosts.plist deleted: tests/test.linux/Res/animations/ghosts.png deleted: tests/test.linux/Res/animations/grossini-aliases.plist deleted: tests/test.linux/Res/animations/grossini-aliases.png deleted: tests/test.linux/Res/animations/grossini.plist deleted: tests/test.linux/Res/animations/grossini.plist.xml deleted: tests/test.linux/Res/animations/grossini.png deleted: tests/test.linux/Res/animations/grossini.ztp deleted: tests/test.linux/Res/animations/grossini_blue.plist deleted: tests/test.linux/Res/animations/grossini_blue.png deleted: tests/test.linux/Res/animations/grossini_family.plist deleted: tests/test.linux/Res/animations/grossini_family.png deleted: tests/test.linux/Res/animations/grossini_gray.plist deleted: tests/test.linux/Res/animations/grossini_gray.png deleted: tests/test.linux/Res/app.config.txt deleted: tests/test.linux/Res/background.mp3 deleted: tests/test.linux/Res/effect1.wav deleted: tests/test.linux/Res/effect2.ogg deleted: tests/test.linux/Res/fonts/A Damn Mess.ttf deleted: tests/test.linux/Res/fonts/Abberancy.ttf deleted: tests/test.linux/Res/fonts/Abduction.ttf deleted: tests/test.linux/Res/fonts/Paint Boy.ttf deleted: tests/test.linux/Res/fonts/Schwarzwald Regular.ttf deleted: tests/test.linux/Res/fonts/Scissor Cuts.ttf deleted: tests/test.linux/Res/fonts/arial16.fnt deleted: tests/test.linux/Res/fonts/arial16.png deleted: tests/test.linux/Res/fonts/bitmapFontTest.fnt deleted: tests/test.linux/Res/fonts/bitmapFontTest.png deleted: tests/test.linux/Res/fonts/bitmapFontTest2.fnt deleted: tests/test.linux/Res/fonts/bitmapFontTest2.png deleted: tests/test.linux/Res/fonts/bitmapFontTest3.fnt deleted: tests/test.linux/Res/fonts/bitmapFontTest3.png deleted: tests/test.linux/Res/fonts/bitmapFontTest4.fnt deleted: tests/test.linux/Res/fonts/bitmapFontTest4.png deleted: tests/test.linux/Res/fonts/bitmapFontTest5.fnt deleted: tests/test.linux/Res/fonts/bitmapFontTest5.png deleted: tests/test.linux/Res/fonts/fps_images-hd.png deleted: tests/test.linux/Res/fonts/fps_images.png deleted: tests/test.linux/Res/fonts/futura-48.fnt deleted: tests/test.linux/Res/fonts/futura-48.png deleted: tests/test.linux/Res/fonts/konqa32-hd.fnt deleted: tests/test.linux/Res/fonts/konqa32-hd.png deleted: tests/test.linux/Res/fonts/konqa32.fnt deleted: tests/test.linux/Res/fonts/konqa32.png deleted: tests/test.linux/Res/fonts/larabie-16-hd.png deleted: tests/test.linux/Res/fonts/larabie-16.png deleted: tests/test.linux/Res/fonts/tuffy_bold_italic-charmap-hd.png deleted: tests/test.linux/Res/fonts/tuffy_bold_italic-charmap.png deleted: tests/test.linux/Res/music.mid deleted: tests/test.linux/Res/zwoptex/grossini-generic.plist deleted: tests/test.linux/Res/zwoptex/grossini-generic.png deleted: tests/test.linux/Res/zwoptex/grossini.plist deleted: tests/test.linux/Res/zwoptex/grossini.png CocosDenshion/AndroidDebug/ CocosDenshion/AndroidRelease/ HelloCocos2dx/AndroidDebug/2 HelloCocos2dx/android/assets HelloCocos2dx/postCompiled.sh installLinuxLib.sh --- Box2D/Box2DConfig.cmake | 3 + .../CMakeDetermineCompilerABI_C.bin | Bin 0 -> 7173 bytes .../CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 7307 bytes .../CMakeFiles/CompilerIdC/CMakeCCompilerId.c | 217 +++ Box2D/CMakeFiles/CompilerIdC/a.out | Bin 0 -> 7212 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 203 +++ Box2D/CMakeFiles/CompilerIdCXX/a.out | Bin 0 -> 7337 bytes Box2D/CMakeFiles/Makefile2 | 61 + Box2D/CMakeFiles/TargetDirectories.txt | 0 Box2D/CMakeFiles/cmake.check_cache | 1 + Box2D/CMakeFiles/progress.marks | 1 + Box2D/CMakeLists.txt | 178 +++ ...actices For Programmers.pdf.REMOVED.git-id | 1 + ...ted with FMOD for Linux.pdf.REMOVED.git-id | 1 + .../fmod/documentation/LICENSE.TXT | 85 ++ .../fmod-profiler.pdf.REMOVED.git-id | 1 + .../documentation/fmodex.chm.REMOVED.git-id | 1 + .../documentation/revision.txt.REMOVED.git-id | 1 + .../third_party/fmod/examples/3d/Makefile | 11 + .../third_party/fmod/examples/3d/main.c | 254 ++++ .../third_party/fmod/examples/3d/main.cpp | 255 ++++ .../fmod/examples/cdplayer/Makefile | 11 + .../fmod/examples/cdplayer/cdplayer | Bin 0 -> 21193 bytes .../third_party/fmod/examples/cdplayer/main.c | 236 ++++ .../fmod/examples/cdplayer/main.cpp | 238 ++++ .../fmod/examples/channelgroups/Makefile | 11 + .../fmod/examples/channelgroups/main.c | 226 +++ .../fmod/examples/channelgroups/main.cpp | 226 +++ .../fmod/examples/common/wincompat.h | 84 ++ .../fmod/examples/dsp_custom/Makefile | 11 + .../fmod/examples/dsp_custom/main.c | 185 +++ .../fmod/examples/dsp_custom/main.cpp | 185 +++ .../examples/dsp_effectperspeaker/Makefile | 11 + .../fmod/examples/dsp_effectperspeaker/main.c | 268 ++++ .../examples/dsp_effectperspeaker/main.cpp | 268 ++++ .../fmod/examples/effects/Makefile | 11 + .../third_party/fmod/examples/effects/effects | Bin 0 -> 25149 bytes .../third_party/fmod/examples/effects/main.c | 333 +++++ .../fmod/examples/effects/main.cpp | 333 +++++ .../fmod/examples/filecallbacks/Makefile | 11 + .../fmod/examples/filecallbacks/main.c | 230 +++ .../fmod/examples/filecallbacks/main.cpp | 229 +++ .../fmod/examples/generatetone/Makefile | 11 + .../fmod/examples/generatetone/main.c | 230 +++ .../fmod/examples/generatetone/main.cpp | 234 ++++ .../fmod/examples/loadfrommemory/Makefile | 11 + .../fmod/examples/loadfrommemory/main.c | 219 +++ .../fmod/examples/loadfrommemory/main.cpp | 213 +++ .../fmod/examples/media/playlist.m3u | 11 + .../examples/media/wave.mp3.REMOVED.git-id | 1 + .../fmod/examples/multiplesoundcard/Makefile | 11 + .../fmod/examples/multiplesoundcard/main.c | 226 +++ .../fmod/examples/multiplesoundcard/main.cpp | 228 +++ .../fmod/examples/multispeakeroutput/Makefile | 11 + .../fmod/examples/multispeakeroutput/main.c | 335 +++++ .../fmod/examples/multispeakeroutput/main.cpp | 337 +++++ .../fmod/examples/netstream/Makefile | 11 + .../fmod/examples/netstream/main.c | 174 +++ .../fmod/examples/netstream/main.cpp | 186 +++ .../fmod/examples/offlinedecoding/Makefile | 11 + .../fmod/examples/offlinedecoding/main.c | 137 ++ .../fmod/examples/offlinedecoding/main.cpp | 135 ++ .../fmod/examples/pitchdetection/Makefile | 11 + .../fmod/examples/pitchdetection/main.c | 309 ++++ .../fmod/examples/pitchdetection/main.cpp | 309 ++++ .../fmod/examples/playlist/Makefile | 11 + .../third_party/fmod/examples/playlist/main.c | 254 ++++ .../fmod/examples/playlist/main.cpp | 256 ++++ .../fmod/examples/playlist/playlist | Bin 0 -> 21196 bytes .../fmod/examples/playsound/Makefile | 11 + .../fmod/examples/playsound/main.c | 184 +++ .../fmod/examples/playsound/main.cpp | 182 +++ .../fmod/examples/playsound/playsound | Bin 0 -> 21100 bytes .../fmod/examples/playstream/Makefile | 11 + .../fmod/examples/playstream/main.c | 149 ++ .../fmod/examples/playstream/main.cpp | 147 ++ .../examples/plugin_dev/codec_raw/Makefile | 5 + .../fmod/examples/plugin_dev/codec_raw/main.c | 96 ++ .../examples/plugin_dev/dsp_gain/Makefile | 5 + .../fmod/examples/plugin_dev/dsp_gain/main.c | 181 +++ .../fmod/examples/readtags/Makefile | 11 + .../third_party/fmod/examples/readtags/main.c | 165 +++ .../fmod/examples/readtags/main.cpp | 165 +++ .../fmod/examples/realtimestitching/Makefile | 11 + .../fmod/examples/realtimestitching/main.c | 245 ++++ .../fmod/examples/realtimestitching/main.cpp | 245 ++++ .../fmod/examples/recording/Makefile | 11 + .../fmod/examples/recording/main.c | 401 ++++++ .../fmod/examples/recording/main.cpp | 395 ++++++ .../fmod/examples/recordtodisk/Makefile | 11 + .../fmod/examples/recordtodisk/main.c | 326 +++++ .../fmod/examples/recordtodisk/main.cpp | 326 +++++ .../fmod/examples/ripnetstream/Makefile | 11 + .../fmod/examples/ripnetstream/main.c | 332 +++++ .../fmod/examples/ripnetstream/main.cpp | 332 +++++ .../fmod/examples/submixing/Makefile | 11 + .../fmod/examples/submixing/main.c | 269 ++++ .../fmod/examples/submixing/main.cpp | 269 ++++ .../fmod/examples/useplugins/Makefile | 11 + .../fmod/examples/useplugins/main.c | 249 ++++ .../fmod/examples/useplugins/main.cpp | 249 ++++ .../fmod/examples/usercreatedsound/Makefile | 11 + .../fmod/examples/usercreatedsound/main.c | 215 +++ .../fmod/examples/usercreatedsound/main.cpp | 214 +++ .../fmod/fmoddesignerapi/README.TXT | 57 + .../fmod/fmoddesignerapi/api/inc/fmod_event.h | 1244 +++++++++++++++++ .../fmoddesignerapi/api/inc/fmod_event.hpp | 395 ++++++ .../fmoddesignerapi/api/inc/fmod_event_net.h | 42 + .../api/inc/fmod_event_net.hpp | 26 + .../libfmodevent-4.36.01.so.REMOVED.git-id | 1 + .../libfmodeventL-4.36.01.so.REMOVED.git-id | 1 + .../examples/RUN_BUILD_MEDIA_FILES.txt | 1 + .../fmoddesignerapi/examples/effects/Makefile | 8 + .../fmoddesignerapi/examples/effects/main.cpp | 99 ++ .../examples/examples.fdp.REMOVED.git-id | 1 + .../examples/info_only/Makefile | 8 + .../examples/info_only/main.cpp | 210 +++ .../examples/load_data/Makefile | 8 + .../examples/load_data/main.cpp | 115 ++ .../examples/max_playbacks/Makefile | 8 + .../examples/max_playbacks/main.cpp | 262 ++++ .../2011_cycle_sustain01.ogg.REMOVED.git-id | 1 + .../2011_cycle_sustain02.ogg.REMOVED.git-id | 1 + .../Submarine/bow_still01.ogg.REMOVED.git-id | 1 + .../Submarine/bow_still02.ogg.REMOVED.git-id | 1 + .../Submarine/bow_wake01.ogg.REMOVED.git-id | 1 + .../Submarine/bow_wake02.ogg.REMOVED.git-id | 1 + .../Submarine/bow_wake03.ogg.REMOVED.git-id | 1 + .../2011/Submarine/buzz01.ogg.REMOVED.git-id | 1 + .../2011/Submarine/buzz02.ogg.REMOVED.git-id | 1 + .../cables_creak01.ogg.REMOVED.git-id | 1 + .../cables_creak02.ogg.REMOVED.git-id | 1 + .../cables_creak03.ogg.REMOVED.git-id | 1 + .../cables_creak05.ogg.REMOVED.git-id | 1 + .../cables_creak06.ogg.REMOVED.git-id | 1 + .../cables_creak07.ogg.REMOVED.git-id | 1 + .../engine_component01.ogg.REMOVED.git-id | 1 + .../engine_component02.ogg.REMOVED.git-id | 1 + .../engine_component03.ogg.REMOVED.git-id | 1 + .../engine_component04.ogg.REMOVED.git-id | 1 + .../engine_component06.ogg.REMOVED.git-id | 1 + .../engine_component07.ogg.REMOVED.git-id | 1 + .../Submarine/engine_load.ogg.REMOVED.git-id | 1 + .../metal_creak_light_12.ogg.REMOVED.git-id | 1 + .../metal_screech03.ogg.REMOVED.git-id | 1 + .../media/2011/crickets.ogg.REMOVED.git-id | 1 + .../examples/media/build_media_files.sh | 5 + .../examples/media/car/Readme Copyright.txt | 3 + .../examples/media/examples.fev | Bin 0 -> 55134 bytes .../interactive_music_1.ogg.REMOVED.git-id | 1 + .../interactive_music_2.ogg.REMOVED.git-id | 1 + .../interactive_music_3.ogg.REMOVED.git-id | 1 + ...eractive_music_6channel.ogg.REMOVED.git-id | 1 + .../media/music/excited.ogg.REMOVED.git-id | 1 + .../media/music/relaxed.ogg.REMOVED.git-id | 1 + .../music/state-idle-01.ogg.REMOVED.git-id | 1 + .../music/state-idle-02.ogg.REMOVED.git-id | 1 + .../music/state-idle-03.ogg.REMOVED.git-id | 1 + .../state-idle-fadeout.ogg.REMOVED.git-id | 1 + .../state-race-finish.ogg.REMOVED.git-id | 1 + .../media/onefootstep.wav.REMOVED.git-id | 1 + .../examples/media/streaming_bank.txt | 1 + .../examples/media/tutorial_bank.txt | 267 ++++ .../examples/parameters/Makefile | 8 + .../examples/parameters/main.cpp | 145 ++ .../examples/programmer_selected/Makefile | 8 + .../examples/programmer_selected/main.cpp | 110 ++ .../examples/programmer_sound/Makefile | 8 + .../examples/programmer_sound/main.cpp | 182 +++ .../examples/realtime_tweaking/Makefile | 8 + .../examples/realtime_tweaking/main.cpp | 115 ++ .../examples/simple_event/Makefile | 8 + .../examples/simple_event/main.cpp | 70 + .../third_party/fmod/tools/fsbanklib/Makefile | 5 + .../tools/fsbanklib/example.REMOVED.git-id | 1 + .../fmod/tools/fsbanklib/example.cpp | 369 +++++ .../third_party/fmod/tools/fsbanklib/fsbank.h | 258 ++++ .../fsbanklib/libfsbankex.a.REMOVED.git-id | 1 + .../fsbanklib/libmp3lame.so.REMOVED.git-id | 1 + .../tools/fsbanklib/twolame.so.REMOVED.git-id | 1 + .../AndroidDebug/Classes/AppDelegate.d | 346 +++++ .../AndroidDebug/Classes/HelloWorldScene.d | 343 +++++ .../Classes/HelloWorldScene.o.REMOVED.git-id | 1 + HelloCocos2dx/AndroidDebug/Classes/subdir.mk | 27 + .../android/jni/helloworld/main.d | 344 +++++ .../jni/helloworld/main.o.REMOVED.git-id | 1 + .../android/jni/helloworld/subdir.mk | 24 + .../libHelloCocos2dx.so.REMOVED.git-id | 1 + HelloCocos2dx/AndroidDebug/makefile | 66 + HelloCocos2dx/AndroidDebug/objects.mk | 8 + HelloCocos2dx/AndroidDebug/sources.mk | 28 + .../AndroidRelease/Classes/AppDelegate.d | 346 +++++ .../AndroidRelease/Classes/HelloWorldScene.d | 343 +++++ .../Classes/HelloWorldScene.o.REMOVED.git-id | 1 + .../AndroidRelease/Classes/subdir.mk | 27 + .../android/jni/helloworld/main.d | 344 +++++ .../jni/helloworld/main.o.REMOVED.git-id | 1 + .../android/jni/helloworld/subdir.mk | 24 + .../libHelloCocos2dx.so.REMOVED.git-id | 1 + HelloCocos2dx/AndroidRelease/makefile | 66 + HelloCocos2dx/AndroidRelease/objects.mk | 8 + HelloCocos2dx/AndroidRelease/sources.mk | 28 + HelloCocos2dx/android/default.properties | 2 +- .../gen/org/cocos2dx/application/R.java | 54 +- .../cocos2dx/application/ApplicationDemo.java | 2 +- cocos2dx/.cproject | 6 + cocos2dx/AndroidDebug/CCCamera.d | 79 ++ cocos2dx/AndroidDebug/CCConfiguration.d | 79 ++ cocos2dx/AndroidDebug/CCDirector.d | 220 +++ .../AndroidDebug/CCDirector.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/CCDrawingPrimitives.d | 79 ++ cocos2dx/AndroidDebug/CCScheduler.d | 114 ++ .../AndroidDebug/CCScheduler.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/actions/CCAction.d | 127 ++ .../actions/CCAction.o.REMOVED.git-id | 1 + .../AndroidDebug/actions/CCActionCamera.d | 122 ++ cocos2dx/AndroidDebug/actions/CCActionEase.d | 116 ++ .../actions/CCActionEase.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/actions/CCActionGrid.d | 137 ++ .../actions/CCActionGrid.o.REMOVED.git-id | 1 + .../AndroidDebug/actions/CCActionGrid3D.d | 125 ++ .../actions/CCActionGrid3D.o.REMOVED.git-id | 1 + .../AndroidDebug/actions/CCActionInstant.d | 128 ++ .../actions/CCActionInstant.o.REMOVED.git-id | 1 + .../AndroidDebug/actions/CCActionInterval.d | 128 ++ .../actions/CCActionInterval.o.REMOVED.git-id | 1 + .../AndroidDebug/actions/CCActionManager.d | 107 ++ .../actions/CCActionManager.o.REMOVED.git-id | 1 + .../AndroidDebug/actions/CCActionPageTurn3D.d | 125 ++ .../actions/CCActionProgressTimer.d | 128 ++ .../AndroidDebug/actions/CCActionTiledGrid.d | 143 ++ .../CCActionTiledGrid.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/actions/subdir.mk | 54 + .../AndroidDebug/base_nodes/CCAtlasNode.d | 104 ++ .../base_nodes/CCAtlasNode.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/base_nodes/CCNode.d | 136 ++ .../base_nodes/CCNode.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/base_nodes/subdir.mk | 27 + .../AndroidDebug/cocoa/CCAffineTransform.d | 23 + .../AndroidDebug/cocoa/CCAutoreleasePool.d | 26 + .../cocoa/CCAutoreleasePool.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/cocoa/CCData.d | 79 ++ cocos2dx/AndroidDebug/cocoa/CCGeometry.d | 19 + cocos2dx/AndroidDebug/cocoa/CCNS.d | 21 + .../AndroidDebug/cocoa/CCNS.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/cocoa/CCObject.d | 28 + cocos2dx/AndroidDebug/cocoa/CCSet.d | 22 + .../AndroidDebug/cocoa/CCSet.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/cocoa/CCZone.d | 22 + cocos2dx/AndroidDebug/cocoa/subdir.mk | 45 + cocos2dx/AndroidDebug/cocos2d.d | 340 +++++ cocos2dx/AndroidDebug/effects/CCGrabber.d | 91 ++ cocos2dx/AndroidDebug/effects/CCGrid.d | 121 ++ .../effects/CCGrid.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/effects/subdir.mk | 27 + .../keypad_dispatcher/CCKeypadDelegate.d | 74 + .../keypad_dispatcher/CCKeypadDispatcher.d | 84 ++ .../CCKeypadDispatcher.o.REMOVED.git-id | 1 + .../AndroidDebug/keypad_dispatcher/subdir.mk | 27 + .../AndroidDebug/label_nodes/CCLabelAtlas.d | 113 ++ .../label_nodes/CCLabelAtlas.o.REMOVED.git-id | 1 + .../AndroidDebug/label_nodes/CCLabelBMFont.d | 140 ++ .../CCLabelBMFont.o.REMOVED.git-id | 1 + .../AndroidDebug/label_nodes/CCLabelTTF.d | 110 ++ .../label_nodes/CCLabelTTF.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/label_nodes/subdir.mk | 30 + .../layers_scenes_transitions_nodes/CCLayer.d | 144 ++ .../CCLayer.o.REMOVED.git-id | 1 + .../layers_scenes_transitions_nodes/CCScene.d | 102 ++ .../CCTransition.d | 192 +++ .../CCTransition.o.REMOVED.git-id | 1 + .../CCTransitionPageTurn.d | 147 ++ .../CCTransitionRadial.d | 153 ++ .../CCTransitionRadial.o.REMOVED.git-id | 1 + .../layers_scenes_transitions_nodes/subdir.mk | 36 + .../AndroidDebug/libcocos2d.so.REMOVED.git-id | 1 + .../libcocos2dx-base.so.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/makefile | 93 ++ cocos2dx/AndroidDebug/menu_nodes/CCMenu.d | 145 ++ .../menu_nodes/CCMenu.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d | 149 ++ .../menu_nodes/CCMenuItem.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/menu_nodes/subdir.mk | 27 + .../AndroidDebug/misc_nodes/CCMotionStreak.d | 107 ++ .../CCMotionStreak.o.REMOVED.git-id | 1 + .../AndroidDebug/misc_nodes/CCProgressTimer.d | 119 ++ .../CCProgressTimer.o.REMOVED.git-id | 1 + .../AndroidDebug/misc_nodes/CCRenderTexture.d | 143 ++ .../CCRenderTexture.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d | 112 ++ .../misc_nodes/CCRibbon.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/misc_nodes/subdir.mk | 33 + cocos2dx/AndroidDebug/objects.mk | 8 + .../particle_nodes/CCParticleExamples.d | 128 ++ .../CCParticleExamples.o.REMOVED.git-id | 1 + .../particle_nodes/CCParticleSystem.d | 137 ++ .../CCParticleSystem.o.REMOVED.git-id | 1 + .../particle_nodes/CCParticleSystemQuad.d | 114 ++ .../CCParticleSystemQuad.o.REMOVED.git-id | 1 + .../AndroidDebug/particle_nodes/subdir.mk | 30 + cocos2dx/AndroidDebug/platform/CCCommon.d | 17 + cocos2dx/AndroidDebug/platform/CCFileUtils.d | 164 +++ .../platform/CCFileUtils.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/platform/CCGL.d | 41 + cocos2dx/AndroidDebug/platform/CCImage.d | 113 ++ .../platform/CCImage.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/platform/CCSAXParser.d | 149 ++ cocos2dx/AndroidDebug/platform/CCStdC.d | 15 + cocos2dx/AndroidDebug/platform/CCThread.d | 18 + .../android/CCAccelerometer_android.d | 27 + .../CCAccelerometer_android.o.REMOVED.git-id | 1 + .../platform/android/CCApplication_android.d | 81 ++ .../CCApplication_android.o.REMOVED.git-id | 1 + .../platform/android/CCEGLView_android.d | 121 ++ .../platform/android/jni/IMEJni.d | 34 + .../android/jni/IMEJni.o.REMOVED.git-id | 1 + .../platform/android/jni/JniHelper.d | 17 + .../android/jni/JniHelper.o.REMOVED.git-id | 1 + .../platform/android/jni/MessageJni.d | 98 ++ .../android/jni/MessageJni.o.REMOVED.git-id | 1 + .../platform/android/jni/SensorJni.d | 56 + .../android/jni/SensorJni.o.REMOVED.git-id | 1 + .../platform/android/jni/SystemInfoJni.d | 32 + .../jni/SystemInfoJni.o.REMOVED.git-id | 1 + .../platform/android/jni/TouchesJni.d | 122 ++ .../android/jni/TouchesJni.o.REMOVED.git-id | 1 + .../platform/android/jni/subdir.mk | 39 + .../AndroidDebug/platform/android/subdir.mk | 30 + cocos2dx/AndroidDebug/platform/platform.d | 22 + cocos2dx/AndroidDebug/platform/subdir.mk | 45 + .../script_support/CCScriptSupport.d | 101 ++ .../AndroidDebug/script_support/subdir.mk | 24 + cocos2dx/AndroidDebug/sources.mk | 49 + .../AndroidDebug/sprite_nodes/CCAnimation.d | 116 ++ .../sprite_nodes/CCAnimation.o.REMOVED.git-id | 1 + .../sprite_nodes/CCAnimationCache.d | 110 ++ .../CCAnimationCache.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d | 143 ++ .../sprite_nodes/CCSprite.o.REMOVED.git-id | 1 + .../sprite_nodes/CCSpriteBatchNode.d | 137 ++ .../CCSpriteBatchNode.o.REMOVED.git-id | 1 + .../AndroidDebug/sprite_nodes/CCSpriteFrame.d | 101 ++ .../sprite_nodes/CCSpriteFrameCache.d | 140 ++ .../CCSpriteFrameCache.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/sprite_nodes/subdir.mk | 39 + cocos2dx/AndroidDebug/subdir.mk | 39 + cocos2dx/AndroidDebug/support/CCArray.d | 79 ++ .../AndroidDebug/support/CCPointExtension.d | 74 + cocos2dx/AndroidDebug/support/CCProfiling.d | 10 + cocos2dx/AndroidDebug/support/CCUserDefault.d | 146 ++ .../support/CCUserDefault.o.REMOVED.git-id | 1 + .../AndroidDebug/support/TransformUtils.d | 49 + cocos2dx/AndroidDebug/support/base64.d | 4 + cocos2dx/AndroidDebug/support/ccUtils.d | 4 + .../support/image_support/TGAlib.d | 79 ++ .../support/image_support/subdir.mk | 24 + cocos2dx/AndroidDebug/support/subdir.mk | 42 + .../support/zip_support/ZipUtils.d | 82 ++ .../AndroidDebug/support/zip_support/ioapi.d | 7 + .../support/zip_support/subdir.mk | 30 + .../AndroidDebug/support/zip_support/unzip.d | 10 + .../text_input_node/CCIMEDispatcher.d | 26 + .../CCIMEDispatcher.o.REMOVED.git-id | 1 + .../text_input_node/CCTextFieldTTF.d | 131 ++ .../CCTextFieldTTF.o.REMOVED.git-id | 1 + .../AndroidDebug/text_input_node/subdir.mk | 27 + cocos2dx/AndroidDebug/textures/CCTexture2D.d | 110 ++ .../textures/CCTexture2D.o.REMOVED.git-id | 1 + .../AndroidDebug/textures/CCTextureAtlas.d | 92 ++ .../AndroidDebug/textures/CCTextureCache.d | 110 ++ .../textures/CCTextureCache.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/textures/CCTexturePVR.d | 104 ++ .../textures/CCTexturePVR.o.REMOVED.git-id | 1 + cocos2dx/AndroidDebug/textures/subdir.mk | 33 + .../tileMap_parallax_nodes/CCParallaxNode.d | 99 ++ .../CCParallaxNode.o.REMOVED.git-id | 1 + .../tileMap_parallax_nodes/CCTMXLayer.d | 143 ++ .../CCTMXLayer.o.REMOVED.git-id | 1 + .../tileMap_parallax_nodes/CCTMXObjectGroup.d | 84 ++ .../CCTMXObjectGroup.o.REMOVED.git-id | 1 + .../tileMap_parallax_nodes/CCTMXTiledMap.d | 138 ++ .../CCTMXTiledMap.o.REMOVED.git-id | 1 + .../tileMap_parallax_nodes/CCTMXXMLParser.d | 135 ++ .../CCTMXXMLParser.o.REMOVED.git-id | 1 + .../tileMap_parallax_nodes/CCTileMapAtlas.d | 117 ++ .../CCTileMapAtlas.o.REMOVED.git-id | 1 + .../tileMap_parallax_nodes/subdir.mk | 39 + .../touch_dispatcher/CCTouchDispatcher.d | 125 ++ .../CCTouchDispatcher.o.REMOVED.git-id | 1 + .../touch_dispatcher/CCTouchHandler.d | 110 ++ .../CCTouchHandler.o.REMOVED.git-id | 1 + .../AndroidDebug/touch_dispatcher/subdir.mk | 27 + cocos2dx/AndroidRelease/CCCamera.d | 79 ++ cocos2dx/AndroidRelease/CCConfiguration.d | 79 ++ cocos2dx/AndroidRelease/CCDirector.d | 220 +++ cocos2dx/AndroidRelease/CCDrawingPrimitives.d | 79 ++ cocos2dx/AndroidRelease/CCScheduler.d | 114 ++ cocos2dx/AndroidRelease/actions/CCAction.d | 127 ++ .../AndroidRelease/actions/CCActionCamera.d | 122 ++ .../AndroidRelease/actions/CCActionEase.d | 116 ++ .../AndroidRelease/actions/CCActionGrid.d | 137 ++ .../AndroidRelease/actions/CCActionGrid3D.d | 125 ++ .../AndroidRelease/actions/CCActionInstant.d | 128 ++ .../AndroidRelease/actions/CCActionInterval.d | 128 ++ .../AndroidRelease/actions/CCActionManager.d | 107 ++ .../actions/CCActionPageTurn3D.d | 125 ++ .../actions/CCActionProgressTimer.d | 128 ++ .../actions/CCActionTiledGrid.d | 143 ++ cocos2dx/AndroidRelease/actions/subdir.mk | 54 + .../AndroidRelease/base_nodes/CCAtlasNode.d | 104 ++ cocos2dx/AndroidRelease/base_nodes/CCNode.d | 136 ++ cocos2dx/AndroidRelease/base_nodes/subdir.mk | 27 + .../AndroidRelease/cocoa/CCAffineTransform.d | 23 + .../AndroidRelease/cocoa/CCAutoreleasePool.d | 26 + cocos2dx/AndroidRelease/cocoa/CCData.d | 79 ++ cocos2dx/AndroidRelease/cocoa/CCGeometry.d | 19 + cocos2dx/AndroidRelease/cocoa/CCNS.d | 21 + cocos2dx/AndroidRelease/cocoa/CCObject.d | 28 + cocos2dx/AndroidRelease/cocoa/CCSet.d | 22 + cocos2dx/AndroidRelease/cocoa/CCZone.d | 22 + cocos2dx/AndroidRelease/cocoa/subdir.mk | 45 + cocos2dx/AndroidRelease/cocos2d.d | 340 +++++ cocos2dx/AndroidRelease/effects/CCGrabber.d | 91 ++ cocos2dx/AndroidRelease/effects/CCGrid.d | 121 ++ cocos2dx/AndroidRelease/effects/subdir.mk | 27 + .../keypad_dispatcher/CCKeypadDelegate.d | 74 + .../keypad_dispatcher/CCKeypadDispatcher.d | 84 ++ .../keypad_dispatcher/subdir.mk | 27 + .../AndroidRelease/label_nodes/CCLabelAtlas.d | 113 ++ .../label_nodes/CCLabelBMFont.d | 140 ++ .../AndroidRelease/label_nodes/CCLabelTTF.d | 110 ++ cocos2dx/AndroidRelease/label_nodes/subdir.mk | 30 + .../layers_scenes_transitions_nodes/CCLayer.d | 144 ++ .../layers_scenes_transitions_nodes/CCScene.d | 102 ++ .../CCTransition.d | 192 +++ .../CCTransition.o.REMOVED.git-id | 1 + .../CCTransitionPageTurn.d | 147 ++ .../CCTransitionRadial.d | 153 ++ .../layers_scenes_transitions_nodes/subdir.mk | 36 + .../libcocos2dx-base.REMOVED.git-id | 1 + .../libcocos2dx-base.so.REMOVED.git-id | 1 + cocos2dx/AndroidRelease/makefile | 86 ++ cocos2dx/AndroidRelease/menu_nodes/CCMenu.d | 145 ++ .../AndroidRelease/menu_nodes/CCMenuItem.d | 149 ++ cocos2dx/AndroidRelease/menu_nodes/subdir.mk | 27 + .../misc_nodes/CCMotionStreak.d | 107 ++ .../misc_nodes/CCProgressTimer.d | 119 ++ .../misc_nodes/CCRenderTexture.d | 143 ++ cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d | 112 ++ cocos2dx/AndroidRelease/misc_nodes/subdir.mk | 33 + cocos2dx/AndroidRelease/objects.mk | 8 + .../particle_nodes/CCParticleExamples.d | 128 ++ .../particle_nodes/CCParticleSystem.d | 137 ++ .../particle_nodes/CCParticleSystemQuad.d | 114 ++ .../AndroidRelease/particle_nodes/subdir.mk | 30 + cocos2dx/AndroidRelease/platform/CCCommon.d | 17 + .../AndroidRelease/platform/CCFileUtils.d | 164 +++ cocos2dx/AndroidRelease/platform/CCGL.d | 41 + cocos2dx/AndroidRelease/platform/CCImage.d | 113 ++ .../AndroidRelease/platform/CCSAXParser.d | 149 ++ cocos2dx/AndroidRelease/platform/CCStdC.d | 15 + cocos2dx/AndroidRelease/platform/CCThread.d | 18 + .../android/CCAccelerometer_android.d | 27 + .../platform/android/CCApplication_android.d | 81 ++ .../platform/android/CCEGLView_android.d | 121 ++ .../platform/android/jni/IMEJni.d | 34 + .../platform/android/jni/JniHelper.d | 17 + .../platform/android/jni/MessageJni.d | 98 ++ .../platform/android/jni/SensorJni.d | 56 + .../platform/android/jni/SystemInfoJni.d | 32 + .../platform/android/jni/TouchesJni.d | 122 ++ .../platform/android/jni/subdir.mk | 39 + .../AndroidRelease/platform/android/subdir.mk | 30 + cocos2dx/AndroidRelease/platform/platform.d | 22 + cocos2dx/AndroidRelease/platform/subdir.mk | 45 + .../script_support/CCScriptSupport.d | 101 ++ .../AndroidRelease/script_support/subdir.mk | 24 + cocos2dx/AndroidRelease/sources.mk | 49 + .../AndroidRelease/sprite_nodes/CCAnimation.d | 116 ++ .../sprite_nodes/CCAnimationCache.d | 110 ++ .../AndroidRelease/sprite_nodes/CCSprite.d | 143 ++ .../sprite_nodes/CCSpriteBatchNode.d | 137 ++ .../sprite_nodes/CCSpriteFrame.d | 101 ++ .../sprite_nodes/CCSpriteFrameCache.d | 140 ++ .../AndroidRelease/sprite_nodes/subdir.mk | 39 + cocos2dx/AndroidRelease/subdir.mk | 39 + cocos2dx/AndroidRelease/support/CCArray.d | 79 ++ .../AndroidRelease/support/CCPointExtension.d | 74 + cocos2dx/AndroidRelease/support/CCProfiling.d | 10 + .../AndroidRelease/support/CCUserDefault.d | 146 ++ .../AndroidRelease/support/TransformUtils.d | 49 + cocos2dx/AndroidRelease/support/base64.d | 4 + cocos2dx/AndroidRelease/support/ccUtils.d | 4 + .../support/image_support/TGAlib.d | 79 ++ .../support/image_support/subdir.mk | 24 + cocos2dx/AndroidRelease/support/subdir.mk | 42 + .../support/zip_support/ZipUtils.d | 82 ++ .../support/zip_support/ioapi.d | 7 + .../support/zip_support/subdir.mk | 30 + .../support/zip_support/unzip.d | 10 + .../text_input_node/CCIMEDispatcher.d | 26 + .../text_input_node/CCTextFieldTTF.d | 131 ++ .../AndroidRelease/text_input_node/subdir.mk | 27 + .../AndroidRelease/textures/CCTexture2D.d | 110 ++ .../AndroidRelease/textures/CCTextureAtlas.d | 92 ++ .../AndroidRelease/textures/CCTextureCache.d | 110 ++ .../AndroidRelease/textures/CCTexturePVR.d | 104 ++ cocos2dx/AndroidRelease/textures/subdir.mk | 33 + .../tileMap_parallax_nodes/CCParallaxNode.d | 99 ++ .../tileMap_parallax_nodes/CCTMXLayer.d | 143 ++ .../tileMap_parallax_nodes/CCTMXObjectGroup.d | 84 ++ .../tileMap_parallax_nodes/CCTMXTiledMap.d | 138 ++ .../tileMap_parallax_nodes/CCTMXXMLParser.d | 135 ++ .../tileMap_parallax_nodes/CCTileMapAtlas.d | 117 ++ .../tileMap_parallax_nodes/subdir.mk | 39 + .../touch_dispatcher/CCTouchDispatcher.d | 125 ++ .../touch_dispatcher/CCTouchHandler.d | 110 ++ .../AndroidRelease/touch_dispatcher/subdir.mk | 27 + cocos2dx/CCConfiguration.cpp | 5 + cocos2dx/CCConfiguration.h | 2 +- cocos2dx/actions/CCActionGrid3D.cpp | 2 +- .../platform/Linux/CCAplication_linux.cpp | 51 +- cocos2dx/platform/Linux/CCAplication_linux.h | 2 +- cocos2dx/platform/Linux/CCImage_Linux.cpp | 2 +- mycreate-android-project.sh | 4 +- post.sh | 8 + template/android/mycopy_files.sh | 10 +- tests/AppDelegate.cpp | 2 +- tests/test.linux/Res | 1 + .../PlanetCute-1024x1024.png.REMOVED.git-id | 1 - .../Res/Images/atlastest.png.REMOVED.git-id | 1 - .../Images/background1-hd.png.REMOVED.git-id | 1 - .../Res/Images/background1.png.REMOVED.git-id | 1 - .../Images/background2-hd.png.REMOVED.git-id | 1 - .../Res/Images/background2.png.REMOVED.git-id | 1 - .../Res/Images/bugs/bug886.png.REMOVED.git-id | 1 - ...ossini_dance_atlas-mono.png.REMOVED.git-id | 1 - .../landscape-1024x1024.png.REMOVED.git-id | 1 - .../Images/spritesheet1.png.REMOVED.git-id | 1 - .../TileMaps/hexa-tiles.png.REMOVED.git-id | 1 - .../TileMaps/ortho-test1.png.REMOVED.git-id | 1 - .../Res/animations/grossini.plist.xml | 282 ---- tests/test.linux/Res/app.config.txt | 5 - .../Res/background.mp3.REMOVED.git-id | 1 - .../fonts/bitmapFontTest.png.REMOVED.git-id | 1 - .../fonts/bitmapFontTest2.png.REMOVED.git-id | 1 - .../Res/fonts/futura-48.png.REMOVED.git-id | 1 - ..._bold_italic-charmap-hd.png.REMOVED.git-id | 1 - 548 files changed, 41092 insertions(+), 356 deletions(-) create mode 100644 Box2D/Box2DConfig.cmake create mode 100755 Box2D/CMakeFiles/CMakeDetermineCompilerABI_C.bin create mode 100755 Box2D/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin create mode 100644 Box2D/CMakeFiles/CompilerIdC/CMakeCCompilerId.c create mode 100755 Box2D/CMakeFiles/CompilerIdC/a.out create mode 100644 Box2D/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 Box2D/CMakeFiles/CompilerIdCXX/a.out create mode 100644 Box2D/CMakeFiles/Makefile2 create mode 100644 Box2D/CMakeFiles/TargetDirectories.txt create mode 100644 Box2D/CMakeFiles/cmake.check_cache create mode 100644 Box2D/CMakeFiles/progress.marks create mode 100644 Box2D/CMakeLists.txt create mode 100644 CocosDenshion/third_party/fmod/documentation/FMOD Event System - Best Practices For Programmers.pdf.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/documentation/Getting started with FMOD for Linux.pdf.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/documentation/LICENSE.TXT create mode 100644 CocosDenshion/third_party/fmod/documentation/fmod-profiler.pdf.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/documentation/fmodex.chm.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/documentation/revision.txt.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/examples/3d/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/3d/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/3d/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/cdplayer/Makefile create mode 100755 CocosDenshion/third_party/fmod/examples/cdplayer/cdplayer create mode 100644 CocosDenshion/third_party/fmod/examples/cdplayer/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/cdplayer/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/channelgroups/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/channelgroups/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/channelgroups/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/common/wincompat.h create mode 100644 CocosDenshion/third_party/fmod/examples/dsp_custom/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/dsp_custom/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/dsp_custom/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/effects/Makefile create mode 100755 CocosDenshion/third_party/fmod/examples/effects/effects create mode 100644 CocosDenshion/third_party/fmod/examples/effects/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/effects/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/filecallbacks/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/filecallbacks/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/filecallbacks/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/generatetone/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/generatetone/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/generatetone/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/loadfrommemory/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/loadfrommemory/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/loadfrommemory/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/media/playlist.m3u create mode 100644 CocosDenshion/third_party/fmod/examples/media/wave.mp3.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/examples/multiplesoundcard/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/multiplesoundcard/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/multiplesoundcard/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/multispeakeroutput/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/multispeakeroutput/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/multispeakeroutput/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/netstream/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/netstream/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/netstream/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/offlinedecoding/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/offlinedecoding/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/offlinedecoding/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/pitchdetection/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/pitchdetection/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/pitchdetection/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/playlist/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/playlist/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/playlist/main.cpp create mode 100755 CocosDenshion/third_party/fmod/examples/playlist/playlist create mode 100644 CocosDenshion/third_party/fmod/examples/playsound/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/playsound/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/playsound/main.cpp create mode 100755 CocosDenshion/third_party/fmod/examples/playsound/playsound create mode 100644 CocosDenshion/third_party/fmod/examples/playstream/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/playstream/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/playstream/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/plugin_dev/codec_raw/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/plugin_dev/codec_raw/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/plugin_dev/dsp_gain/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/plugin_dev/dsp_gain/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/readtags/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/readtags/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/readtags/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/realtimestitching/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/realtimestitching/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/realtimestitching/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/recording/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/recording/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/recording/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/recordtodisk/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/recordtodisk/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/recordtodisk/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/ripnetstream/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/ripnetstream/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/ripnetstream/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/submixing/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/submixing/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/submixing/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/useplugins/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/useplugins/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/useplugins/main.cpp create mode 100644 CocosDenshion/third_party/fmod/examples/usercreatedsound/Makefile create mode 100644 CocosDenshion/third_party/fmod/examples/usercreatedsound/main.c create mode 100644 CocosDenshion/third_party/fmod/examples/usercreatedsound/main.cpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/README.TXT create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event.h create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event.hpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event_net.h create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event_net.hpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/api/lib/libfmodevent-4.36.01.so.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/api/lib/libfmodeventL-4.36.01.so.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/RUN_BUILD_MEDIA_FILES.txt create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/effects/Makefile create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/effects/main.cpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/examples.fdp.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/info_only/Makefile create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/info_only/main.cpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/load_data/Makefile create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/load_data/main.cpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/max_playbacks/Makefile create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/max_playbacks/main.cpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/2011_cycle_sustain01.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/2011_cycle_sustain02.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_still01.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_still02.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake01.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake02.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake03.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/buzz01.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/buzz02.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak01.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak02.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak03.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak05.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak06.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak07.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component01.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component02.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component03.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component04.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component06.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component07.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_load.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/metal_creak_light_12.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/metal_screech03.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/crickets.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/build_media_files.sh create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/car/Readme Copyright.txt create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/examples.fev create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_1.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_2.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_3.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_6channel.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/excited.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/relaxed.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-01.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-02.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-03.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-fadeout.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-race-finish.ogg.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/onefootstep.wav.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/streaming_bank.txt create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/tutorial_bank.txt create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/parameters/Makefile create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/parameters/main.cpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_selected/Makefile create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_selected/main.cpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_sound/Makefile create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_sound/main.cpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/realtime_tweaking/Makefile create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/realtime_tweaking/main.cpp create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/simple_event/Makefile create mode 100644 CocosDenshion/third_party/fmod/fmoddesignerapi/examples/simple_event/main.cpp create mode 100644 CocosDenshion/third_party/fmod/tools/fsbanklib/Makefile create mode 100644 CocosDenshion/third_party/fmod/tools/fsbanklib/example.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/tools/fsbanklib/example.cpp create mode 100644 CocosDenshion/third_party/fmod/tools/fsbanklib/fsbank.h create mode 100644 CocosDenshion/third_party/fmod/tools/fsbanklib/libfsbankex.a.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/tools/fsbanklib/libmp3lame.so.REMOVED.git-id create mode 100644 CocosDenshion/third_party/fmod/tools/fsbanklib/twolame.so.REMOVED.git-id create mode 100644 HelloCocos2dx/AndroidDebug/Classes/AppDelegate.d create mode 100644 HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.d create mode 100644 HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id create mode 100644 HelloCocos2dx/AndroidDebug/Classes/subdir.mk create mode 100644 HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d create mode 100644 HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id create mode 100644 HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk create mode 100644 HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id create mode 100644 HelloCocos2dx/AndroidDebug/makefile create mode 100644 HelloCocos2dx/AndroidDebug/objects.mk create mode 100644 HelloCocos2dx/AndroidDebug/sources.mk create mode 100644 HelloCocos2dx/AndroidRelease/Classes/AppDelegate.d create mode 100644 HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.d create mode 100644 HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id create mode 100644 HelloCocos2dx/AndroidRelease/Classes/subdir.mk create mode 100644 HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d create mode 100644 HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id create mode 100644 HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk create mode 100644 HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id create mode 100644 HelloCocos2dx/AndroidRelease/makefile create mode 100644 HelloCocos2dx/AndroidRelease/objects.mk create mode 100644 HelloCocos2dx/AndroidRelease/sources.mk create mode 100644 cocos2dx/AndroidDebug/CCCamera.d create mode 100644 cocos2dx/AndroidDebug/CCConfiguration.d create mode 100644 cocos2dx/AndroidDebug/CCDirector.d create mode 100644 cocos2dx/AndroidDebug/CCDirector.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/CCDrawingPrimitives.d create mode 100644 cocos2dx/AndroidDebug/CCScheduler.d create mode 100644 cocos2dx/AndroidDebug/CCScheduler.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/actions/CCAction.d create mode 100644 cocos2dx/AndroidDebug/actions/CCAction.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/actions/CCActionCamera.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionEase.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionEase.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/actions/CCActionGrid.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionGrid.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/actions/CCActionGrid3D.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionGrid3D.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/actions/CCActionInstant.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionInstant.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/actions/CCActionInterval.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionInterval.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/actions/CCActionManager.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionManager.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/actions/CCActionPageTurn3D.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionProgressTimer.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionTiledGrid.d create mode 100644 cocos2dx/AndroidDebug/actions/CCActionTiledGrid.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/actions/subdir.mk create mode 100644 cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.d create mode 100644 cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/base_nodes/CCNode.d create mode 100644 cocos2dx/AndroidDebug/base_nodes/CCNode.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/base_nodes/subdir.mk create mode 100644 cocos2dx/AndroidDebug/cocoa/CCAffineTransform.d create mode 100644 cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.d create mode 100644 cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/cocoa/CCData.d create mode 100644 cocos2dx/AndroidDebug/cocoa/CCGeometry.d create mode 100644 cocos2dx/AndroidDebug/cocoa/CCNS.d create mode 100644 cocos2dx/AndroidDebug/cocoa/CCNS.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/cocoa/CCObject.d create mode 100644 cocos2dx/AndroidDebug/cocoa/CCSet.d create mode 100644 cocos2dx/AndroidDebug/cocoa/CCSet.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/cocoa/CCZone.d create mode 100644 cocos2dx/AndroidDebug/cocoa/subdir.mk create mode 100644 cocos2dx/AndroidDebug/cocos2d.d create mode 100644 cocos2dx/AndroidDebug/effects/CCGrabber.d create mode 100644 cocos2dx/AndroidDebug/effects/CCGrid.d create mode 100644 cocos2dx/AndroidDebug/effects/CCGrid.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/effects/subdir.mk create mode 100644 cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDelegate.d create mode 100644 cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.d create mode 100644 cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/keypad_dispatcher/subdir.mk create mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.d create mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.d create mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.d create mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/label_nodes/subdir.mk create mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.d create mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCScene.d create mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.d create mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionPageTurn.d create mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.d create mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/subdir.mk create mode 100644 cocos2dx/AndroidDebug/libcocos2d.so.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/libcocos2dx-base.so.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/makefile create mode 100644 cocos2dx/AndroidDebug/menu_nodes/CCMenu.d create mode 100644 cocos2dx/AndroidDebug/menu_nodes/CCMenu.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d create mode 100644 cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/menu_nodes/subdir.mk create mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.d create mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.d create mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.d create mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d create mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCRibbon.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/misc_nodes/subdir.mk create mode 100644 cocos2dx/AndroidDebug/objects.mk create mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.d create mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.d create mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.d create mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/particle_nodes/subdir.mk create mode 100644 cocos2dx/AndroidDebug/platform/CCCommon.d create mode 100644 cocos2dx/AndroidDebug/platform/CCFileUtils.d create mode 100644 cocos2dx/AndroidDebug/platform/CCFileUtils.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/CCGL.d create mode 100644 cocos2dx/AndroidDebug/platform/CCImage.d create mode 100644 cocos2dx/AndroidDebug/platform/CCImage.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/CCSAXParser.d create mode 100644 cocos2dx/AndroidDebug/platform/CCStdC.d create mode 100644 cocos2dx/AndroidDebug/platform/CCThread.d create mode 100644 cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.d create mode 100644 cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/android/CCApplication_android.d create mode 100644 cocos2dx/AndroidDebug/platform/android/CCApplication_android.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/android/CCEGLView_android.d create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/IMEJni.d create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/IMEJni.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/JniHelper.d create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/JniHelper.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/MessageJni.d create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/MessageJni.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/SensorJni.d create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/SensorJni.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.d create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.d create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/platform/android/jni/subdir.mk create mode 100644 cocos2dx/AndroidDebug/platform/android/subdir.mk create mode 100644 cocos2dx/AndroidDebug/platform/platform.d create mode 100644 cocos2dx/AndroidDebug/platform/subdir.mk create mode 100644 cocos2dx/AndroidDebug/script_support/CCScriptSupport.d create mode 100644 cocos2dx/AndroidDebug/script_support/subdir.mk create mode 100644 cocos2dx/AndroidDebug/sources.mk create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.d create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.d create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSprite.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.d create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrame.d create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.d create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/sprite_nodes/subdir.mk create mode 100644 cocos2dx/AndroidDebug/subdir.mk create mode 100644 cocos2dx/AndroidDebug/support/CCArray.d create mode 100644 cocos2dx/AndroidDebug/support/CCPointExtension.d create mode 100644 cocos2dx/AndroidDebug/support/CCProfiling.d create mode 100644 cocos2dx/AndroidDebug/support/CCUserDefault.d create mode 100644 cocos2dx/AndroidDebug/support/CCUserDefault.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/support/TransformUtils.d create mode 100644 cocos2dx/AndroidDebug/support/base64.d create mode 100644 cocos2dx/AndroidDebug/support/ccUtils.d create mode 100644 cocos2dx/AndroidDebug/support/image_support/TGAlib.d create mode 100644 cocos2dx/AndroidDebug/support/image_support/subdir.mk create mode 100644 cocos2dx/AndroidDebug/support/subdir.mk create mode 100644 cocos2dx/AndroidDebug/support/zip_support/ZipUtils.d create mode 100644 cocos2dx/AndroidDebug/support/zip_support/ioapi.d create mode 100644 cocos2dx/AndroidDebug/support/zip_support/subdir.mk create mode 100644 cocos2dx/AndroidDebug/support/zip_support/unzip.d create mode 100644 cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.d create mode 100644 cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.d create mode 100644 cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/text_input_node/subdir.mk create mode 100644 cocos2dx/AndroidDebug/textures/CCTexture2D.d create mode 100644 cocos2dx/AndroidDebug/textures/CCTexture2D.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/textures/CCTextureAtlas.d create mode 100644 cocos2dx/AndroidDebug/textures/CCTextureCache.d create mode 100644 cocos2dx/AndroidDebug/textures/CCTextureCache.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/textures/CCTexturePVR.d create mode 100644 cocos2dx/AndroidDebug/textures/CCTexturePVR.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/textures/subdir.mk create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.d create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.d create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.d create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.d create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.d create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.d create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/subdir.mk create mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.d create mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.d create mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/subdir.mk create mode 100644 cocos2dx/AndroidRelease/CCCamera.d create mode 100644 cocos2dx/AndroidRelease/CCConfiguration.d create mode 100644 cocos2dx/AndroidRelease/CCDirector.d create mode 100644 cocos2dx/AndroidRelease/CCDrawingPrimitives.d create mode 100644 cocos2dx/AndroidRelease/CCScheduler.d create mode 100644 cocos2dx/AndroidRelease/actions/CCAction.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionCamera.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionEase.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionGrid.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionGrid3D.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionInstant.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionInterval.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionManager.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionPageTurn3D.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionProgressTimer.d create mode 100644 cocos2dx/AndroidRelease/actions/CCActionTiledGrid.d create mode 100644 cocos2dx/AndroidRelease/actions/subdir.mk create mode 100644 cocos2dx/AndroidRelease/base_nodes/CCAtlasNode.d create mode 100644 cocos2dx/AndroidRelease/base_nodes/CCNode.d create mode 100644 cocos2dx/AndroidRelease/base_nodes/subdir.mk create mode 100644 cocos2dx/AndroidRelease/cocoa/CCAffineTransform.d create mode 100644 cocos2dx/AndroidRelease/cocoa/CCAutoreleasePool.d create mode 100644 cocos2dx/AndroidRelease/cocoa/CCData.d create mode 100644 cocos2dx/AndroidRelease/cocoa/CCGeometry.d create mode 100644 cocos2dx/AndroidRelease/cocoa/CCNS.d create mode 100644 cocos2dx/AndroidRelease/cocoa/CCObject.d create mode 100644 cocos2dx/AndroidRelease/cocoa/CCSet.d create mode 100644 cocos2dx/AndroidRelease/cocoa/CCZone.d create mode 100644 cocos2dx/AndroidRelease/cocoa/subdir.mk create mode 100644 cocos2dx/AndroidRelease/cocos2d.d create mode 100644 cocos2dx/AndroidRelease/effects/CCGrabber.d create mode 100644 cocos2dx/AndroidRelease/effects/CCGrid.d create mode 100644 cocos2dx/AndroidRelease/effects/subdir.mk create mode 100644 cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDelegate.d create mode 100644 cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDispatcher.d create mode 100644 cocos2dx/AndroidRelease/keypad_dispatcher/subdir.mk create mode 100644 cocos2dx/AndroidRelease/label_nodes/CCLabelAtlas.d create mode 100644 cocos2dx/AndroidRelease/label_nodes/CCLabelBMFont.d create mode 100644 cocos2dx/AndroidRelease/label_nodes/CCLabelTTF.d create mode 100644 cocos2dx/AndroidRelease/label_nodes/subdir.mk create mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCLayer.d create mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCScene.d create mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.d create mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id create mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionPageTurn.d create mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionRadial.d create mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/subdir.mk create mode 100644 cocos2dx/AndroidRelease/libcocos2dx-base.REMOVED.git-id create mode 100644 cocos2dx/AndroidRelease/libcocos2dx-base.so.REMOVED.git-id create mode 100644 cocos2dx/AndroidRelease/makefile create mode 100644 cocos2dx/AndroidRelease/menu_nodes/CCMenu.d create mode 100644 cocos2dx/AndroidRelease/menu_nodes/CCMenuItem.d create mode 100644 cocos2dx/AndroidRelease/menu_nodes/subdir.mk create mode 100644 cocos2dx/AndroidRelease/misc_nodes/CCMotionStreak.d create mode 100644 cocos2dx/AndroidRelease/misc_nodes/CCProgressTimer.d create mode 100644 cocos2dx/AndroidRelease/misc_nodes/CCRenderTexture.d create mode 100644 cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d create mode 100644 cocos2dx/AndroidRelease/misc_nodes/subdir.mk create mode 100644 cocos2dx/AndroidRelease/objects.mk create mode 100644 cocos2dx/AndroidRelease/particle_nodes/CCParticleExamples.d create mode 100644 cocos2dx/AndroidRelease/particle_nodes/CCParticleSystem.d create mode 100644 cocos2dx/AndroidRelease/particle_nodes/CCParticleSystemQuad.d create mode 100644 cocos2dx/AndroidRelease/particle_nodes/subdir.mk create mode 100644 cocos2dx/AndroidRelease/platform/CCCommon.d create mode 100644 cocos2dx/AndroidRelease/platform/CCFileUtils.d create mode 100644 cocos2dx/AndroidRelease/platform/CCGL.d create mode 100644 cocos2dx/AndroidRelease/platform/CCImage.d create mode 100644 cocos2dx/AndroidRelease/platform/CCSAXParser.d create mode 100644 cocos2dx/AndroidRelease/platform/CCStdC.d create mode 100644 cocos2dx/AndroidRelease/platform/CCThread.d create mode 100644 cocos2dx/AndroidRelease/platform/android/CCAccelerometer_android.d create mode 100644 cocos2dx/AndroidRelease/platform/android/CCApplication_android.d create mode 100644 cocos2dx/AndroidRelease/platform/android/CCEGLView_android.d create mode 100644 cocos2dx/AndroidRelease/platform/android/jni/IMEJni.d create mode 100644 cocos2dx/AndroidRelease/platform/android/jni/JniHelper.d create mode 100644 cocos2dx/AndroidRelease/platform/android/jni/MessageJni.d create mode 100644 cocos2dx/AndroidRelease/platform/android/jni/SensorJni.d create mode 100644 cocos2dx/AndroidRelease/platform/android/jni/SystemInfoJni.d create mode 100644 cocos2dx/AndroidRelease/platform/android/jni/TouchesJni.d create mode 100644 cocos2dx/AndroidRelease/platform/android/jni/subdir.mk create mode 100644 cocos2dx/AndroidRelease/platform/android/subdir.mk create mode 100644 cocos2dx/AndroidRelease/platform/platform.d create mode 100644 cocos2dx/AndroidRelease/platform/subdir.mk create mode 100644 cocos2dx/AndroidRelease/script_support/CCScriptSupport.d create mode 100644 cocos2dx/AndroidRelease/script_support/subdir.mk create mode 100644 cocos2dx/AndroidRelease/sources.mk create mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCAnimation.d create mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCAnimationCache.d create mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCSprite.d create mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCSpriteBatchNode.d create mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrame.d create mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrameCache.d create mode 100644 cocos2dx/AndroidRelease/sprite_nodes/subdir.mk create mode 100644 cocos2dx/AndroidRelease/subdir.mk create mode 100644 cocos2dx/AndroidRelease/support/CCArray.d create mode 100644 cocos2dx/AndroidRelease/support/CCPointExtension.d create mode 100644 cocos2dx/AndroidRelease/support/CCProfiling.d create mode 100644 cocos2dx/AndroidRelease/support/CCUserDefault.d create mode 100644 cocos2dx/AndroidRelease/support/TransformUtils.d create mode 100644 cocos2dx/AndroidRelease/support/base64.d create mode 100644 cocos2dx/AndroidRelease/support/ccUtils.d create mode 100644 cocos2dx/AndroidRelease/support/image_support/TGAlib.d create mode 100644 cocos2dx/AndroidRelease/support/image_support/subdir.mk create mode 100644 cocos2dx/AndroidRelease/support/subdir.mk create mode 100644 cocos2dx/AndroidRelease/support/zip_support/ZipUtils.d create mode 100644 cocos2dx/AndroidRelease/support/zip_support/ioapi.d create mode 100644 cocos2dx/AndroidRelease/support/zip_support/subdir.mk create mode 100644 cocos2dx/AndroidRelease/support/zip_support/unzip.d create mode 100644 cocos2dx/AndroidRelease/text_input_node/CCIMEDispatcher.d create mode 100644 cocos2dx/AndroidRelease/text_input_node/CCTextFieldTTF.d create mode 100644 cocos2dx/AndroidRelease/text_input_node/subdir.mk create mode 100644 cocos2dx/AndroidRelease/textures/CCTexture2D.d create mode 100644 cocos2dx/AndroidRelease/textures/CCTextureAtlas.d create mode 100644 cocos2dx/AndroidRelease/textures/CCTextureCache.d create mode 100644 cocos2dx/AndroidRelease/textures/CCTexturePVR.d create mode 100644 cocos2dx/AndroidRelease/textures/subdir.mk create mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCParallaxNode.d create mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXLayer.d create mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXObjectGroup.d create mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXTiledMap.d create mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXXMLParser.d create mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTileMapAtlas.d create mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/subdir.mk create mode 100644 cocos2dx/AndroidRelease/touch_dispatcher/CCTouchDispatcher.d create mode 100644 cocos2dx/AndroidRelease/touch_dispatcher/CCTouchHandler.d create mode 100644 cocos2dx/AndroidRelease/touch_dispatcher/subdir.mk create mode 100644 post.sh create mode 120000 tests/test.linux/Res delete mode 100644 tests/test.linux/Res/Images/PlanetCute-1024x1024.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/Images/atlastest.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/Images/background1-hd.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/Images/background1.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/Images/background2-hd.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/Images/background2.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/Images/bugs/bug886.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/Images/grossini_dance_atlas-mono.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/Images/landscape-1024x1024.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/Images/spritesheet1.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/TileMaps/hexa-tiles.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/TileMaps/ortho-test1.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/animations/grossini.plist.xml delete mode 100644 tests/test.linux/Res/app.config.txt delete mode 100644 tests/test.linux/Res/background.mp3.REMOVED.git-id delete mode 100644 tests/test.linux/Res/fonts/bitmapFontTest.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/fonts/bitmapFontTest2.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/fonts/futura-48.png.REMOVED.git-id delete mode 100644 tests/test.linux/Res/fonts/tuffy_bold_italic-charmap-hd.png.REMOVED.git-id diff --git a/Box2D/Box2DConfig.cmake b/Box2D/Box2DConfig.cmake new file mode 100644 index 0000000000..b567c17d14 --- /dev/null +++ b/Box2D/Box2DConfig.cmake @@ -0,0 +1,3 @@ +get_filename_component(SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +include(${SELF_DIR}/Box2D-targets.cmake) +get_filename_component(Box2D_INCLUDE_DIRS "${SELF_DIR}/../../include" ABSOLUTE) diff --git a/Box2D/CMakeFiles/CMakeDetermineCompilerABI_C.bin b/Box2D/CMakeFiles/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..7e0d0e90442a13c8351a159c4b2a5b5d0be3409e GIT binary patch literal 7173 zcmeHMZERG>6`lP6OmWN-oW>0C43J8LH*#w|)CB}!X9)TH7EKT=gn-BLxQP9aFNa@w>)sT8FpNE=~NklYBhmS4}A z*)b0TP5a+t&E7e4&)k_ebLYL8>x1E@29L)hbn*(HAPNroOKKpimMBe)2#ON1QY;tC z#C%jySJMv;vTT4x^HAqU_E861GXOpEQebB4Xq#Ckwne@HgUoC%0!m-HScuYN{t{+C z8k8clU+TROLFj|fF^>Z?Q_nt_w}8I|eKXesGi%)wm+ctfZArIph2Gu&B$&)>&#^y} zOhg|^##SX0sa&s-O&e>J4nvdr&CNSdQsbme3{|!*hveK)|H6XOV?SB^Y@xsY`S#V( zg0t-G$%i=A_aZaNXNBamGA&d>wkNL)`5xp_WcI7)p5t?;k|J0D`31M4SmxN67AbMt zFUPCrjW)!RfH)F-ZV?vco_@c76LqYooqY>KfBE&L7oQ1*|2$E;@#RHpqJO=*t8jJV z)MJ;!N8y5f3aHnxBnOQg(P){3DmRmHa5 zkwi))Qk`itn>b*lJIz>+ozawzY|iXVq!PmH>@nj{qdFF`BdVpF1BwkC&1SXEN}(T% zY_Ykiu`Xn;F{(LuBrkTv-T$~>JfaFby~cq=0&eXUr(|m(u3>-Ar$b=<7C`zb;gmZL zUEZFb@E1sH9~i4%CdBX$ryR!_`lCIsupG68_xST;wAs~ue#}{S1D2c>Q}|^YX9X?B zS^VT9G;>zaa-6zP#sR5dT77lzp}*xnzV>)qYn*Eo=fXd+GtTuboC9(4$StWjuKq`* zL*%}7q8w&VSD@E{E9Llo``_OD70-r?+2tc|(tiGo=clANZqqpU+=;W>X5>zwiPV@D(>a4tMW<#4!U@tgg0 zx5aOr@r0)ozU;zNXfl(~c6NW?-nqR%mmL^8|0N7~qOx#s+HposSK#SK^89`H+}nNNr9ICG>84j01_|e%Rf0gsnFUZQD^=z2Ve3*ZyvVE_)XKc8#3jG%6>jdBP z`5TVC^fXJINAg$v&iJqoRk=wu2{T;1=HJ9<3WqV2C$YYKPkG=sjm-@$8(q%bUR|?C zRYszTc6{via8l;d+ziakz}yVX&A{9Y%+0{u45%5v8AYD^v}7%ho;;uOp2agf?_4~a z^KNh$cgufHJL%xF>g@hn9%oh54+8V9#RDGiRXp4Btk1-A$|O!Wyw|awcS7Fh?ngce z`z#-ahtKL<)D39$}=?wq?}THLkKFT}9ND${EpI z0{7-bOc+G*NH#8vSYHbEl*DC3YM!z(*+e>Z3oxO}SV{6#p(kkzLtaJ<+v-JGUS5n$ zT3$p9D{gjXBHflSI_z{Niw>07*8xK?66sEKpo26T;>VEIR7>1!&?w#AZKZ5IPydU= z9Yp#I*H*?puuxn-ow#mH4Ik3PE_gQ-GU_se?b{mArlmg(#L-~~~3_X{WvATu699{0*|@aWLm z9-zc|NX_HkItc~GO&<5L<{d_vV`V+}_$UvM@P6jvO@cQGp0+`{F27OaaqVP` z4Ize^7lMoTOBauq)AGCU-g5DH39STA_XX8Vc?@L?N&1Y8-GMg_%=Kkr8;;`wGUtWk z)9`F-+{aEE<;ay)yPcb zJ*bNEmpW#?%V|rewcvfK0VFw0lw4b#-p9uxh=G3@6?_Nq8PHVvvfJJyF2GA%4YfT` zZ%ce1u~J2M)q6)_Wq|J&g;fuHk0{LEF&?}J6y}>oy%!YbimLsuuv$(1ZSoaon)_Ml zRV0)9R$&#DzpRg~U2O=o45p zSMrGmzqs!3tigTBIu9a%4?ybidGJM939QHGfyb`{e!MszUd+d1z%qIS=|O*t zQ!>WHl_ZWszTx7#{f7PXqZe@XKLD)f&jYXi0kFIO9|89l=a>Ee99SpX`yBuSPGyiD ztj8Z9xnIfgc<&b@B!Vww@hpR*6Zc* z-Y4pS^?ESgyA9YKf87i0j=!eZzBoUO$L4@_3ZgJL3%>&Fju#&TcE@jDck$_MzXiU4 z@p3&F|9uZwkB{-|4}snB+Cc- z5XTL*wX~W|joaH8SvKo$L0dyERV;0GCDYMJ(v&ADGm`5SI3@KYE!&D2U$0)XT2Nso zV!cFbg*<+lv0Qg|pYA8zTraz6Xsz8AHZ@{5x_q-2d2ExtgtkTYTcHs8N+hiej+Gd= zjAA3EC(O-FEp@d`W=liE_HdioR$JE;=99#-X)_*4#gdkOEZqgqjAkU0iS(H=a&5XQ zWQ-jR66?RQ-srMyv!}zf`X`%fw>5@@D=_}~(R6L{b7S~A?yiFHv*Y%g bHrE52R*mRjp&{Kw(8_o5lv)5R*Dqh7?9 zShfH2MW4U>-S^#h_wK%X@9xVBHFYaoE|<{c79K&=-(z^oAj@VbO_}hEsbZdZP!x;F ztS9e)4cLzcVIM``>Q}B_Cw=od=o613+j0z?JL;?c zb3V83)8`8gE4WuC!6de4KbSr-4eSHczg`=T&q>}q zz;uXvoQg5!d&gi6*`J;_`Vcb;#XkS8sb0f1ZHHl0Qpb9ZVawFOpMP=j)$M_rKMnbo zy>{=SmcL$Y8oWAm!E@hiD&F$K>)YS&yI$Zc`uN~K&wN_YUEBU1n%+iy zK23fU9@GGmxZ8m_Uq1x<-bAc{3dL;k8_42Od_8v>xX6JI18aLf?B4?Bet^LI7l=0? zn-DjAwi)oa1@buuejB*|CBwS`lJ>uXboze@I1D|)Lh9d#EF1Oj6TQH1LeDj0`|m+6 zhkpp*>0&YD{!x1X#9P`9hvv^`uq_pq)z*9Z3b^!E`#3 zrb$uRe4 z)*^EurvT)}KDyf<-(UPw`@j!*=IwS&rAPb)WfHZUA$1%T#$wniZt*ddplf)iOr`_G z#1u$_5`pfe#AaK!=hE8jkTFQx=A8rYenp7h?~dehxt>4TlLj9^?cgQ;^rLN4^QnQ{ zk{j@tn>&JEw#m(<=O~MpFQ8d&E_;Ylclor$>?z9OT|Nd(LrtYuH|_a*_8-^QG&V#T zBT)w0)9a&*r@?n%JiPBV%8zx&H)H^29zQe-u8#_gWapI;yjzcd?#^Cum7hyL&?om< z_L%EOG|3h9P%X{N&!q-GoJ0q%>i%ZaNe!dRzyOX_p@j!SWUvHt&W2u zv#{oSF_dSq=6o-@5L30QSJW>{$F@b1tyZ|xPBkwq+o&poEwN^Nd^f^wj_2!KY=+zg zv}csVmn7G=H4VbG-8)(C_&Gkq*zKau4}J@_e20k20&i81dm7&t6Erac6EiR|0~0ea zF#{7bF#ZhS+b_>lTGEQ&Ud>PB%ME$C8It!Xp3!-y;#r($|0B3t{`+PwS@EJetDnf? z+=%+az`RQhfq8G@xBW|C63+$0I2iHX#_u@qe7wJX8C(qiEEhrY-ogVR@6D9>)F;pG z!hs5sZLdN01EctV6YtEr(Kht;3ix%fu3H%hEc4G>*OE!t8Go5sW-eY(mXT=5!wL&w zrn@`rU<;(3QZlMbu>>v}ox)5c?TCpJ`~o}JmPc)gjM_N=mJpP18SIFK&|MO4@MB8f$`39mXq4>eh$L)1OJ6MKz=Scy^^&;|0IsJd z>PQcPc}J$5%vnI;M_ChNjZ_NOcDoUKyJ1%%HR?y(JpstGApJ2$kHBs}$~tF2J90Jn zvwS=;hAYq@JdWLJ)G?0fkFk9i1wVXpED+KcV|+cB@l8AKg%beW1Da?{+62~d%oy&+ zU`kM@$H(^Mb}-|fWybzl*j1pc=KxUBHvBUGK|Ai9B0M~US^J|MaTcuYxYvqd$2~|p z?rUwg7iEr>_1yDiu;ZCrlkWFrRA{>}?830C&_@>>ckwXn7zdhYLuMb^AM-&zEYx_<`w8q=&++k=Tyz(^ zf93t@SfbrSsMEy0$ovM-m!?NyC-2Vr3fhn;xn`Pt_apu=aAqKwBjPilsf>B2zd9r= z9(Od<{$P3s@x8@Ll@(U+Cxw**zK0Z6J@9>_Fnh;%@V-zOK@Z~lLt(C{dQT{Q)}jBfr>qpN;Cd!*AvBJTgOiE3f8}8A`REXy?iA zO70tlxhiUZD9kUk+6M}&H#_59VYSm3*9xl>fd2M+1QrX#I8}O{0Myw)VHJ@&59vW3 zlBDy99)U%4kVnjs@t~^=aXse);67!Y3tt|#(BpIAO)w8wkI#h@$`arU`T25Vex3rB zSszFjT5o`4Zip*O9EGev-U$M6Sa3)GHtKIU`riqBIzOK-WHP@E?ChU;)xx}<{(cIq ziO+KifQci{qzmiAeayrWUM~{!Tf_YfAzbcR!i~T##CR2+Ev7TjNA*Rb7+BAbaL*JA z#^4Izd-QnR1>zZCy?!qD{bDn)ULWR(+ku^V+iw9o^Tsa%Yx1M;oiX^wz|OofzuV5d z@6R0ejK1FkKZo&gJ(!372w0DYdG0H~&OG$zz&d^kF`rYgg`IhDAFxwD6L^0<9@t+Q zurqI64$SW(R9H?N=&*d9TeIe^|`@kk1XRWsDtDXa~3rAuRp)}-ag+_CmCS&7V@uvXU9S5?+o z^($7at!cCxE34{i_?+Q%(uxKX;dn$pv>pIYsa7zR3U*sE$!$3*WU3wwVoM)eYPLme zt21QT(M+Pujs9>LQ! literal 0 HcmV?d00001 diff --git a/Box2D/CMakeFiles/CompilerIdC/CMakeCCompilerId.c b/Box2D/CMakeFiles/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000..4da3198a26 --- /dev/null +++ b/Box2D/CMakeFiles/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,217 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + +#elif defined(__WATCOMC__) +# define COMPILER_ID "Watcom" + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + +#elif defined(__IBMC__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# elif __IBMC__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" + +#elif defined(__PATHSCALE__) +# define COMPILER_ID "PathScale" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +/* Analog Devices C++ compiler for Blackfin, TigerSHARC and + SHARC (21000) DSPs */ +# define COMPILER_ID "ADSP" + +/* IAR Systems compiler for embedded systems. + http://www.iar.com + Not supported yet by CMake +#elif defined(__IAR_SYSTEMS_ICC__) +# define COMPILER_ID "IAR" */ + +/* sdcc, the small devices C compiler for embedded systems, + http://sdcc.sourceforge.net */ +#elif defined(SDCC) +# define COMPILER_ID "SDCC" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is becase + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; + (void)argv; + return require; +} +#endif diff --git a/Box2D/CMakeFiles/CompilerIdC/a.out b/Box2D/CMakeFiles/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..779cd3f7717a3830ea3cf9a9662fd750939870f1 GIT binary patch literal 7212 zcmeHMZ)_Y#6`%W)_DW51v7PpyM|7eN)E~TcQYSQ}sBzBc#ED}!wqpoZvR&V;eMjz( zb+;Fs3JIITqLE`YDtw3pqC`l1KtT!u6{J+fm7^v>{b2Zj3LmPV63HbY3c^$om@L2F z%#O2mj0B(Ylitp}dB1rx`{vE=&fBl2x;q1bfY1~aAt9w&IMRm3*3C-OCK4hdo)TNd z6XGE>QP(yB3|MwRrwwQegG1CoZkvQ2+yI$O9c_~(u`f7+j%4;1QKhfjBt+fo;Rrd3 z4lyvtr9Oxv0eu2G@;qcR^&Eq|ANc(ko7@4JtaXQPI2ni!knZ0Hy?^{gAj#~{xj&uH z4L_aFwB&Qe>bOxU89S5?Qt=UrHGw=LnyKJGSJ%(D97b#!yL(Q=l$59c9LLE8S8 zD*!H@T|wTwCcY4dIZ=J#d;;aA7)G7E*@)}g z{|we{26n$!**fzE?bl`lKP1F$oT6I7cfVI&cxM9*1ZtPVL&xT3oX?1vH$O`}?ALC^ z&c}hBnsw@b$u?9Txe{(-n>&AP?yST_ucVf!oZb?Jq3Kj)CLG-KhS>DhY#_BXy`^!j z#@HH-sU=vvPq4juK3^Q{U+Be1lXKUezzyAsFPQgScji(I-kGWK+I;10H#p@wP1`@3 zPDM|5G+{n2Q<#ou3g^dnd5_Uitmn<@nHX^Vr;Uya@w){yfipUc2i$4VPFO zIa|9KcIT%k%jNCz5O&%z)ijp3 zoRLzwFx1UW>or>Cbav<%y|_;69$5Flx(C)hu6!MJQwJaF5uCG zXO}wgxo?CcIJ}4p-g)T^&X#|_=aw#_?P_tXQBN8zR*m6m4rl0GMi`W`RwXNp%&8*msnRJc%}Kjl$(4#L1QWWlohM#Z z#`2CZa>X33jy;a+2n47~8OyPRVQ0;evQ@B!k#Ulzl2Hxb^o{!#mnGF zz{GLiOrYYo$9tt*18W@j*(<ETI0^3&bhLk`~4hnt*C1vj`S_C#$5&O>KZs= zU-RJvatd_P1?>#zI0w=>u(rqN%LR0fOO3kdalh~3Fr2sw+*K%^Ujz3eA1*wF{0@Rb z+aO%mFM2qxoy@l(Sw(+o(zsusf%7AdiHyeofP2e_W5Oa1oVEega(xbU`k3})9uK&A z)VaPS_TfC<1?zE{E4s6WJz|**(l|a}7lGrmRTDAfKY%qZf^K0tgPvC+%)%IA)fl>t6ql&nVJb41A;T|F<9%qNX{E-0BRs`kH< z)oSYZRLJun_p{P-M+&)bmCU!MdJig@Pad@omCUy=;(ob5cP@zg3KS9>S;+S@%aF{x zs(qqldJaCseo!)3Ma8|6`PNnOtz`AYW*jS7MT&lZhP<~r<5KA#Vd_v0l5<)iCziwgiSC@CpeMw9J8Cxu~++xzN~K)J0Z7v{s_V! z2dT&Sv>U*9Uq;D%Bv+Dh7UfwVe)af#=|z|A*NaKW+J6B=^{bHm<9`?O1fEMM5XT$E zPg(JZ_j4I_?oT!af{)AnsP9h%>%~p9`{jF(wZ8+wErK~>?azdWiF(M)+cFaCG2W+n z1K#~mZl>%}0_C%-S?^Os%f5kE(Lct*!b$o_o!6l6W0DCYATWw|o?p4?vQu%YBO^u{DgNX@Z=c!S)jxng z0jAlpLOPK2sWK&VG+!FF@}~T->%+drH0vVh0*zOq5NRWPhGfU*R#8fQQI-c(x#KG7Ec(% M<3j%0k)9I&27#y}@Bjb+ literal 0 HcmV?d00001 diff --git a/Box2D/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Box2D/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000..2d16102299 --- /dev/null +++ b/Box2D/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,203 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + +#elif defined(__WATCOMC__) +# define COMPILER_ID "Watcom" + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + +#elif defined(__IBMCPP__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# elif __IBMCPP__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" + +#elif defined(__PATHSCALE__) +# define COMPILER_ID "PathScale" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +/* Analog Devices C++ compiler for Blackfin, TigerSHARC and + SHARC (21000) DSPs */ +# define COMPILER_ID "ADSP" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is becase + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + (void)argv; + return require; +} diff --git a/Box2D/CMakeFiles/CompilerIdCXX/a.out b/Box2D/CMakeFiles/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..f7c70b1761550cbc2e33f1cf31e06e05d5282124 GIT binary patch literal 7337 zcmeHMZERG>6`fr#WN92Q#!yqNWUH9eQNjxbLkme&oAn1yjO`dhNFDQ7@2>qe-Y@OG zB{qsw+>KjXwpFW*BBV+Q1gTY}G;P(2MxsKF>;{n9$Zh|)`H>Pek&K`zY26g5D{s%4 zdE=}dqNsl>U+M0hGxyHD^JebM&YSnGhL%Q`%Oy0qMUf!7mi2gRAZs@&O^xu0b)rh# zCo05RR8d!R8a7}b8j#nZ&I2w2cLH|~dA#IJz+~!BEg3=xv?Z6pA(`z(iPA5u7h>UM zkC*%~8r6UqmwGpZcLVqpkC!|TOs1YO$QJA^#3t7RleMn>13NT>U^BxWFS!glverKd zJ>aKE`|p6huz$sfMP_>l@klh%^GGzbBN~Zk28?vV*rjyny3{wd9+AHJ9Q27tk!{%r zjve()zyGi_e(^c?%&R}Hczx=Hj~1tX@@MLFA6S;-1xaFD5`B^=b$_H?mH09-%Y)7R z7k>K0U#C!9M(m#^9}4$r07*PpfJ;%{4ZearVKwoy;Bky6<80(aVI0zSDEQDr9E82X zH2Y$SxS6&CDcdxK`S?k*Bit8B+u@Wy8c3(ZX_^cSn8|P|ornjb5qr=)xsz^U$^%M$ z!JwHYs%CxA@!Z@7x1mVf%%sC1c%jM(6bnS+!hh^o-GOGa+So0cTAB~|&0WS$^pd19 z-h~n57;+4J;6MGWA463n#!x0vdje9AQAs3n58J*(CFmCNa4j92^?2`s^iX1wyp$M_ zBcmT2&ffGeO-0wx^yvyA#(t2?=kvpVwAakvi`x13`12at9_zX~o!@gC9`oCC_+^{? zc6zp0ynYSM^4l4~qVD>v#EfLId)KFcX-KO6+wsx&vhUw&@9eN3b(G(0_Kyb)F{qvSF&F z`M$Z-{99}2z?GfxbahWp*bj(_-+YDk@SnX|e$E4j!&7$Y8>~ZN-DOWD>+-W#rzfRN z$>oL|m1CRB;ApJDJK=F}xF9xMnsPPd#x|GVp|T-&bsB9~#(V1M;rTXr8k%0W4IRE& zF`rn>=O-=-JpDwLzYku1Gw&YG+m+QHk2REx)>k54F@y(UM?IDK7k^2s>|3sVi>Y_B zGZkIO&F<;3ipuFp_LcK`j{8*hcHZ7}k)__r>_R>@w>Gxz4<=&CNHm=4!cNews*=%w-J3|ox>~rYIF*4^(CX?Iu5Cq+a^jhO zv+%bQvK&luooeq8uIIgL|lvM__dX zR!3lU1Xf32bp-y;MgV6yc|O*XkH@o<=7UbT!;vQ-i@_G&b#UkxQRf}!HN0E?YcZdg zgXG!inQ!AA05S*s1<14DyTLr0Z3dHg&Rf7im+xmhhw+_{uh?G%x5Gcn2O;@B#lt<{ zn<;TrOL$R_J}21r7Gw_bQ2d{X@65W<>+pFA{5DwEP2%~^gWmu*`ThHSRY!U%44BZR!cp3*LNaO#BNC6`*A5Thw-*4aL?~bf zgb}vP-c%qKHmwj^Y9x%Hok*n-PKjrOP{L&(76~F;0&ehQNZ-m&Pa4)Zp~u2;TaVc1 zOT2l={Nmindl4iX=T;MQk90ryE->xn{RI?0lr{0)np6$eb|c8Q5!h8qjr!4c2LYLz z^v8VV`{lzZGfzphBiDmJc5;jPJm>gZY1axn<~02=&vURlfinAoqV&alKMH29(~j%n z85GW$LAe^-3aXDJDp>x?S52XC-1#r$Gu0B zw)+(-7?=L$;BW3T{9SVF(0z4Jhx@vv4Fq-C-){@-ctMc+47=YI*zqF3gG({(1FEI+ zA5i98Fs{7+gWWvJ%mWhJupjS$`5d(4-OQ~!_@nJ#3hcNqFTjp@pounQ#?bzXaraP+ ziMrGHeF!_oXI$QZ_+Uq@iM~kx1k<0+CEDFjg+tVl`F}uPn*6Yn_aaUOZAg@yGfm}N z@PC3}yje29jEkl+=L`K=xP+)HXsG?c^i#xri=D+k<%6jl+q-zcn}n)`~v zNGcHb4~03SYM)S8&8Gf;D{@AV>t5-(a@G1)nE$rw|5IV^P-?v@%pC=5YN&c^XjX1cg;bGVc`LN+I)0VN7BH6^U&!A9R&Re3a)1@Mem2F8uSbh3=mVnOp^| z`{%-GWe;!(?g$}}SL?+Skn%@Tde*vtC{;mLUy|T{bE*I|-JN|`xllc1z>_&(5c)Q$N#NEJpJbhxT z*aFP^QD$Z-;ynP&{TWc=9l)A=C_J_Tw*zzk<#_P!`zc_ZPo>DG?gD#e%PHXT0{c;5 z-JcTl=Oy40XTCSOw~F&@?>z5DcbWJ(Ft2hs5A5$0Fz-ZF{H@|`V0ncLeF?_v9pH)r z{rkYYSk?Cb0IqW4(f;2n+AjiMSsD*~8^Ds^@61oBd%f5T%sXZN_pm>Y0`vb85E$7P zOxbBW)7xtVaXs(vZ0j&vnh$sKGk{sY3_b2IP=yj^Uo_DZh???zW(G0?g14j5upJH= zU){N@T2Ns|LIXs*g*xJeGO^g8j?>UuFT*r;)E#OtHDVZD{v?V#49Y0}LxKJZ?I&M3%$46pmc{b~-CHyonaFr0=eU8i%kvG~em7PHk<$M;VOQ c-mmR7`ogxE44Sr;iT4{l144egkwYo|3kqkC`Tzg` literal 0 HcmV?d00001 diff --git a/Box2D/CMakeFiles/Makefile2 b/Box2D/CMakeFiles/Makefile2 new file mode 100644 index 0000000000..22bd649c3b --- /dev/null +++ b/Box2D/CMakeFiles/Makefile2 @@ -0,0 +1,61 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# The main recursive all target +all: +.PHONY : all + +# The main recursive preinstall target +preinstall: +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canoncical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/laschweinski/git/cocos2d-x/Box2D + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/laschweinski/git/cocos2d-x/Box2D + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Box2D/CMakeFiles/TargetDirectories.txt b/Box2D/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/Box2D/CMakeFiles/cmake.check_cache b/Box2D/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000..3dccd73172 --- /dev/null +++ b/Box2D/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/Box2D/CMakeFiles/progress.marks b/Box2D/CMakeFiles/progress.marks new file mode 100644 index 0000000000..573541ac97 --- /dev/null +++ b/Box2D/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Box2D/CMakeLists.txt b/Box2D/CMakeLists.txt new file mode 100644 index 0000000000..e0122b1b56 --- /dev/null +++ b/Box2D/CMakeLists.txt @@ -0,0 +1,178 @@ +cmake_minimum_required(VERSION 2.8) +set(BOX2D_Collision_SRCS + Collision/b2BroadPhase.cpp + Collision/b2CollideCircle.cpp + Collision/b2CollidePolygon.cpp + Collision/b2Collision.cpp + Collision/b2Distance.cpp + Collision/b2DynamicTree.cpp + Collision/b2TimeOfImpact.cpp +) +set(BOX2D_Collision_HDRS + Collision/b2BroadPhase.h + Collision/b2Collision.h + Collision/b2Distance.h + Collision/b2DynamicTree.h + Collision/b2TimeOfImpact.h +) +set(BOX2D_Shapes_SRCS + Collision/Shapes/b2CircleShape.cpp + Collision/Shapes/b2PolygonShape.cpp +) +set(BOX2D_Shapes_HDRS + Collision/Shapes/b2CircleShape.h + Collision/Shapes/b2PolygonShape.h + Collision/Shapes/b2Shape.h +) +set(BOX2D_Common_SRCS + Common/b2BlockAllocator.cpp + Common/b2Math.cpp + Common/b2Settings.cpp + Common/b2StackAllocator.cpp +) +set(BOX2D_Common_HDRS + Common/b2BlockAllocator.h + Common/b2Math.h + Common/b2Settings.h + Common/b2StackAllocator.h +) +set(BOX2D_Dynamics_SRCS + Dynamics/b2Body.cpp + Dynamics/b2ContactManager.cpp + Dynamics/b2Fixture.cpp + Dynamics/b2Island.cpp + Dynamics/b2World.cpp + Dynamics/b2WorldCallbacks.cpp +) +set(BOX2D_Dynamics_HDRS + Dynamics/b2Body.h + Dynamics/b2ContactManager.h + Dynamics/b2Fixture.h + Dynamics/b2Island.h + Dynamics/b2TimeStep.h + Dynamics/b2World.h + Dynamics/b2WorldCallbacks.h +) +set(BOX2D_Contacts_SRCS + Dynamics/Contacts/b2CircleContact.cpp + Dynamics/Contacts/b2Contact.cpp + Dynamics/Contacts/b2ContactSolver.cpp + Dynamics/Contacts/b2PolygonAndCircleContact.cpp + Dynamics/Contacts/b2PolygonContact.cpp + Dynamics/Contacts/b2TOISolver.cpp +) +set(BOX2D_Contacts_HDRS + Dynamics/Contacts/b2CircleContact.h + Dynamics/Contacts/b2Contact.h + Dynamics/Contacts/b2ContactSolver.h + Dynamics/Contacts/b2PolygonAndCircleContact.h + Dynamics/Contacts/b2PolygonContact.h + Dynamics/Contacts/b2TOISolver.h +) +set(BOX2D_Joints_SRCS + Dynamics/Joints/b2DistanceJoint.cpp + Dynamics/Joints/b2FrictionJoint.cpp + Dynamics/Joints/b2GearJoint.cpp + Dynamics/Joints/b2Joint.cpp + Dynamics/Joints/b2LineJoint.cpp + Dynamics/Joints/b2MouseJoint.cpp + Dynamics/Joints/b2PrismaticJoint.cpp + Dynamics/Joints/b2PulleyJoint.cpp + Dynamics/Joints/b2RevoluteJoint.cpp + Dynamics/Joints/b2WeldJoint.cpp +) +set(BOX2D_Joints_HDRS + Dynamics/Joints/b2DistanceJoint.h + Dynamics/Joints/b2FrictionJoint.h + Dynamics/Joints/b2GearJoint.h + Dynamics/Joints/b2Joint.h + Dynamics/Joints/b2LineJoint.h + Dynamics/Joints/b2MouseJoint.h + Dynamics/Joints/b2PrismaticJoint.h + Dynamics/Joints/b2PulleyJoint.h + Dynamics/Joints/b2RevoluteJoint.h + Dynamics/Joints/b2WeldJoint.h +) +set(BOX2D_General_HDRS + Box2D.h +) +include_directories( ../ ) + +if(BOX2D_BUILD_SHARED) + add_library(Box2D_shared SHARED + ${BOX2D_General_HDRS} + ${BOX2D_Joints_SRCS} + ${BOX2D_Joints_HDRS} + ${BOX2D_Contacts_SRCS} + ${BOX2D_Contacts_HDRS} + ${BOX2D_Dynamics_SRCS} + ${BOX2D_Dynamics_HDRS} + ${BOX2D_Common_SRCS} + ${BOX2D_Common_HDRS} + ${BOX2D_Shapes_SRCS} + ${BOX2D_Shapes_HDRS} + ${BOX2D_Collision_SRCS} + ${BOX2D_Collision_HDRS} + ) + set_target_properties(Box2D_shared PROPERTIES + OUTPUT_NAME "Box2D" + CLEAN_DIRECT_OUTPUT 1 + VERSION ${BOX2D_VERSION} + ) +endif() + +if(BOX2D_BUILD_STATIC) + add_library(Box2D STATIC + ${BOX2D_General_HDRS} + ${BOX2D_Joints_SRCS} + ${BOX2D_Joints_HDRS} + ${BOX2D_Contacts_SRCS} + ${BOX2D_Contacts_HDRS} + ${BOX2D_Dynamics_SRCS} + ${BOX2D_Dynamics_HDRS} + ${BOX2D_Common_SRCS} + ${BOX2D_Common_HDRS} + ${BOX2D_Shapes_SRCS} + ${BOX2D_Shapes_HDRS} + ${BOX2D_Collision_SRCS} + ${BOX2D_Collision_HDRS} + ) + set_target_properties(Box2D PROPERTIES + CLEAN_DIRECT_OUTPUT 1 + VERSION ${BOX2D_VERSION} + ) +endif() + +if(MSVC) + # These are used to create visual studio folders. + source_group(Collision FILES ${BOX2D_Collision_SRCS} ${BOX2D_Collision_HDRS}) + source_group(Collision\\Shapes FILES ${BOX2D_Shapes_SRCS} ${BOX2D_Shapes_HDRS}) + source_group(Common FILES ${BOX2D_Common_SRCS} ${BOX2D_Common_HDRS}) + source_group(Dynamics FILES ${BOX2D_Dynamics_SRCS} ${BOX2D_Dynamics_HDRS}) + source_group(Dynamics\\Contacts FILES ${BOX2D_Contacts_SRCS} ${BOX2D_Contacts_HDRS}) + source_group(Dynamics\\Joints FILES ${BOX2D_Joints_SRCS} ${BOX2D_Joints_HDRS}) + source_group(Include FILES ${BOX2D_General_HDRS}) +endif() + +if(BOX2D_INSTALL) + # install headers + install(FILES ${BOX2D_General_HDRS} DESTINATION include/Box2D) + install(FILES ${BOX2D_Collision_HDRS} DESTINATION include/Box2D/Collision) + install(FILES ${BOX2D_Shapes_HDRS} DESTINATION include/Box2D/Collision/Shapes) + install(FILES ${BOX2D_Common_HDRS} DESTINATION include/Box2D/Common) + install(FILES ${BOX2D_Dynamics_HDRS} DESTINATION include/Box2D/Dynamics) + install(FILES ${BOX2D_Contacts_HDRS} DESTINATION include/Box2D/Dynamics/Contacts) + install(FILES ${BOX2D_Joints_HDRS} DESTINATION include/Box2D/Dynamics/Joints) + + # install libraries + if(BOX2D_BUILD_SHARED) + install(TARGETS Box2D_shared EXPORT Box2D-targets DESTINATION lib) + endif() + if(BOX2D_BUILD_STATIC) + install(TARGETS Box2D EXPORT Box2D-targets DESTINATION lib) + endif() + + # install build system hooks for third-party apps + install(EXPORT Box2D-targets DESTINATION lib/Box2D) + install(FILES Box2DConfig.cmake DESTINATION lib/Box2D) +endif(BOX2D_INSTALL) diff --git a/CocosDenshion/third_party/fmod/documentation/FMOD Event System - Best Practices For Programmers.pdf.REMOVED.git-id b/CocosDenshion/third_party/fmod/documentation/FMOD Event System - Best Practices For Programmers.pdf.REMOVED.git-id new file mode 100644 index 0000000000..42232caeda --- /dev/null +++ b/CocosDenshion/third_party/fmod/documentation/FMOD Event System - Best Practices For Programmers.pdf.REMOVED.git-id @@ -0,0 +1 @@ +fe25757fdb0cc2e48002bf130522902794158965 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/documentation/Getting started with FMOD for Linux.pdf.REMOVED.git-id b/CocosDenshion/third_party/fmod/documentation/Getting started with FMOD for Linux.pdf.REMOVED.git-id new file mode 100644 index 0000000000..5b79271982 --- /dev/null +++ b/CocosDenshion/third_party/fmod/documentation/Getting started with FMOD for Linux.pdf.REMOVED.git-id @@ -0,0 +1 @@ +2b6d571d132326e599c4790cc0a24aaaa940f721 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/documentation/LICENSE.TXT b/CocosDenshion/third_party/fmod/documentation/LICENSE.TXT new file mode 100644 index 0000000000..c5656560bd --- /dev/null +++ b/CocosDenshion/third_party/fmod/documentation/LICENSE.TXT @@ -0,0 +1,85 @@ +FMOD Ex SoundSystem Copyright © 2005-2011 Firelight Technologies Pty, Ltd. + +FMOD NON-COMMERCIAL LICENSE +------------------------------------ +IF YOUR PRODUCT IS NOT INTENDED FOR COMMERCIAL GAIN AND DOES NOT +INCLUDE THE FMOD LIBRARY FOR RESALE, LICENSE OR OTHER COMMERCIAL +DISTRIBUTION, THEN USE OF FMOD IS FREE OF CHARGE. THERE ARE NO +LICENSE FEES FOR NON-COMMERCIAL APPLICATIONS. + +CONDITIONS/LIMITATIONS: +- WHEN USING THIS LICENSE, THE FMOD LIBRARY CANNOT BE USED FOR + RESALE OR OTHER COMMERCIAL DISTRIBUTION +- THIS LICENSE CANNOT BE USED FOR PRODUCTS WHICH DO NOT MAKE + PROFIT BUT ARE STILL COMMERCIALLY RELEASED +- THIS LICENSE CANNOT BE USED FOR COMMERCIAL SERVICES, WHERE THE + EXECUTABLE CONTAINING FMOD IS NOT SOLD, BUT THE DATA IS. +- WHEN USING FMOD, A CREDIT LINE IS REQUIRED IN EITHER DOCUMENTATION, + OR 'ON SCREEN' FORMAT (IF POSSIBLE). IT SHOULD CONTAIN AT LEAST + THE WORDS FMOD SOUND SYSTEM AND FIRELIGHT TECHNOLOGIES. + LOGOS ARE AVAILABLE FOR BOX OR MANUAL ART, BUT ARE NOT MANDANTORY. + AN EXAMPLE CREDIT COULD BE: + + FMOD Sound System, copyright © Firelight Technologies Pty, Ltd., 1994-2011. + + NOTE THIS IN ADVANCE, AS IT MUST BE DONE BEFORE SHIPPING YOUR + PRODUCT WITH FMOD. + +Uses Ogg Vorbis codec. BSD license. +------------------------------------ +Copyright (c) 2002, Xiph.org Foundation + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of the Xiph.org Foundation nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION +OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +For Android platform code. +-------------------------- +Copyright (C) 2010 The Android Open Source Project +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED +AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. diff --git a/CocosDenshion/third_party/fmod/documentation/fmod-profiler.pdf.REMOVED.git-id b/CocosDenshion/third_party/fmod/documentation/fmod-profiler.pdf.REMOVED.git-id new file mode 100644 index 0000000000..bbd9ca9f63 --- /dev/null +++ b/CocosDenshion/third_party/fmod/documentation/fmod-profiler.pdf.REMOVED.git-id @@ -0,0 +1 @@ +fe3d4e47687a4bc181a1b3e1d71459b13f8d1ebc \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/documentation/fmodex.chm.REMOVED.git-id b/CocosDenshion/third_party/fmod/documentation/fmodex.chm.REMOVED.git-id new file mode 100644 index 0000000000..2cee46a70a --- /dev/null +++ b/CocosDenshion/third_party/fmod/documentation/fmodex.chm.REMOVED.git-id @@ -0,0 +1 @@ +ea6ff436eda933873fe871fb22523eebdfcccbca \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/documentation/revision.txt.REMOVED.git-id b/CocosDenshion/third_party/fmod/documentation/revision.txt.REMOVED.git-id new file mode 100644 index 0000000000..cc8215e791 --- /dev/null +++ b/CocosDenshion/third_party/fmod/documentation/revision.txt.REMOVED.git-id @@ -0,0 +1 @@ +2e5bd5bfc4d59acfe03fe0d7fd67187dd7281171 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/examples/3d/Makefile b/CocosDenshion/third_party/fmod/examples/3d/Makefile new file mode 100644 index 0000000000..c076990692 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/3d/Makefile @@ -0,0 +1,11 @@ +3d_cpp: main.cpp + g++ -O3 -o 3d main.cpp ../../api/lib/libfmodex.so -pthread + +3d_c: main.c + g++ -O3 -o 3d main.c ../../api/lib/libfmodex.so -pthread + +run: + ./3d + +clean: + rm -f 3d diff --git a/CocosDenshion/third_party/fmod/examples/3d/main.c b/CocosDenshion/third_party/fmod/examples/3d/main.c new file mode 100644 index 0000000000..ec0687e721 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/3d/main.c @@ -0,0 +1,254 @@ +/*=============================================================================================== + 3d Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to basic 3d positioning +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + + +const int INTERFACE_UPDATETIME = 50; // 50ms update for interface + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound1, *sound2, *sound3; + FMOD_CHANNEL *channel1 = 0, *channel2 = 0, *channel3 = 0; + FMOD_RESULT result; + int key; + int listenerflag = TRUE; + FMOD_VECTOR listenerpos = { 0.0f, 0.0f, 0.0f }; + unsigned int version; + + printf("===============================================================\n"); + printf("3d Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===============================================================\n"); + printf("This example plays 2 3D sounds in software. Optionally you can\n"); + printf("play a 2D software sound as well.\n"); + printf("Hardware sounds are not supported on Linux\n"); + printf("===============================================================\n\n"); + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = FMOD_System_Init(system, 10, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + /* + Load some sounds + */ + result = FMOD_System_CreateSound(system, "../media/drumloop.wav", FMOD_SOFTWARE | FMOD_3D, 0, &sound1); + ERRCHECK(result); + result = FMOD_Sound_Set3DMinMaxDistance(sound1, 4.0f, 10000.0f); + ERRCHECK(result); + result = FMOD_Sound_SetMode(sound1, FMOD_LOOP_NORMAL); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/jaguar.wav", FMOD_SOFTWARE | FMOD_3D, 0, &sound2); + ERRCHECK(result); + result = FMOD_Sound_Set3DMinMaxDistance(sound2, 4.0f, 10000.0f); + ERRCHECK(result); + result = FMOD_Sound_SetMode(sound2, FMOD_LOOP_NORMAL); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/swish.wav", FMOD_SOFTWARE | FMOD_2D, 0, &sound3); + ERRCHECK(result); + + /* + Play sounds at certain positions + */ + { + FMOD_VECTOR pos = { -10.0f, -0.0f, 0.0f }; + FMOD_VECTOR vel = { 0.0f, 0.0f, 0.0f }; + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, TRUE, &channel1); + ERRCHECK(result); + result = FMOD_Channel_Set3DAttributes(channel1, &pos, &vel); + ERRCHECK(result); + result = FMOD_Channel_SetPaused(channel1, FALSE); + ERRCHECK(result); + } + + { + FMOD_VECTOR pos = { 15.0f, -0.0f, -0.0f }; + FMOD_VECTOR vel = { 0.0f, 0.0f, 0.0f }; + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound2, TRUE, &channel2); + ERRCHECK(result); + result = FMOD_Channel_Set3DAttributes(channel2, &pos, &vel); + ERRCHECK(result); + result = FMOD_Channel_SetPaused(channel2, FALSE); + ERRCHECK(result); + } + + /* + Display help + */ + { + int numchannels; + + result = FMOD_System_GetHardwareChannels(system, &numchannels); + ERRCHECK(result); + + printf("Hardware channels : %d\n", numchannels); + } + + printf("=========================================================================\n"); + printf("Press 1 Pause/Unpause 16bit 3D sound at any time\n"); + printf(" 2 Pause/Unpause 8bit 3D sound at any time\n"); + printf(" 3 Play 16bit STEREO 2D sound at any time\n"); + printf(" < Move listener left (in still mode)\n"); + printf(" > Move listener right (in still mode)\n"); + printf(" SPACE Stop/Start listener automatic movement\n"); + printf(" ESC Quit\n"); + printf("=========================================================================\n"); + + /* + Main loop + */ + do + { + if (kbhit()) + { + key = getch(); + + if (key == '1') + { + int paused; + FMOD_Channel_GetPaused(channel1, &paused); + FMOD_Channel_SetPaused(channel1, !paused); + } + + if (key == '2') + { + int paused; + FMOD_Channel_GetPaused(channel2, &paused); + FMOD_Channel_SetPaused(channel2, !paused); + } + + if (key == '3') + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound3, FALSE, &channel3); + ERRCHECK(result); + } + + if (key == ' ') + { + listenerflag = !listenerflag; + } + + if (!listenerflag) + { + if (key == '<') + { + listenerpos.x -= 1.0f; + if (listenerpos.x < -35) + { + listenerpos.x = -35; + } + } + if (key == '>') + { + listenerpos.x += 1.0f; + if (listenerpos.x > 30) + { + listenerpos.x = 30; + } + } + } + } + + // ========================================================================================== + // UPDATE THE LISTENER + // ========================================================================================== + { + static float t = 0; + static FMOD_VECTOR lastpos = { 0.0f, 0.0f, 0.0f }; + FMOD_VECTOR forward = { 0.0f, 0.0f, 1.0f }; + FMOD_VECTOR up = { 0.0f, 1.0f, 0.0f }; + FMOD_VECTOR vel; + + if (listenerflag) + { + listenerpos.x = ((float)sin(t * 0.05f) * 33.0f); // left right pingpong + } + + // ********* NOTE ******* READ NEXT COMMENT!!!!! + // vel = how far we moved last FRAME (m/f), then time compensate it to SECONDS (m/s). + vel.x = (listenerpos.x - lastpos.x) * (1000 / INTERFACE_UPDATETIME); + vel.y = (listenerpos.y - lastpos.y) * (1000 / INTERFACE_UPDATETIME); + vel.z = (listenerpos.z - lastpos.z) * (1000 / INTERFACE_UPDATETIME); + + // store pos for next time + lastpos = listenerpos; + + result = FMOD_System_Set3DListenerAttributes(system, 0, &listenerpos, &vel, &forward, &up); + ERRCHECK(result); + + t += (30 * (1.0f / (float)INTERFACE_UPDATETIME)); // t is just a time value .. it increments in 30m/s steps in this example + + // print out a small visual display + { + char s[80]; + + sprintf(s, "|.......................<1>......................<2>....................|"); + + s[(int)(listenerpos.x) + 35] = 'L'; + printf("%s\r", s); + fflush(stdout); + } + } + + FMOD_System_Update(system); + + Sleep(INTERFACE_UPDATETIME - 1); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound1); + ERRCHECK(result); + result = FMOD_Sound_Release(sound2); + ERRCHECK(result); + result = FMOD_Sound_Release(sound3); + ERRCHECK(result); + + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/3d/main.cpp b/CocosDenshion/third_party/fmod/examples/3d/main.cpp new file mode 100644 index 0000000000..f9066e69f2 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/3d/main.cpp @@ -0,0 +1,255 @@ +/*=============================================================================================== + 3d Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to basic 3d positioning +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + + +const int INTERFACE_UPDATETIME = 50; // 50ms update for interface + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound1, *sound2, *sound3; + FMOD::Channel *channel1 = 0, *channel2 = 0, *channel3 = 0; + FMOD_RESULT result; + int key; + bool listenerflag = true; + FMOD_VECTOR listenerpos = { 0.0f, 0.0f, 0.0f }; + unsigned int version; + + printf("===============================================================\n"); + printf("3d Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===============================================================\n\n"); + printf("This example plays 2 3D sounds in software. Optionally you can\n"); + printf("play a 2D software sound as well.\n"); + printf("Hardware sounds are not supported on Linux\n"); + printf("===============================================================\n\n"); + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = system->init(10, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + /* + Load some sounds + */ + + result = system->createSound("../media/drumloop.wav", FMOD_SOFTWARE | FMOD_3D, 0, &sound1); + ERRCHECK(result); + result = sound1->set3DMinMaxDistance(4.0f, 10000.0f); + ERRCHECK(result); + result = sound1->setMode(FMOD_LOOP_NORMAL); + ERRCHECK(result); + + result = system->createSound("../media/jaguar.wav", FMOD_SOFTWARE | FMOD_3D, 0, &sound2); + ERRCHECK(result); + result = sound2->set3DMinMaxDistance(4.0f, 10000.0f); + ERRCHECK(result); + result = sound2->setMode(FMOD_LOOP_NORMAL); + ERRCHECK(result); + + result = system->createSound("../media/swish.wav", FMOD_SOFTWARE | FMOD_2D, 0, &sound3); + ERRCHECK(result); + + /* + Play sounds at certain positions + */ + { + FMOD_VECTOR pos = { -10.0f, -0.0f, 0.0f }; + FMOD_VECTOR vel = { 0.0f, 0.0f, 0.0f }; + + result = system->playSound(FMOD_CHANNEL_FREE, sound1, true, &channel1); + ERRCHECK(result); + result = channel1->set3DAttributes(&pos, &vel); + ERRCHECK(result); + result = channel1->setPaused(false); + ERRCHECK(result); + } + + { + FMOD_VECTOR pos = { 15.0f, -0.0f, -0.0f }; + FMOD_VECTOR vel = { 0.0f, 0.0f, 0.0f }; + + result = system->playSound(FMOD_CHANNEL_FREE, sound2, true, &channel2); + ERRCHECK(result); + result = channel2->set3DAttributes(&pos, &vel); + ERRCHECK(result); + result = channel2->setPaused(false); + ERRCHECK(result); + } + + /* + Display help + */ + { + int numchannels = 0; + + result = system->getHardwareChannels(&numchannels); + ERRCHECK(result); + + printf("Hardware channels : %d\n", numchannels); + } + + printf("=========================================================================\n"); + printf("Press 1 Pause/Unpause 16bit 3D sound at any time\n"); + printf(" 2 Pause/Unpause 8bit 3D sound at any time\n"); + printf(" 3 Play 16bit STEREO 2D sound at any time\n"); + printf(" < Move listener left (in still mode)\n"); + printf(" > Move listener right (in still mode)\n"); + printf(" SPACE Stop/Start listener automatic movement\n"); + printf(" ESC Quit\n"); + printf("=========================================================================\n"); + + /* + Main loop + */ + do + { + if (kbhit()) + { + key = getch(); + + if (key == '1') + { + bool paused; + channel1->getPaused(&paused); + channel1->setPaused(!paused); + } + + if (key == '2') + { + bool paused; + channel2->getPaused(&paused); + channel2->setPaused(!paused); + } + + if (key == '3') + { + result = system->playSound(FMOD_CHANNEL_FREE, sound3, false, &channel3); + ERRCHECK(result); + } + + if (key == ' ') + { + listenerflag = !listenerflag; + } + + if (!listenerflag) + { + if (key == '<') + { + listenerpos.x -= 1.0f; + if (listenerpos.x < -35) + { + listenerpos.x = -35; + } + } + if (key == '>') + { + listenerpos.x += 1.0f; + if (listenerpos.x > 30) + { + listenerpos.x = 30; + } + } + } + } + + // ========================================================================================== + // UPDATE THE LISTENER + // ========================================================================================== + { + static float t = 0; + static FMOD_VECTOR lastpos = { 0.0f, 0.0f, 0.0f }; + FMOD_VECTOR forward = { 0.0f, 0.0f, 1.0f }; + FMOD_VECTOR up = { 0.0f, 1.0f, 0.0f }; + FMOD_VECTOR vel; + + if (listenerflag) + { + listenerpos.x = ((float)sin(t * 0.05f) * 33.0f); // left right pingpong + } + + // ********* NOTE ******* READ NEXT COMMENT!!!!! + // vel = how far we moved last FRAME (m/f), then time compensate it to SECONDS (m/s). + vel.x = (listenerpos.x - lastpos.x) * (1000 / INTERFACE_UPDATETIME); + vel.y = (listenerpos.y - lastpos.y) * (1000 / INTERFACE_UPDATETIME); + vel.z = (listenerpos.z - lastpos.z) * (1000 / INTERFACE_UPDATETIME); + + // store pos for next time + lastpos = listenerpos; + + result = system->set3DListenerAttributes(0, &listenerpos, &vel, &forward, &up); + ERRCHECK(result); + + t += (30 * (1.0f / (float)INTERFACE_UPDATETIME)); // t is just a time value .. it increments in 30m/s steps in this example + + // print out a small visual display + { + char s[80]; + + sprintf(s, "|.......................<1>......................<2>....................|"); + + s[(int)(listenerpos.x) + 35] = 'L'; + printf("%s\r", s); + fflush(stdout); + } + } + + system->update(); + + Sleep(INTERFACE_UPDATETIME - 1); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound1->release(); + ERRCHECK(result); + result = sound2->release(); + ERRCHECK(result); + result = sound3->release(); + ERRCHECK(result); + + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/cdplayer/Makefile b/CocosDenshion/third_party/fmod/examples/cdplayer/Makefile new file mode 100644 index 0000000000..9e935e5bfd --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/cdplayer/Makefile @@ -0,0 +1,11 @@ +cdplayer_cpp: main.cpp + g++ -O3 -o cdplayer main.cpp ../../api/lib/libfmodex.so -pthread + +cdplayer_c: main.c + g++ -O3 -o cdplayer main.c ../../api/lib/libfmodex.so -pthread + +run: + ./cdplayer + +clean: + rm -f cdplayer diff --git a/CocosDenshion/third_party/fmod/examples/cdplayer/cdplayer b/CocosDenshion/third_party/fmod/examples/cdplayer/cdplayer new file mode 100755 index 0000000000000000000000000000000000000000..ec5e6b93b6d7ba6366a04a28966527c0ad31a14c GIT binary patch literal 21193 zcmd6Pe|%NdmG23;;Du6%l<}d`dbFX!#}E>J2}o-~as#PJxaJ1Ls=b`tdy;#|{nh&; zKYZ4KNl-Eo%BSVikL@@WTgP^0oYBrW4E`7!1{Hkuy`p}mk5~D0=!l(A^IF=XrY*1c zeZOm;bMCnpwYD>V%z>4C*4}Hcz4qE`uf6s@_nbctw6#=JRA|mMO{>(11^4>=E0G>- zR3$4lU7M*b)~?bPYBP|pGO&C3OIpsu?<2Dbz*3n&<4+y1+eaX0CmUmnrCJo3eL60>Z=xX{mJpcUwU3 zyslBn2mZ@3W}lslI+$f6?4S3VXCqhJDfQ%B)Dy2iQi*njoih0_;7SipTFUL{dk;qI z;F;|+nMdAi_o>&vcvn;4UnU>D>GkoGpWC*uXNytw(+*f4K}_TgGp38UF1ue*dEk_u4V}zf#7(rHtQWW#xC5 z;Ui`A4*{bl71Hm=IA&~AeKbz_R(Jj}$O z0lyFR$$uU^!1K_59el3B@wc{i8U7n-OL-HkyC;!~nsg^x_%j_VTiQ1_uMQ1mb7o?t zm9%mJYe%rZyku=UZVZJ|`D8Rue?4o2n>ICebOhR3JDLOAf*qmoDplGYByxRI%t$89 zc%Yomsz^MQH3Jv%U!6}!jhweY@vC3eYvwxgiBP^<_-6w_OOy7M#NnoliF)PD)Gv=n zekg||5eVKC*%4g6T*=)TXzU7vHgBQetsO0!MPOTcmygqdwP-$QQhLMjF z7rKbergbw~h+4@ohZJ1X87rCV2}fdmK+txikN4po!-{KJj8`P53B8t!K!Zjum(lXs zxM`-50r@2(45qk`fCE~F6w-x+VI`3h88pH$&_UXb2@^Mv*PYEOB4j0_TGO^|jT>6S z^|dRsjcu(Pn!?L#SGsp~?%fJcE@^ocT`io1efcB;P=8gHPsKxms1@CZm0$f+cU(t_ z9|A+h7CPY7$NI3u&d?sRSyzDXG~BbC*L=&u@;F_4)Xu9C+@~F~@!aJWmi9_*+{Uw4 z5uc{L1f198_k8{t5Qn~S`p1!h^b+_oA5+NTXA0WcOhH%06oSrYiXdbGQ+T>2*&mk9~Yb>8M~kOo~uPhwZI>&*%LJ@T7r!*5osJ(>O3UWq}6$1A=;lEVDmEEe*$Co>Z-Oecei;pcp} z-Enkp?i1SHXSh|My$(+hU#D2{o>u% zKHJ;V)3cxKMvuSq)6wHcrmi~j>uF2=d9Uw_72`{eRD5^$E2A&xUmrbr+h^}MDs-y7 zW6jn6ama&ITo+nn!xQ_UfESOdp6vY&vlRVU0Mg~By?AtZD*V)Oghd0FjLqMD@M)ia zw5xjdD7cZ+|3(2g!P{Vd{l7v1_q4EyL2%u__X*5W@T-4i^o?7#VvhR3bPRnR4NTr0 zITkp_()xn*Xm7tZc89;O?P=fo%KM%^0EW_C9r^Fu&x$+F4Iitx;q#OE@v$xEo-Bal z=!ql0zUrM{9r?EfP}|rYlYNc8=PF0OLY~*{;@`fuulUwi96xf}Kl9|w6Q8;Dw$Fw! zK>hCcxboJFecnHI3FSR?cd~w51ReeS>Ct1y0%s_@(%RS^r~eSS&xqWoDEAqWdkmaC zqMsUVgPywBL89H`b9cXp?jid;_@ht0u_8q~Dv;uv zpg=Y$KB=wtX>;#+6^o%wh?coEr=B63k`66M6YK3JdK3e;Ofu3@UphKKe4-T2Fn@*X7=6#)o544+;nF+g*a{V zdJ2?#AE^Rvdybr);UQVS8#@Wkb47+Rsmp?DfHvb{s=qgElc zA5@NMK5R={i&~Iy4Qgrh<72B1!Y}WBd+x}c81W}{WY>@Hy{o$I!Y}_C{imnd+g05* z+=l6cX(OHodAQ{gSA{hN4S5?Ei-kZw$1{IgTE2U5?4#1sYja0}Fw?S@nw=)V416hK z$rRuiI1GRFjwpWL5ZFAl6VlT*qR1Sc(m}U=?#N^4%J5Wj?#N}h@hIUj5CNsiFmfa3 zl?LY^p}=I55H{7hO;{6~ho?TYKliB*yaerf8|G#&L2rSNtbfqqT=IwfcFSz0AEd)m z)w!8yW;&Y5f7LF;fYRh#JF~^wYSVw1OEu`{?(V@5gZCteZQis8w;tN~`dg}vVx8rv zv-6p1_E$T64@@*aA1KAs4u6^G^uzm*fZyW7wB)C0wC_ADjXX>1{0@x~ZTLo23Wnm@ zY<+URPa@JlwllHb1QTZeOKJ9eJNsE=*N=}Kkk!Xr@kd;X=I;IwJmRkBxIkg`8l7aU zG*Vp!lw%1S0+DuXI_C=qXX2X_8YSZlq3qDk^w$fja{Yyn_W|@b$*Q*gXbESVumD4UWcRJ&ESMPig*37LXV3o456_O0M)eDH zvn#N`)A(5DlqY%!qR!cWg@H`0wgvQg%x}5k=)2mJ_c7+#F6N7kf)%9*dO?N zQVqXQvG%u_9}YjaP(rM+h1J*^puNxp*cEmi{q8DqpFK7V^}`@?)5fHi;K7d42*GRO zIuH*(HygVU*;lYW_RA0PInMA@A@`A|dDpXl_)TBo#8@S=^5=(T)1un)?5%G{dlRRi zfm^YUCi{20;P5d_)3hzgzGP}3shgQhDpMh`Ji3m5W`T_y zR_a>tFNz}^`9Y!JW>*^T&?T3 zrt-RxG4*_w+A)%PDjwDQ)v2eR>d|=$D;5D^yJA*WPiIoS86zQjg1A{JoTbhBp!z}U z$^?>xRMNxfS(ZQ_sbWoE}Xey>!fYrnw94REXvZdm(Y4UOe+_I*>!Yrr?SYVD5WYRa&hCq}}n-Qyr zT7++~BAk7=Fnf)B)JmxV&r&62#8x%}QqVOuFKgb~Y}d}}118k%Ok0*mK?$=ovt}{} z8O!<5U#T{gC&*>^Sb{@JO-FE)jlqbhr#p(St3+zMNRMG?yG=6*%jZ!$8PF$U&ZHoD zM(JA^H0rll$ra1>rp@gjj-!PVw?rkgNEs&iIEuZ~)G;=Oelz`WYZ4C{dW;A24HD;>J?!XampE;)<+Yvk~p!C!|FL(@rWTlByu&kH|j0mmCrySddM`P z)9!pPom@IkSD4Wgv}G%a+k`<=RrNwaG=-;M%6i4?itlo>(y46L>W&Y=E=4y`=ujkX zMbJPR4+M;41QO_*GZ<}WIw^kW3=9@iAeGV+Msf)A$jW6=%}ncyMHozuq+Y*#jaV|y zvLQ>0NM|o+y56WWlNG^Y2;N)V15ftxT(=nHxxD`t$)z3$d1gObU8c zokowz?p^y^ZrX0Uu8q6;a+QRqh8PhH0@s&!i3SEjWol^3^%IU}vZmRmyP9$ON|Djc zgoOuF;yHU{z_2u1`Gj~vC{FpjEL=Ve41#ivFOH_BwS(G_$zkq*4MRlb&loR=Ug3`d z@K*G+teVG41g8Z;^Z-PWm|LajJXElOr+`ViPUX!P=P*?CDDZXg?l;;tyCpebU@}J) zcOw#ETqF^S^0!-(*?c;k%D5!xhjNatNg~9N=tRuQ^~<%&AVf)MHWFKkv6OjSBvu{) zzMb67c-9<%vr-O`gX&r?I*Jt|19!s+NLF?u4{f4*U@f}O=x7Ndb;B}Ex zODRESGm-gc_n1R-adWT*yKh-DgTUkB08Rz0Mc<~@syor0ND47tB!^ML)V6h~rkJy0 zicvSIIVdZ*H~>Toa5hoh=z)vX)pPfC>*$4rzI6RVJF-AS0IqA&jPn1=2jUT{otv>^ z#mz~5TX$+uU$MHbMv0R!;me?=XjEe2G@l-eY9zc$w<~JK7o~;+Uh|JEE1xBRr8h!8IlHQG< z96)ll&`X$)bsvT$75PID4x-rhP%@HE;c+=kO$Uze z%g>?vUHqJOz5J+FgzNYn4nif!g7DmRiZLS-9iUCv{svBf0eNv@P(h)-v8l0{+D9)K zo6=-e|6o$tR8LNLpy#((7MBUPFYnj3cu=Ptu)Q$ummXj#nuU1`6+w8_+(tXT}rQO^~ zF~YH>l**3lz)=S_3s!>B2NrpWs*5~|q;%yf-h*blO^Jy;LWvnHD+@BQWYWnns*qqk zAnI{91{BE-)737jM(;*MB@wdST`q4!TyGFFs(@Zma?v*8!kD3@*cYZ*L@kP<6y(w8 zt2X6#W^B(j2W7Y2@>4L5Vxw$7Im*}y=dg5ON+{!w@Xp?hs9j49V=Wkw(vG`N;Cx1H z?mi$BWwvX1J)PR>B`oYM*nNZsgE8zcV6V!Sl)Pp#pOAPOG-PD-V~b(^?vYjrd0EW|zSOZ}{W32%UlWd%mXht&a3gS@3lbVAO8BVa^X`>tz(s{~s ztI?y`w2BhcxlIN}&;2>qFV1b(Few4+t1e-vu)c6elzhTi;_u=VwU0Ywp#foYTgcty z=nSfi$OfLYE^@mR}zw`LPhA-c^;sN}-=oa|15-dv4@Vs3F(9!zlw>)kRW_!qL$wDRP~&dzqdW_+ z>omD^)6lU^kh5R!`BTW%k2B`fjLfRez}7(LhH$VGK~-m0Yampzgy2V$wR*c}_w6`% zh)GXdjGJA?j-9F9X$Csabjzv=)#LnImPXmx^C(SXAdkyd8*X}N9b;B<*i@qr;q=zF z5}DY=6O&YuJA({ISNUo3MXb`1hYi4BMK$W+N|7NB1u>jJkCm|(>kw7|H0wyklTA6y zkTnC2B0}5enGsf0C#p6rM8>LJwJonfefWRO0XMKKDYunI6SL3emHpbPfLILabvQ~K z3*nF$6A4FC;OL&-IPBO%FFATEXI!ZW7Ko&MfIv%g_AJl=W*)|kGnC6GxW8$~bCfo&gqG$jE?opO>7tGah2%~ilk%VB#<#8|b?27MMPb#4&l*c_C zk#)?7XO%iI9J1VDoN-%>JS3>`Do5Hj+~E;RlPw*eN~o^WGGO63y5)SD>pL{ZE_%$O z%)jIeo(J(HnPUS9#97fWpec9^#>(*LAfxkUKa}>=@7ZxCAx;&C-6#=1ES*s&Mou6K z{z*(bXaO?=R>)?sh+|3Oyijg}^||xnQIop}q5JmU)wBMfgCTplYLTNv$Q8oQ5F1)_ z+jax=`Wzr}{1zW`(TJ!f?oZrtMfufg5R0b(SBw2nQv002KEQP>$Z@W8RMeA$L#}3? zRu>O)l~Jno!eNGRC{Ho$RmF}zkRvV~t*Sjew1r={t5aEwxh#ER-5lbGnW4Fg(R0~= z-8%jdjk&(nKFtMVM@02fgXi#y<*i*5L}vF0mb1Y@7pbWxyGe zhs1CxHJJIuLryzPyLJZ;OQ_Imp?Z#&D>;3PZ3OOm$Rm49I}6V}apov{W_!=0WOS6u zxdLgn20FUJe1&3jN87DxarElLU2Et!FaWd<=@P9lmvS7A9IE5loh)m#QTrUdq_d7O zT-$C8Vrd3hB73cjY7AB(MkcF~BU5WvxTUeRExfrS+}^k?)PN+`WM)@>M3_mX0P!Po3b90(;!(Z}z4yJ)gKWKB}Qh~)q4z*n?=9J5dZ%|bB z*$n58#8sue+qk8*`CWRamHAW1Y@f*$_if^Y7>RM~vkCSLyHDifISUe^Z)rXyMi|Rs z5JfsXR29kyVk2p$@T$iUCnJWUc#7K&2O6=1Kxd{FgD823)D5RRgt?^lvT)}(v*hC) zKEnh%M>N%!;#esvj2GT-d5sf1#m9|dt`L4mKQi*3Blk$zJ_0e z_`c@zHvoZ&k9vR$fCc}6b^w!r^@q?ez!aeRAHffB0^mOk z`2bGi4Unvw$AU*hMp}^m%EdcPUxHH(PRovyDA#eCyIos#kQ?U^FI$%F|-hfnVoa5iH zd)kMmZyfgBQ>p4UAp3EY%g@7{a^#Wk?SSV{wh5_Q7q{d~*``qT2vU|clW*tn^m}~w zR!zB|SHAJ{2>0X%^{>?8guUO z-~*2+v|9L0vlj2;Eky`!W4+0IE!XMjQY)&}5`%+{X|>UzB>1TmF9u499o>~6VU%J2 zPkMEej_0&mt{GY_UJb-wd1tdWli~`Y)ta$z4+HUVEQ*>Arq#-`7Bt64E?Vu52nxZ{ zNLUdxmjWC7sTJOe58g9GB}CO&QXDP)?v(Gl({5=W^4$d>v>)eU8Ly86@aBQg$@dXZ zpaXX<`5hmSdVoW>2e!TkbmE6>LWgb>aN0lH<(zmFbZY>d3%p22Xa?X%&0@ctGn{A4 zE2rZdbeuQj$GOD!!qY$~3)l)T&W)`A&L`4w?%fX|IOm*;w7fnGaOMr?Od9VTvJIzQ z)+h7KcJ|OA!7xAeV}d8=DqwT+BEG)bP)FC@N;l)O20+C(r%UhN#Uwx`XPm@7U*vj z&ek=JensJ`LHZAcb3~P&P`DaRXAP|sjjDOC%GnFG7Au@9x+ZJ1!s(&Zd{sCj1Wn_- zRJfXOoPP?R!^HjGL#2H21?^!zsd6flRlMWq!}l?$0nSsBRX{%0 zaOA5%q_Y^fBVPp~BK)>n+iB}(nl?wf3Ant$inIc?KZBI-xpHKQ$B>@((3iK*rSgoY z{awH}J?qFbPx}IJZ~K1+e7miGw*PJ5&c*&b1%xkAR3l~iain}5gFcP&oIuL=Q+Gm; z3RwORhz5Lgc@y4F7Z)etQ|- z58V5Gm)&LM-vF*dAKbgmn>I)LtFrQ60Ix#-r5yb)0C&c(3gb5$iro1HpPzd$>Srkx zYhRSN1vuXVXV#_D=4&C~e3hK@g7lFx`aJNRXm68UzK^(VZ~T7ESIg)RmEqqj!_SxD zb6`m1$LvdC|5qs&3ykt;+H&9*JndayR^C>Ir^@hqfqUiM2i*HToX5)OzXSXVd;U`Y z-v`cj?73&9eqLjJ+aL3LJ6a@z-%#T5el5TF(bToMGu+l1>cTfm!r|r;?9)x2qG&4I z8&7o`@vy}2VIx1NsY5e9p})RvdA-JhuoWF7wn9@|fM`CE7;@SPbTmsdEuD?+fv|(I z8Rx#(ifk676@H1NHj+-``zvj0auFOR;w=(>fv0UnDr0F)pcsNeab&<}H+jeC(zquVh5u^?O3@*K)k|)R%O;InI}fY~6dmeN^`4 z9=l0L8>QcAQYKzLlK+8kSgnz9&E^yMvQoIjmg`qxhNi<(E-!?Y4ST71dOmZde1$V_ z<-8AR6`?-5)OIsJj@qA6F>Rmtf<&fAWQT%|I^EIW5KMd8-;Q6Ey ion1+jVQcl8)wTFwQ#c(7=VJL}Uv2lGrasps+W-HZ=Gx)_ literal 0 HcmV?d00001 diff --git a/CocosDenshion/third_party/fmod/examples/cdplayer/main.c b/CocosDenshion/third_party/fmod/examples/cdplayer/main.c new file mode 100644 index 0000000000..0c3eea349b --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/cdplayer/main.c @@ -0,0 +1,236 @@ +/*=============================================================================================== + CDPlayer Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to play CD tracks digitally and generate a CDDB query +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +int cddb_sum(int n) +{ + int ret = 0; + + while (n > 0) + { + ret += (n % 10); + n /= 10; + } + + return ret; +} + +unsigned long cddb_discid(FMOD_CDTOC *toc) +{ + int i, t, n = 0; + + for (i = 0; i < toc->numtracks; i++) + { + n += cddb_sum((toc->min[i] * 60) + toc->sec[i]); + } + + t = ((toc->min[toc->numtracks] * 60) + toc->sec[toc->numtracks]) - ((toc->min[0] * 60) + toc->sec[0]); + + return ((n % 0xff) << 24 | t << 8 | toc->numtracks); +} + +void dump_cddb_query(FMOD_CDTOC *toc) +{ + int i; + + printf("cddb query %08x %d", cddb_discid(toc), toc->numtracks); + + for (i = 0; i < toc->numtracks; i++) + { + printf(" %d", (toc->min[i] * (60 * 75)) + (toc->sec[i] * 75) + toc->frame[i]); + } + + printf(" %d\n", (toc->min[toc->numtracks] * 60) + toc->sec[toc->numtracks]); +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *cdsound; + FMOD_SOUND *sound; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int key, numtracks, currenttrack = 0; + unsigned int version; + + if (argc < 2) + { + printf("Usage: cdplayer \n"); + printf("Example: cdplayer /dev/cdrom\n"); + exit(-1); + } + + printf("==================================================================\n"); + printf("CDPlayer Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==================================================================\n\n"); + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 1, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + /* + Bump up the file buffer size a bit from the 16k default for CDDA, because it is a slower medium. + */ + result = FMOD_System_SetStreamBufferSize(system, 64*1024, FMOD_TIMEUNIT_RAWBYTES); + ERRCHECK(result); + + result = FMOD_System_CreateStream(system, argv[1], FMOD_OPENONLY, 0, &cdsound); + ERRCHECK(result); + result = FMOD_Sound_GetNumSubSounds(cdsound, &numtracks); + ERRCHECK(result); + result = FMOD_Sound_GetSubSound(cdsound, currenttrack, &sound); + ERRCHECK(result); + + for (;;) + { + FMOD_TAG tag; + + if (FMOD_Sound_GetTag(cdsound, 0, -1, &tag) != FMOD_OK) + { + break; + } + if (tag.datatype == FMOD_TAGDATATYPE_CDTOC) + { + dump_cddb_query((FMOD_CDTOC *)tag.data); + } + } + + printf("\n========================================\n"); + printf("Press SPACE to pause\n"); + printf(" n to skip to next track\n"); + printf(" ESC to exit\n"); + printf("========================================\n\n"); + + /* + Print out length of entire CD. Did you know you can also play 'cdsound' and it will play the whole CD without gaps? + */ + { + unsigned int lenms; + + result = FMOD_Sound_GetLength(cdsound, &lenms, FMOD_TIMEUNIT_MS); + ERRCHECK(result); + + printf("Total CD length %02d:%02d\n\n", lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100); + } + + /* + Play a CD track + */ + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, FALSE, &channel); + ERRCHECK(result); + + /* + Main loop + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + int paused; + FMOD_Channel_GetPaused(channel, &paused); + FMOD_Channel_SetPaused(channel, !paused); + break; + } + + case 'n' : + { + currenttrack++; + if (currenttrack >= numtracks) + { + currenttrack = 0; + } + result = FMOD_Sound_GetSubSound(cdsound, currenttrack, &sound); + ERRCHECK(result); + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, FALSE, &channel); + ERRCHECK(result); + break; + } + } + } + + FMOD_System_Update(system); + + if (channel) + { + unsigned int ms, lenms, percent = 0; + FMOD_BOOL playing; + FMOD_BOOL paused; + + result = FMOD_Channel_GetPaused(channel, &paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + result = FMOD_Channel_IsPlaying(channel, &playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + result = FMOD_Sound_GetLength(sound, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + printf("Track %d/%d : %02d:%02d:%02d/%02d:%02d:%02d : %s\r", currenttrack + 1, numtracks, ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/cdplayer/main.cpp b/CocosDenshion/third_party/fmod/examples/cdplayer/main.cpp new file mode 100644 index 0000000000..08eec0cd65 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/cdplayer/main.cpp @@ -0,0 +1,238 @@ +/*=============================================================================================== + CDPlayer Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to play CD tracks digitally and generate a CDDB query +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +int cddb_sum(int n) +{ + int ret = 0; + + while (n > 0) + { + ret += (n % 10); + n /= 10; + } + + return ret; +} + +unsigned long cddb_discid(FMOD_CDTOC *toc) +{ + int i, t, n = 0; + + for (i = 0; i < toc->numtracks; i++) + { + n += cddb_sum((toc->min[i] * 60) + toc->sec[i]); + } + + t = ((toc->min[toc->numtracks] * 60) + toc->sec[toc->numtracks]) - ((toc->min[0] * 60) + toc->sec[0]); + + return ((n % 0xff) << 24 | t << 8 | toc->numtracks); +} + +void dump_cddb_query(FMOD_CDTOC *toc) +{ + int i; + + printf("cddb query %08x %d", cddb_discid(toc), toc->numtracks); + + for (i = 0; i < toc->numtracks; i++) + { + printf(" %d", (toc->min[i] * (60 * 75)) + (toc->sec[i] * 75) + toc->frame[i]); + } + + printf(" %d\n", (toc->min[toc->numtracks] * 60) + toc->sec[toc->numtracks]); +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *cdsound; + FMOD::Sound *sound; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int key, numtracks, currenttrack = 0; + unsigned int version; + + if (argc < 2) + { + printf("Usage: cdplayer \n"); + printf("Example: cdplayer /dev/cdrom\n"); + exit(-1); + } + + printf("==================================================================\n"); + printf("CDPlayer Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==================================================================\n\n"); + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(1, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + /* + Bump up the file buffer size a bit from the 16k default for CDDA, because it is a slower medium. + */ + result = system->setStreamBufferSize(64*1024, FMOD_TIMEUNIT_RAWBYTES); + ERRCHECK(result); + + result = system->createStream(argv[1], FMOD_OPENONLY, 0, &cdsound); + ERRCHECK(result); + result = cdsound->getNumSubSounds(&numtracks); + ERRCHECK(result); + result = cdsound->getSubSound(currenttrack, &sound); + ERRCHECK(result); + + for (;;) + { + FMOD_TAG tag; + + if (cdsound->getTag(0, -1, &tag) != FMOD_OK) + { + break; + } + if (tag.datatype == FMOD_TAGDATATYPE_CDTOC) + { + dump_cddb_query((FMOD_CDTOC *)tag.data); + } + } + + printf("\n========================================\n"); + printf("Press SPACE to pause\n"); + printf(" n to skip to next track\n"); + printf(" ESC to exit\n"); + printf("========================================\n\n"); + + /* + Print out length of entire CD. Did you know you can also play 'cdsound' and it will play the whole CD without gaps? + */ + { + unsigned int lenms; + + result = cdsound->getLength(&lenms, FMOD_TIMEUNIT_MS); + ERRCHECK(result); + + printf("Total CD length %02d:%02d\n\n", lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100); + } + + + /* + Play a CD track + */ + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + + /* + Main loop + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + bool paused; + channel->getPaused(&paused); + channel->setPaused(!paused); + break; + } + + case 'n' : + { + currenttrack++; + if (currenttrack >= numtracks) + { + currenttrack = 0; + } + result = cdsound->getSubSound(currenttrack, &sound); + ERRCHECK(result); + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + break; + } + } + } + + system->update(); + + if (channel) + { + unsigned int ms; + unsigned int lenms; + bool playing; + bool paused; + + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + result = channel->isPlaying(&playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + result = sound->getLength(&lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + printf("Track %d/%d : %02d:%02d:%02d/%02d:%02d:%02d : %s\r", currenttrack + 1, numtracks, ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/channelgroups/Makefile b/CocosDenshion/third_party/fmod/examples/channelgroups/Makefile new file mode 100644 index 0000000000..d069d00587 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/channelgroups/Makefile @@ -0,0 +1,11 @@ +channelgroups_cpp: main.cpp + g++ -O3 -o channelgroups main.cpp ../../api/lib/libfmodex.so -pthread + +channelgroups_c: main.c + g++ -O3 -o channelgroups main.c ../../api/lib/libfmodex.so -pthread + +run: + ./channelgroups + +clean: + rm -f channelgroups diff --git a/CocosDenshion/third_party/fmod/examples/channelgroups/main.c b/CocosDenshion/third_party/fmod/examples/channelgroups/main.c new file mode 100644 index 0000000000..f738cac1bf --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/channelgroups/main.c @@ -0,0 +1,226 @@ +/*=============================================================================================== + ChannelGroups Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to put channels into channel groups, so that you can affect a group + of channels at a time instead of just one channel at a time. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound[6]; + FMOD_CHANNEL *channel[6]; + FMOD_CHANNELGROUP *groupA, *groupB, *masterGroup; + FMOD_RESULT result; + int key, count; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/drumloop.wav", FMOD_LOOP_NORMAL, 0, &sound[0]); + ERRCHECK(result); + result = FMOD_System_CreateSound(system, "../media/jaguar.wav", FMOD_LOOP_NORMAL, 0, &sound[1]); + ERRCHECK(result); + result = FMOD_System_CreateSound(system, "../media/swish.wav", FMOD_LOOP_NORMAL, 0, &sound[2]); + ERRCHECK(result); + result = FMOD_System_CreateSound(system, "../media/c.ogg", FMOD_LOOP_NORMAL, 0, &sound[3]); + ERRCHECK(result); + result = FMOD_System_CreateSound(system, "../media/d.ogg", FMOD_LOOP_NORMAL, 0, &sound[4]); + ERRCHECK(result); + result = FMOD_System_CreateSound(system, "../media/e.ogg", FMOD_LOOP_NORMAL, 0, &sound[5]); + ERRCHECK(result); + + result = FMOD_System_CreateChannelGroup(system, "Group A", &groupA); + ERRCHECK(result); + + result = FMOD_System_CreateChannelGroup(system, "Group B", &groupB); + ERRCHECK(result); + + result = FMOD_System_GetMasterChannelGroup(system, &masterGroup); + ERRCHECK(result); + + printf("=======================================================================\n"); + printf("ChannelGroups Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("=======================================================================\n"); + printf("\n"); + printf("Group A : drumloop.wav, jaguar.wav, swish.wav\n"); + printf("Group B : c.ogg, d.ogg, e.ogg\n"); + printf("\n"); + printf("Press 'A' to mute/unmute group A\n"); + printf("Press 'B' to mute/unmute group B\n"); + printf("Press 'C' to mute/unmute group A and B (master group)\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Instead of being independent, set the group A and B to be children of the master group. + */ + result = FMOD_ChannelGroup_AddGroup(masterGroup, groupA); + ERRCHECK(result); + + result = FMOD_ChannelGroup_AddGroup(masterGroup, groupB); + ERRCHECK(result); + + /* + Start all the sounds! + */ + for (count = 0; count < 6; count++) + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound[count], TRUE, &channel[count]); + ERRCHECK(result); + if (count < 3) + { + result = FMOD_Channel_SetChannelGroup(channel[count], groupA); + } + else + { + result = FMOD_Channel_SetChannelGroup(channel[count], groupB); + } + ERRCHECK(result); + result = FMOD_Channel_SetPaused(channel[count], FALSE); + ERRCHECK(result); + } + + /* + Change the volume of each group, just because we can! (And makes it less of a loud noise). + */ + result = FMOD_ChannelGroup_SetVolume(groupA, 0.5f); + ERRCHECK(result); + result = FMOD_ChannelGroup_SetVolume(groupB, 0.5f); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'a' : + case 'A' : + { + static int mute = TRUE; + + FMOD_ChannelGroup_SetMute(groupA, mute); + + mute = !mute; + break; + } + case 'b' : + case 'B' : + { + static int mute = TRUE; + + FMOD_ChannelGroup_SetMute(groupB, mute); + + mute = !mute; + break; + } + case 'c' : + case 'C' : + { + static int mute = TRUE; + + FMOD_ChannelGroup_SetMute(masterGroup, mute); + + mute = !mute; + break; + } + } + } + + FMOD_System_Update(system); + + { + int channelsplaying = 0; + + FMOD_System_GetChannelsPlaying(system, &channelsplaying); + + printf("Channels Playing %2d\r", channelsplaying); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + A little fade out. (over 2 seconds) + */ + printf("Goodbye!\n"); + { + float pitch = 1.0f; + float vol = 1.0f; + + for (count = 0; count < 200; count++) + { + FMOD_ChannelGroup_SetPitch(masterGroup, pitch); + FMOD_ChannelGroup_SetVolume(masterGroup, vol); + + vol -= (1.0f / 200.0f); + pitch -= (0.5f / 200.0f); + + Sleep(10); + } + } + + /* + Shut down + */ + for (count = 0; count < 6; count++) + { + result = FMOD_Sound_Release(sound[count]); + ERRCHECK(result); + } + + result = FMOD_ChannelGroup_Release(groupA); + ERRCHECK(result); + result = FMOD_ChannelGroup_Release(groupB); + ERRCHECK(result); + + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/channelgroups/main.cpp b/CocosDenshion/third_party/fmod/examples/channelgroups/main.cpp new file mode 100644 index 0000000000..6c043d0843 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/channelgroups/main.cpp @@ -0,0 +1,226 @@ +/*=============================================================================================== + ChannelGroups Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to put channels into channel groups, so that you can affect a group + of channels at a time instead of just one channel at a time. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound[6]; + FMOD::Channel *channel[6]; + FMOD::ChannelGroup *groupA, *groupB, *masterGroup; + FMOD_RESULT result; + int key, count; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createSound("../media/drumloop.wav", FMOD_LOOP_NORMAL, 0, &sound[0]); + ERRCHECK(result); + result = system->createSound("../media/jaguar.wav", FMOD_LOOP_NORMAL, 0, &sound[1]); + ERRCHECK(result); + result = system->createSound("../media/swish.wav", FMOD_LOOP_NORMAL, 0, &sound[2]); + ERRCHECK(result); + result = system->createSound("../media/c.ogg", FMOD_LOOP_NORMAL, 0, &sound[3]); + ERRCHECK(result); + result = system->createSound("../media/d.ogg", FMOD_LOOP_NORMAL, 0, &sound[4]); + ERRCHECK(result); + result = system->createSound("../media/e.ogg", FMOD_LOOP_NORMAL, 0, &sound[5]); + ERRCHECK(result); + + result = system->createChannelGroup("Group A", &groupA); + ERRCHECK(result); + + result = system->createChannelGroup("Group B", &groupB); + ERRCHECK(result); + + result = system->getMasterChannelGroup(&masterGroup); + ERRCHECK(result); + + printf("=======================================================================\n"); + printf("ChannelGroups Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("=======================================================================\n"); + printf("\n"); + printf("Group A : drumloop.wav, jaguar.wav, swish.wav\n"); + printf("Group B : c.ogg, d.ogg, e.ogg\n"); + printf("\n"); + printf("Press 'A' to mute/unmute group A\n"); + printf("Press 'B' to mute/unmute group B\n"); + printf("Press 'C' to mute/unmute group A and B (master group)\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Instead of being independent, set the group A and B to be children of the master group. + */ + result = masterGroup->addGroup(groupA); + ERRCHECK(result); + + result = masterGroup->addGroup(groupB); + ERRCHECK(result); + + /* + Start all the sounds! + */ + for (count = 0; count < 6; count++) + { + result = system->playSound(FMOD_CHANNEL_FREE, sound[count], true, &channel[count]); + ERRCHECK(result); + if (count < 3) + { + result = channel[count]->setChannelGroup(groupA); + } + else + { + result = channel[count]->setChannelGroup(groupB); + } + ERRCHECK(result); + result = channel[count]->setPaused(false); + ERRCHECK(result); + } + + /* + Change the volume of each group, just because we can! (And makes it less noise). + */ + result = groupA->setVolume(0.5f); + ERRCHECK(result); + result = groupB->setVolume(0.5f); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'a' : + case 'A' : + { + static bool mute = true; + + groupA->setMute(mute); + + mute = !mute; + break; + } + case 'b' : + case 'B' : + { + static bool mute = true; + + groupB->setMute(mute); + + mute = !mute; + break; + } + case 'c' : + case 'C' : + { + static bool mute = true; + + masterGroup->setMute(mute); + + mute = !mute; + break; + } + } + } + + system->update(); + + { + int channelsplaying = 0; + + system->getChannelsPlaying(&channelsplaying); + + printf("Channels Playing %2d\r", channelsplaying); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + A little fade out. (over 2 seconds) + */ + printf("Goodbye!\n"); + { + float pitch = 1.0f; + float vol = 1.0f; + + for (count = 0; count < 200; count++) + { + masterGroup->setPitch(pitch); + masterGroup->setVolume(vol); + + vol -= (1.0f / 200.0f); + pitch -= (0.5f / 200.0f); + + Sleep(10); + } + } + + /* + Shut down + */ + for (count = 0; count < 6; count++) + { + result = sound[count]->release(); + ERRCHECK(result); + } + + result = groupA->release(); + ERRCHECK(result); + result = groupB->release(); + ERRCHECK(result); + + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/common/wincompat.h b/CocosDenshion/third_party/fmod/examples/common/wincompat.h new file mode 100644 index 0000000000..0a4a281a2b --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/common/wincompat.h @@ -0,0 +1,84 @@ +#if !defined(WINCOMPAT_INCLUDED) && !defined(PLATFORM_WINDOWS) && !defined(WIN32) && !defined(WINDOWS) && !defined(__WIN32__) +#define WINCOMPAT_INCLUDED + +/** + * + * Author: Magnus Naeslund (mag@fbab.net, mag@bahnhof.se) + * (c) 2000 Magnus Naeslund, all rights reserved + * + */ + +#include +#include +#include +#include +#include +#include +#include + +#ifndef TRUE + #define TRUE 1 +#endif +#ifndef FALSE + #define FALSE 0 +#endif + +#define _kbhit kbhit +#define _getch getch +#define stricmp strcasecmp +#define strnicmp strncasecmp + +#define Sleep(x) usleep((x)*1000) + +static int inited=0; +static struct termios ori; + +static void tcatexit(){ + tcsetattr(0,TCSANOW,&ori); +} + +static void init_terminal(){ + struct termios t; + tcgetattr(0,&t); + tcgetattr(0,&ori); + t.c_lflag &= ~(ICANON); + t.c_lflag &= ~(ECHO); + tcsetattr(0,TCSANOW,&t); + atexit(tcatexit); +} + +static inline int kbhit(){ + fd_set rfds; + struct timeval tv; + + if (!inited){ + inited=1; + init_terminal(); + } + + FD_ZERO(&rfds); + FD_SET(0, &rfds); + tv.tv_sec = 0; + tv.tv_usec = 10*1000; + return select(1, &rfds, NULL, NULL, &tv)>0; +} + +static inline int getch(){ + fd_set rfds; + + if (!inited){ + inited=1; + init_terminal(); + } + + FD_ZERO(&rfds); + FD_SET(0, &rfds); + if (select(1, &rfds, NULL, NULL, NULL)>0) + return getchar(); + else{ + printf("wincompat.h: select() on fd 0 failed\n"); + return 0xDeadBeef; + } +} + +#endif diff --git a/CocosDenshion/third_party/fmod/examples/dsp_custom/Makefile b/CocosDenshion/third_party/fmod/examples/dsp_custom/Makefile new file mode 100644 index 0000000000..19c045dffb --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/dsp_custom/Makefile @@ -0,0 +1,11 @@ +dsp_custom_cpp: main.cpp + g++ -O3 -o dsp_custom main.cpp ../../api/lib/libfmodex.so -pthread + +dsp_custom_c: main.c + g++ -O3 -o dsp_custom main.c ../../api/lib/libfmodex.so -pthread + +run: + ./dsp_custom + +clean: + rm -f dsp_custom diff --git a/CocosDenshion/third_party/fmod/examples/dsp_custom/main.c b/CocosDenshion/third_party/fmod/examples/dsp_custom/main.c new file mode 100644 index 0000000000..b46bebfd18 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/dsp_custom/main.c @@ -0,0 +1,185 @@ +/*=============================================================================================== + Custom DSP Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to add a user created DSP callback to process audio data. + A read callback is generated at runtime, and can be added anywhere in the DSP network. + +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +FMOD_RESULT F_CALLBACK myDSPCallback(FMOD_DSP_STATE *dsp_state, float *inbuffer, float *outbuffer, unsigned int length, int inchannels, int outchannels) +{ + unsigned int count, userdata; + int count2; + char name[256]; + FMOD_DSP *thisdsp = dsp_state->instance; + + /* + This redundant call just shows using the instance parameter of FMOD_DSP_STATE and using it to + call a DSP information function. + */ + FMOD_DSP_GetInfo(thisdsp, name, 0, 0, 0, 0); + + FMOD_DSP_GetUserData(thisdsp, (void **)&userdata); + + /* + This loop assumes inchannels = outchannels, which it will be if the DSP is created with '0' + as the number of channels in FMOD_DSP_DESCRIPTION. + Specifying an actual channel count will mean you have to take care of any number of channels coming in, + but outputting the number of channels specified. Generally it is best to keep the channel + count at 0 for maximum compatibility. + */ + for (count = 0; count < length; count++) + { + /* + Feel free to unroll this. + */ + for (count2 = 0; count2 < outchannels; count2++) + { + /* + This DSP filter just halves the volume! + Input is modified, and sent to output. + */ + outbuffer[(count * outchannels) + count2] = inbuffer[(count * inchannels) + count2] * 0.2f; + } + } + + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_CHANNEL *channel; + FMOD_DSP *mydsp; + FMOD_RESULT result; + int key; + unsigned int version; + float pan = 0; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/drumloop.wav", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound); + ERRCHECK(result); + + printf("===============================================================================\n"); + printf("Custom DSP example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===============================================================================\n"); + printf("Press 'f' to activate, deactivate user filter\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, FALSE, &channel); + ERRCHECK(result); + + /* + Create the DSP effects. + */ + { + FMOD_DSP_DESCRIPTION dspdesc; + + memset(&dspdesc, 0, sizeof(FMOD_DSP_DESCRIPTION)); + + strcpy(dspdesc.name, "My first DSP unit"); + dspdesc.channels = 0; // 0 = whatever comes in, else specify. + dspdesc.read = myDSPCallback; + dspdesc.userdata = (void *)0x12345678; + + result = FMOD_System_CreateDSP(system, &dspdesc, &mydsp); + ERRCHECK(result); + } + + /* + Inactive by default. + */ + FMOD_DSP_SetBypass(mydsp, TRUE); + + /* + Main loop. + */ + result = FMOD_System_AddDSP(system, mydsp, 0); + + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'f' : + case 'F' : + { + static int active = FALSE; + + FMOD_DSP_SetBypass(mydsp, active); + + active = !active; + break; + } + } + } + + FMOD_System_Update(system); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + + result = FMOD_DSP_Release(mydsp); + ERRCHECK(result); + + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/dsp_custom/main.cpp b/CocosDenshion/third_party/fmod/examples/dsp_custom/main.cpp new file mode 100644 index 0000000000..33e5d3cc0c --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/dsp_custom/main.cpp @@ -0,0 +1,185 @@ +/*=============================================================================================== + Custom DSP Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to add a user created DSP callback to process audio data. + A read callback is generated at runtime, and can be added anywhere in the DSP network. + +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +FMOD_RESULT F_CALLBACK myDSPCallback(FMOD_DSP_STATE *dsp_state, float *inbuffer, float *outbuffer, unsigned int length, int inchannels, int outchannels) +{ + unsigned int count, userdata; + int count2; + char name[256]; + FMOD::DSP *thisdsp = (FMOD::DSP *)dsp_state->instance; + + /* + This redundant call just shows using the instance parameter of FMOD_DSP_STATE and using it to + call a DSP information function. + */ + thisdsp->getInfo(name, 0, 0, 0, 0); + + thisdsp->getUserData((void **)&userdata); + + /* + This loop assumes inchannels = outchannels, which it will be if the DSP is created with '0' + as the number of channels in FMOD_DSP_DESCRIPTION. + Specifying an actual channel count will mean you have to take care of any number of channels coming in, + but outputting the number of channels specified. Generally it is best to keep the channel + count at 0 for maximum compatibility. + */ + for (count = 0; count < length; count++) + { + /* + Feel free to unroll this. + */ + for (count2 = 0; count2 < outchannels; count2++) + { + /* + This DSP filter just halves the volume! + Input is modified, and sent to output. + */ + outbuffer[(count * outchannels) + count2] = inbuffer[(count * inchannels) + count2] * 0.2f; + } + } + + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD::Channel *channel; + FMOD::DSP *mydsp; + FMOD_RESULT result; + int key; + unsigned int version; + float pan = 0; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createSound("../media/drumloop.wav", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound); + ERRCHECK(result); + + printf("===================================================================\n"); + printf("Custom DSP example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===================================================================\n"); + printf("Press 'f' to activate, deactivate user filter\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + + /* + Create the DSP effects. + */ + { + FMOD_DSP_DESCRIPTION dspdesc; + + memset(&dspdesc, 0, sizeof(FMOD_DSP_DESCRIPTION)); + + strcpy(dspdesc.name, "My first DSP unit"); + dspdesc.channels = 0; // 0 = whatever comes in, else specify. + dspdesc.read = myDSPCallback; + dspdesc.userdata = (void *)0x12345678; + + result = system->createDSP(&dspdesc, &mydsp); + ERRCHECK(result); + } + + /* + Inactive by default. + */ + mydsp->setBypass(true); + + /* + Main loop. + */ + result = system->addDSP(mydsp, 0); + + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'f' : + case 'F' : + { + static bool active = false; + + mydsp->setBypass(active); + + active = !active; + break; + } + } + } + + system->update(); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + + result = mydsp->release(); + ERRCHECK(result); + + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/Makefile b/CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/Makefile new file mode 100644 index 0000000000..e1a470b843 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/Makefile @@ -0,0 +1,11 @@ +dsp_effectperspeaker_cpp: main.cpp + g++ -O3 -o dsp_effectperspeaker main.cpp ../../api/lib/libfmodex.so -pthread + +dsp_effectperspeaker_c: main.c + g++ -O3 -o dsp_effectperspeaker main.c ../../api/lib/libfmodex.so -pthread + +run: + ./dsp_effectperspeaker + +clean: + rm -f dsp_effectperspeaker diff --git a/CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/main.c b/CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/main.c new file mode 100644 index 0000000000..80f993388e --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/main.c @@ -0,0 +1,268 @@ +/*=============================================================================================== + DSP Effect per speaker Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to manipulate a DSP network and as an example, creates 2 dsp effects, + and splits a single sound into 2 audio paths, which it then filters seperately. + To only have each audio path come out of one speaker each, FMOD_DSPConnection_setLevels is used just + before the 2 branches merge back together again. + + For more speakers: + 1. Use FMOD_System_SetSpeakerMode or FMOD_System_SetOutputFormat. + 2. Create more effects, currently 2 for stereo (reverb and chorus), create one per speaker. + 3. Under the 'Now connect the 2 effects to channeldsp head.' section, connect the extra effects + by duplicating the code more times. + 4. Filter each effect to each speaker by calling FMOD_DSP_SetInputLevels. Expand the existing code + by extending the level arrays from 2 to the number of speakers you require, and change the + numlevels parameter in FMOD_DSP_SetInputLevels from 2 to the correct number accordingly. + +===============================================================================================*/ +#include "../common/wincompat.h" +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_CHANNEL *channel; + FMOD_DSP *dsplowpass, *dspchorus, *dsphead, *dspchannelmixer; + FMOD_DSPCONNECTION *dsplowpassconnection, *dspchorusconnection; + FMOD_RESULT result; + int key; + unsigned int version; + float pan = 0; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/drumloop.wav", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound); + ERRCHECK(result); + + printf("===============================================================================\n"); + printf("DSP Effect per speaker example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===============================================================================\n"); + printf("Press 'L' to toggle reverb on/off on left speaker only\n"); + printf("Press 'R' to toggle chorus on/off on right speaker only\n"); + printf("Press '[' to pan sound left\n"); + printf("Press ']' to pan sound right\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, FALSE, &channel); + ERRCHECK(result); + + /* + Create the DSP effects. + */ + result = FMOD_System_CreateDSPByType(system, FMOD_DSP_TYPE_REVERB, &dsplowpass); + ERRCHECK(result); + + result = FMOD_System_CreateDSPByType(system, FMOD_DSP_TYPE_CHORUS, &dspchorus); + ERRCHECK(result); + + /* + Connect up the DSP network + */ + + /* + When a sound is played, a subnetwork is set up in the DSP network which looks like this. + Wavetable is the drumloop sound, and it feeds its data from right to left. + + [DSPHEAD]<------------[DSPCHANNELMIXER] + */ + result = FMOD_System_GetDSPHead(system, &dsphead); + ERRCHECK(result); + + result = FMOD_DSP_GetInput(dsphead, 0, &dspchannelmixer, 0); + ERRCHECK(result); + + /* + Now disconnect channeldsp head from wavetable to look like this. + + [DSPHEAD] [DSPCHANNELMIXER] + */ + result = FMOD_DSP_DisconnectFrom(dsphead, dspchannelmixer); + ERRCHECK(result); + + /* + Now connect the 2 effects to channeldsp head. + Store the 2 connections this makes so we can set their speakerlevels later. + + [DSPLOWPASS] + /x + [DSPHEAD] [DSPCHANNELMIXER] + \y + [DSPCHORUS] + */ + result = FMOD_DSP_AddInput(dsphead, dsplowpass, &dsplowpassconnection); /* x = dsplowpassconnection */ + ERRCHECK(result); + result = FMOD_DSP_AddInput(dsphead, dspchorus, &dspchorusconnection); /* y = dspchorusconnection */ + ERRCHECK(result); + + /* + Now connect the wavetable to the 2 effects + + [DSPLOWPASS] + /x \ + [DSPHEAD] [DSPCHANNELMIXER] + \y / + [DSPCHORUS] + */ + result = FMOD_DSP_AddInput(dsplowpass, dspchannelmixer, NULL); /* Null for connection - we dont care about it. */ + ERRCHECK(result); + result = FMOD_DSP_AddInput(dspchorus, dspchannelmixer, NULL); /* Null for connection - we dont care about it. */ + ERRCHECK(result); + + /* + Now the drumloop will be twice as loud, because it is being split into 2, then recombined at the end. + What we really want is to only feed the dspchannelmixer->dsplowpass through the left speaker, and + dspchannelmixer->dspchorus to the right speaker. + We can do that simply by setting the pan, or speaker levels of the connections. + + [DSPLOWPASS] + /x=1,0 \ + [DSPHEAD] [DSPCHANNELMIXER] + \y=0,1 / + [DSPCHORUS] + */ + { + float leftinputon[2] = { 1.0f, 0.0f }; + float rightinputon[2] = { 0.0f, 1.0f }; + float inputsoff[2] = { 0.0f, 0.0f }; + + result = FMOD_DSPConnection_SetLevels(dsplowpassconnection, FMOD_SPEAKER_FRONT_LEFT, leftinputon, 2); + ERRCHECK(result); + result = FMOD_DSPConnection_SetLevels(dsplowpassconnection, FMOD_SPEAKER_FRONT_RIGHT, inputsoff, 2); + ERRCHECK(result); + + result = FMOD_DSPConnection_SetLevels(dspchorusconnection, FMOD_SPEAKER_FRONT_LEFT, inputsoff, 2); + ERRCHECK(result); + result = FMOD_DSPConnection_SetLevels(dspchorusconnection, FMOD_SPEAKER_FRONT_RIGHT, rightinputon, 2); + ERRCHECK(result); + } + + result = FMOD_DSP_SetBypass(dsplowpass, TRUE); + result = FMOD_DSP_SetBypass(dspchorus, TRUE); + + result = FMOD_DSP_SetActive(dsplowpass, TRUE); + result = FMOD_DSP_SetActive(dspchorus, TRUE); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'l' : + case 'L' : + { + static int reverb = FALSE; + + FMOD_DSP_SetBypass(dsplowpass, reverb); + + reverb = !reverb; + break; + } + case 'r' : + case 'R' : + { + static int chorus = FALSE; + + FMOD_DSP_SetBypass(dspchorus, chorus); + + chorus = !chorus; + break; + } + case '[' : + { + FMOD_Channel_GetPan(channel, &pan); + pan -= 0.1f; + if (pan < -1) + { + pan = -1; + } + FMOD_Channel_SetPan(channel, pan); + break; + } + case ']' : + { + FMOD_Channel_GetPan(channel, &pan); + pan += 0.1f; + if (pan > 1) + { + pan = 1; + } + FMOD_Channel_SetPan(channel, pan); + break; + } + } + } + + FMOD_System_Update(system); + + { + int channelsplaying = 0; + + FMOD_System_GetChannelsPlaying(system, &channelsplaying); + + printf("Channels Playing %2d : Pan = %.02f\r", channelsplaying, pan); + } + + fflush(stdout); + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + + result = FMOD_DSP_Release(dsplowpass); + ERRCHECK(result); + result = FMOD_DSP_Release(dspchorus); + ERRCHECK(result); + + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/main.cpp b/CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/main.cpp new file mode 100644 index 0000000000..bbde2d97c7 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/dsp_effectperspeaker/main.cpp @@ -0,0 +1,268 @@ +/*=============================================================================================== + DSP Effect per speaker Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to manipulate a DSP network and as an example, creates 2 dsp effects, + and splits a single sound into 2 audio paths, which it then filters seperately. + To only have each audio path come out of one speaker each, DSPConnection::setLevels is used just + before the 2 branches merge back together again. + + For more speakers: + 1. Use System::setSpeakerMode or System::setOutputFormat. + 2. Create more effects, currently 2 for stereo (lowpass and chorus), create one per speaker. + 3. Under the 'Now connect the 2 effects to channeldsp head.' section, connect the extra effects + by duplicating the code more times. + 4. Filter each effect to each speaker by calling DSP::setInputLevels. Expand the existing code + by extending the level arrays from 2 to the number of speakers you require, and change the + numlevels parameter in DSP::setInputLevels from 2 to the correct number accordingly. + +===============================================================================================*/ +#include "../common/wincompat.h" +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD::Channel *channel; + FMOD::DSP *dsplowpass, *dspchorus, *dsphead, *dspchannelmixer; + FMOD::DSPConnection *dsplowpassconnection, *dspchorusconnection; + FMOD_RESULT result; + int key; + unsigned int version; + float pan = 0; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createSound("../media/drumloop.wav", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound); + ERRCHECK(result); + + printf("===============================================================================\n"); + printf("DSP effect per speaker example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===============================================================================\n"); + printf("Press 'L' to toggle lowpass on/off on left speaker only\n"); + printf("Press 'R' to toggle chorus on/off on right speaker only\n"); + printf("Press '[' to pan sound left\n"); + printf("Press ']' to pan sound right\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + + /* + Create the DSP effects. + */ + result = system->createDSPByType(FMOD_DSP_TYPE_LOWPASS, &dsplowpass); + ERRCHECK(result); + + result = system->createDSPByType(FMOD_DSP_TYPE_CHORUS, &dspchorus); + ERRCHECK(result); + + /* + Connect up the DSP network + */ + + /* + When a sound is played, a subnetwork is set up in the DSP network which looks like this. + Wavetable is the drumloop sound, and it feeds its data from right to left. + + [DSPHEAD]<------------[DSPCHANNELMIXER] + */ + result = system->getDSPHead(&dsphead); + ERRCHECK(result); + + result = dsphead->getInput(0, &dspchannelmixer, 0); + ERRCHECK(result); + + /* + Now disconnect channeldsp head from wavetable to look like this. + + [DSPHEAD] [DSPCHANNELMIXER] + */ + result = dsphead->disconnectFrom(dspchannelmixer); + ERRCHECK(result); + + /* + Now connect the 2 effects to channeldsp head. + Store the 2 connections this makes so we can set their speakerlevels later. + + [DSPLOWPASS] + /x + [DSPHEAD] [DSPCHANNELMIXER] + \y + [DSPCHORUS] + */ + result = dsphead->addInput(dsplowpass, &dsplowpassconnection); /* x = dsplowpassconnection */ + ERRCHECK(result); + result = dsphead->addInput(dspchorus, &dspchorusconnection); /* y = dspchorusconnection */ + ERRCHECK(result); + + /* + Now connect the wavetable to the 2 effects + + [DSPLOWPASS] + /x \ + [DSPHEAD] [DSPCHANNELMIXER] + \y / + [DSPCHORUS] + */ + result = dsplowpass->addInput(dspchannelmixer, 0); /* Null for connection - we dont care about it. */ + ERRCHECK(result); + result = dspchorus->addInput(dspchannelmixer, 0); /* Null for connection - we dont care about it. */ + ERRCHECK(result); + + /* + Now the drumloop will be twice as loud, because it is being split into 2, then recombined at the end. + What we really want is to only feed the dspchannelmixer->dsplowpass through the left speaker, and + dspchannelmixer->dspchorus to the right speaker. + We can do that simply by setting the pan, or speaker levels of the connections. + + [DSPLOWPASS] + /x=1,0 \ + [DSPHEAD] [DSPCHANNELMIXER] + \y=0,1 / + [DSPCHORUS] + */ + { + float leftinputon[2] = { 1.0f, 0.0f }; + float rightinputon[2] = { 0.0f, 1.0f }; + float inputsoff[2] = { 0.0f, 0.0f }; + + result = dsplowpassconnection->setLevels(FMOD_SPEAKER_FRONT_LEFT, leftinputon, 2); + ERRCHECK(result); + result = dsplowpassconnection->setLevels(FMOD_SPEAKER_FRONT_RIGHT, inputsoff, 2); + ERRCHECK(result); + + result = dspchorusconnection->setLevels(FMOD_SPEAKER_FRONT_LEFT, inputsoff, 2); + ERRCHECK(result); + result = dspchorusconnection->setLevels(FMOD_SPEAKER_FRONT_RIGHT, rightinputon, 2); + ERRCHECK(result); + } + + result = dsplowpass->setBypass(true); + result = dspchorus->setBypass(true); + + result = dsplowpass->setActive(true); + result = dspchorus->setActive(true); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'l' : + case 'L' : + { + static bool lowpass = false; + + dsplowpass->setBypass(lowpass); + + lowpass = !lowpass; + break; + } + case 'r' : + case 'R' : + { + static bool chorus = false; + + dspchorus->setBypass(chorus); + + chorus = !chorus; + break; + } + case '[' : + { + channel->getPan(&pan); + pan -= 0.1f; + if (pan < -1) + { + pan = -1; + } + channel->setPan(pan); + break; + } + case ']' : + { + channel->getPan(&pan); + pan += 0.1f; + if (pan > 1) + { + pan = 1; + } + channel->setPan(pan); + break; + } + } + } + + system->update(); + + { + int channelsplaying = 0; + + system->getChannelsPlaying(&channelsplaying); + + printf("Channels Playing %2d : Pan = %.02f\r", channelsplaying, pan); + } + + fflush(stdout); + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + + result = dsplowpass->release(); + ERRCHECK(result); + result = dspchorus->release(); + ERRCHECK(result); + + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/effects/Makefile b/CocosDenshion/third_party/fmod/examples/effects/Makefile new file mode 100644 index 0000000000..714215c0bb --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/effects/Makefile @@ -0,0 +1,11 @@ +effects_cpp: main.cpp + g++ -O3 -o effects main.cpp ../../api/lib/libfmodex.so -pthread + +effects_c: main.c + g++ -O3 -o effects main.c ../../api/lib/libfmodex.so -pthread + +run: + ./effects + +clean: + rm -f effects diff --git a/CocosDenshion/third_party/fmod/examples/effects/effects b/CocosDenshion/third_party/fmod/examples/effects/effects new file mode 100755 index 0000000000000000000000000000000000000000..d414f54deb9bf06bf8768a58c2ccc966def3487c GIT binary patch literal 25149 zcmeHve|%ikb?1{kz!;1zr~?>O@(6M)K9$FkZH#eDkt~gof-FxY*_c2wJk7k(j6J_H zKP-v$QafW)T;aq`QbMrMGIN^w{zxEr%^SZC`* z`~9AK@0&Mcn=I{r`|*S8`_8@Ro^$TG=bn4+eWUwZ;l6bZ4GorgW?8c>LiXN3a0T-H zA5t|dEZdr6wOH@9nygDv#JUwbfP-YC0n;TY3n0x#8Uj4DGZ19@HNZ@)L$M@emW8%V zXYRBtCbqX4RsCeYWler35MrI)~zEi0;7ol!35}#|4 zL|@2*EWp#GGNGYgB{O_32XvXQ!p3_u()*FFLAn~rJlEr84$@UfHzWNz(tD6@L}EY8 z^FH(PE_3#m5Bp@EE6odX>V(ftNOR>){WH(^{$9M(uBf-`bUF2Z1=2zd-+-JtrQAjj zk6^S8{3t(%Wu#9To`3yQ+gpD9(Wb8O-<^E=?$-|=|JdfH#73v_t9##?_v63)$-MF2 zt;J#6MLBudajl)babJrp=7)*VXaAqYhqP z2e;P2kvjU5B&;9OUugj3gs1D|d#0}bsXBV|>iGSluKkued}GffOMc(3qklsky??H2 z|5zRVLv`>2b?wIhH~kHK5}rout(irD4;%{wX{%RR*IO>&?SM`F_aT4xepBCQrR(b7 z19*q8{Q}6>IHB5K4XdsIZbEy~yBZe%Y3c)hSHbu<6k3Y^oqS4pl+WrR4JU=64_Q?b9+ARj1T6@*?749Hnxa%^>p_4hx>Z_yTh9! z{e#h4Rqb$uz-?VgC!2NC;d(l^#?rZ>8?Mq{-aQy;UsiNW5vSl}+>%=erxNw8R+jT| zr^IH$S_vEND!3^0a1GDfM@Xz(bmQU3uvbeyD+_KWw@tXSqh6iv{Yobu2UeIJAbME3 z($3ee9C{NgrE=MGdURXCO}kD_pOh;66$$Y3*m;6VuSL+RoLZLl_L%feDK&C;Y)fR> zGNt!{aOY5XaKlC_zPEqf29Z*0-{V1{sfbPpjUM|HVHmWbc9UBuvQLpMR`i40q66+o z3T9B~N;}1(Tl9#TCbue?Kzi-?(0JYrw=WlwP!JuuSL;hOXGNnUnOrtnEIEZzG-_cf zE0*H1-}nu#V=GxZHWtl;doJswQ>F3fwl?BqR5jj4VzFqEP&>=>r6jZwCoFg|O{RAP zIK)%gD3xd>66ta=3F7%eDqBiKW67-mAVO>_-=hg9m9~l)tysyDW>zVNA#h5i0^wY_ zWR;6)*Uh6G%8~LYSl~SdLXZP8Nry5{DvOfXm=lEsj?t7{7^s7?;bKuCp(q=-x;Ag_ zT-zIM4=uOu>g!$G62LphE0+CBt$(kHv&}JGk7{c{DureA66+DvvrVJG0qav5E-g%9S)Xm~ z*KqN@glAa?HNBJH4FoU6JN?!rH!J^l2^U(xm%(2Jn1f%CIq>E(heVCcA@Bm`2r{l? z4o}v^92{)s2tb;dV}WjAj)lFIIV5glj>UZib1eR=n4<%0m?H@3V2(wgn>iN!9_Cp1 z`ylyuj3SvV-sg0#oD39>NiUsrh7taEHJgf#hbwZ31&7k`EBJ1?Gq(*`eu1fjKhC zJYh>qK1Vn&Fh@FhnD7GvbHtM`6OIVXkxw2Y+#xV6AbFf{o4~Y$ z3Z9hBicoJl+@|{l{ zME=4_>{52VIfZ|}@h`I~Z#LY1ym;eYi6<+E8~%tWGYfXJTF`GlUYI(12?;b*z8Sdh zBS-d@-f!)FQ9^&vubjN@iBrJceYkWr`)%Q6&P#!2mdzY{|N zn+>PFh7P=PL`kyu>nu|AC&Hj!p7qL+%9-f%JqS@oFPm7f`|w`|f_sLV=k5VDQo08f zpaidAO?CfbW(M!Hh^gm5b>H4+xUCR+Cr;h7X>jLBZVBBd7_9Hv)!YZ5{qWvh%>lf; zq%z{;6&_C>yq;BWEIm_wJzaf0Ree2KeVwYlo~XV~>eoGi=BY13+}(%g@BRr~5rlXR zRp?bKo545a)>h0E-bC)0})5R4G?Ls(%m26Z6Xolh#&;iS9VYcb z%&%z7*U@zEuI9;eF?lpV%)NpMGClKmKL+9VO(TRaQ*1DcghzG2&msDILiC}Vp4b8D*|F1D!@;$qGG$lJTszt_)4cluxU+p6 z_*S0{ZU-L9I)3uCKl?|zU2Q?==3Gu-P`VzZp~QJ=KGS8;mX7Xfo{tj27y|~1X*hd7 z(|jcnhnfRy`%zURhO%81-L1%7Q6(qF0pxa7b9uF9N;9}t)y%2Z$l#;RFCadI3s!3; zb(_~w1EDx+uwL{)Fv@ELdk<9pRL)#cy1BBwxhMJ@{r~)jKMQL>_1p=d zAP-Lehk#`z_U(94m^DCW-Jb{I!dEN*bg=SQV<@M14PdZl;oFrr4pxq`jGbv%_z#uW z4_1y4X15y_zEb(&!OAxXQ^^fJ8dP4x!o!uxgO$Uqr`8)5&Q$)#!OBa7mCm;}_m#OK zb$=ETOl)sn1Fj1uhMKz}Xd?vf+tb&49qh0f<-t9rW_!>5%}wkKM}NpS`VYN5GxNj& zZ8A6gZ&}i4!&85U3TUI_hWWdH4DZZ#evh;c)ljbZc#OhrXh{$9yKodJ<`T!z-=T{i ztS#Py#>9@Hxc%_Ni?TMl%kNl#p_;#Y1f@H_$+h#ok4E>LL@*$60|vQ~WFZJ95-_co zF5%oknKgASC{n~p6zJNi*(k%Hvr*;A<|br6qc(^pt#w53G@AyRCvglhwGXVP=b*cL zx6zQ<6!SpX!k*7%d*Em1vV9a~9>4A9@>}EMXOrJ$nxC3a>>o5Z2@$Em8-Yz#T@RVf z=+EDM3cf-kp*x;0@M%7ATDAM9I?Rs!VWR+&|1N|j`4@m@C{+mu5cgZtX=(xbsFCl4 zmhT}=;6V`ZC~XwQFEnNQ_Z!z1c#{k`+a;SA~1HxF8i;fojVZe*wcc8`egNT!0-&)=ajN3In+TX|0F}+1X ze%Q5XVDxpg+ArF{^jRR%{(X3~uQxwe#iN~1fA3s8nLkCUO0CP2#CsZe9QTR9U(y7o z??q29xM`Vw12Oq|Yo~8PyQv(yRbyLK!q8WB>H9p$=v@}}OZEFRY<8wLK(?Jnet!j= z?a8L8FZ={Tzi^UWs_@@iUi!w&tlcxE=JvNI!i^k?i7>@>Cw#WI#6a21LIWtrGwHNr7*jIToFmr5THj2upE3)ZSynJUN-@@tER1L;;4wG~hLWz`Gc*(dk&l(#V#zM0AefDF zL{wUe$W69=Z?0@R1=lVYNzBRGxpds#rcPe%T*BrNs=cUf)mX^3hmxtHoiF4@a276P zQ|OjdUT)p-Z+#G*hZ6~$eirTUn3Kt~S9Vt}KVC?UBujQn>=t_+_@xCJa%0JCE}a`m zL4aj#Z7Y^6Yin;0frirbV5GAvOikzIsC{WUD=&6Yl*5gH!fPi^DK|0#<;9EnbZ#_{ z!)4nQK}b&HEvv;#LWnv^zc4!?5+9`c_D zcV#Uu*cQq)-O&BGtrjmYUo}4FCpenQ#&VgwQwk+l+v+&FKDkkp z!LFqi25%b5$-mu_a)k#chkWf=y;^t+)nW+~G{Y*ft6Mm+`rTA1=@#t%p~0@fUN9-x zor95HJC-YBVhy`CzwM+z9Nz?p->Kb+H^J@EB&V{6M)IJj973@?T$FENGKafJGrJgb zK1B@yshD?TsRXqccekZtbPRalSe$Y^1xqjBYeSJLsY6Z`V?YI7SNGEHP2IY6(H?c7 zZsSo{k3o#V1-L~wTY`-BbPD*Kqj)MORVvWKaY(7@7(Pc}Fkt^9)`0<1U_=ykxDF?|5dLFZLo%TJc?DA!H*M{{#PJ=^@$E1>3r3{yJjA9>jZH$d$ zf2iyh#(T5)u#|9O=&V?{opGHkC3i?Zo*RXw;j3hfP2%ii!KU@mgi=|2bxC7Z&@fD*1f*dUI$v`0{z&a3;*H{mq+M-^JRMJf}No)r?Pm>IGoq2-CzW)%=bLK)X))n zMfqH@m>N!x!!AWPQ0RCpor-}$9v^j_Yzz|E8wwb0Go4gpbOr{CDUi$A87DiAd6a^; zjpLh=-6FzZa%AoHWvj%J@f`xPtP|-xIXZ0?vLQ%}W1O~OL`(QMo2TMAbu}-%%CyS5 zrO{krt38ToA=WZl$U(2F)95kDowvXBrtR_dY~0hAT92V5eAUH>U=T=N@#m0;cJ;iX z;TxGS>$M4IQt>z@9j1SwoaMlq)owHePn5}F`Any_x=?!3$wSL_DnUc84hro8Q=?h{ z+Eu-PizAAoV;jaC6wxo#cTNe>@UTl0)I^nfYxtn3m=wQ~%Zg|ijCOR11_nfBYGCF0 z38R^!>u$9@&6vJYWOOr=!pB7}GtdUL#c-ya5l;xkDW6xwk^lokEyIuMXj;~K20t=6 z+$~tlA)@kU3}r;Gn6qJcD|%WsEoa>^I4vNe2SAD?y(U%Xq2eHX_07_CDsSFW!cftp zz}LaM->GeOV|LWRWR5H9PAta2OM)lmZ#QO(<$N9ssX;+Mlyme<5SaJ!*Qs!|LS$PEbc2alKMRyd=N;yOhs%N?AC{~OD+zo>>iK3h`w2AJ4wCKKI zgA+s=hGn|SHDC?Tjll=jVggMQk@=^4%%M4#9c)4Ot>_l$#Ok|<-`6nStNJ#zRy~OB z#BvBfVu3Q#h%XMi%HMcfo?ajlvF?;#SwpJxh20x=HKuz(u1l^3&NH(WJ*-RO8 z8Ov}!IbMXa)2(9IW_5zK(ob!U=-N)MTA^F8&}?$jWwcVnFrTR+$L@FfTkYO#Le>Qr zi+u(wJGGTScrFs6f2r&?l)~hPIV0dfvh+11K>y7#sp6=Bh?-)3Rd!LOU(vocGMlj~ zV5~4}-$lE;>uh~zPWCW-GAB@Ywh=GS^ zDCD#wmJmsI9*x*$8`P02c-^Fz#EM84F77YwW=BfNR_Ydxi)&jdR!%zwv6}(yDl*Pk zDg*b#IXn!tGEAU{g}s&`3}%qB3Sqyvs3M1vLav+_GKgtPHU_Rdl7yoZ!$Au(J&Otl zHVtFMV2KGuH$=ky>%;3e4BQ)yZ0PMDqI$AOk*@V5&uLAMB!aU%lV84cEaNP7;`vxc zIWH_9zMsn=K#2^52M5F5gPrRmePO?Cyt8~{jrF0JL(i3hu{9H+>*HZF4bi}{mt*1J zP6)mkYZ-losiyTX_EDN!rtv`W9qAdoUq#RG_0ywT5w7FMQV5mQ?Dw2v(kaA8X%pJt zzzHxQuPzKKD75eD>g=ZW(F?|=G+EU@m{c*BCb%Y@gLcj7G`)U<^qrm_;q z)t11XvCUEuzr?HPM3xgKk&xl{tJNKIV`VN3G6Y`NOvsC6GM23FOlm!>(hdjKTg!D= zK*uJcdXaw;(F!pc8yB&Ma$(?dVo*IoxZqNz@R!sC(idLTIESl?%*KH}PCB(CfrsTJ zN^euEu4QfT;xOqx=Eag>?xYyuXep(!aUIzIW3!OT$YDwekr%pDrBOwtD_8LzG&}4{ zOzaa%%wTC{7W_tHnzs!ml8m zG`SAaN2zX_4SRK3ATY&<(e-QJfkAcMIIN)7=d1m)-O|2t7@HRUfY8n9L8CADRbx*% z#8vln4s_qsIiQ?#)#_;()Px$hT47~(#7b{Hfrt!99mFS4gLp3!2i0t%U_r7~_MDe7 zixMmsytGTxzC-WRt3qLz>jSL_Oi)IaI|c5@(1@W9eg_G4U`MSKqxj%otYWhIA~DEWl2 z#NX8^s*gKlp#frd-=Me2vDf!@_sXy_#9&ycVjs` zW2>6hVHTO8;<1(!UpKfGehfD3U+46%cx`1Y)Ms@_-UZK52U9>z4cD)VS+?ly3p{oFflPDAr1vH zoIoN~(2MmTRsgUyQt@O{4l`uUfTM`f_IYN671c!5ZVHjH;;Xjht!NMbk2&B4b~W`{ zX*4nY*+AK^Rt3ajNN>YY;#epr6A4FCpy-|67;@~PA054wGp<|=3k0@lvK67FnLP`1 zfSHGJ;|%5UiEfZ8=O^vC*1*g-)27rY6MV*_vU0qPtGZ zfQ6Unmdkmr@6a5(=rfBt|59>z9>kMmIyp!n&WeTsO~GR@R)#+Z8l5-$p|q!d8jmvx zajH1%MveGk>5MutGJz=QXEE)d1aCRG~ zh7JzudS?tvGte@{#WJc%ScMpwtVTwr-l6Ea&fdQ0hW_aK&dq~E_@kEf zgM#lVfJ&twMZ_#F5@8JWu`ayHb8^^>@@ttGg4!!6)=P`>c~kjX@`o}1^>{#<9AlMzEvJ;hxQ2O85spqZ)FAWA+W4Z|sqV=k$^ zEZjNHEctnd-!MVWh^G2d9V>-}@xos$U0@98wS^W3K~Bj)PoK8H1#m9|dt`L4mKP{O zLNNG`cY5~yKK?%X)Bm=#3N+3<9tgG}o%(DbIEJ(e>G8(`!7tz!j|cG!#uG^C1Nd8M zq~l1|6Mfm1@hAL%uu(tivDpGI2sM<_#j4e9YG1HtbC&-!D~LE49O0`N)X zbDsilq+LiaBhCFnAow%XwIWX=?MHeIsrz6cxE<*L()W<&{-;3j0i@3$eGjSWPw@BF zNG~FtM(X}k)FCxK9SD94=?v25KLa16myzuMjC!OOk-Gmp5PS})=@4ijJ&6?fi$HJ< z(hj7Y2Q}@!AYdH=O91Q%SeH*LN`cH zBb`Rt{CpsI7OC|G$b|G7(%csV!AFsfBL(q;qlO!1f53(T%tku!otc>qyY>~JQx|U8ny@VOIrNA@`kyAz#|Q;vynEVO*3+q6RK% z;GzaDYT%*X4oZ@^BsRce>d(;LEc&k1o<}r&)`4+f4(nw zu<+hAK0G5hje9~s(&8UEEkNS^YP`#><#z%>zBeN0T~|C8z%?gww;TQzD0g5FE_XoA zwx^Is0OR#tKV$flP~Mqm8g4?r5=h&S9!7c$=_#aVk&Yt$J<=OUZzEm$XdrkE()*EC zBCSK(gp@$qhV(GfV@OXSJ&SY{>F<%=KzbYLQk;5RgJgK$)z!7yZrM1DZz^SbMQBB6 z`H~f7fo{D;!MFmeIG!mv!^lhcRKPrG-tdDu{PfKV;XKX_;jW$~__U*;k!(4{^WXTA zRNM*?!ogkA3dP5>pr>-&9V9jSt3eGAMIF8?6JNdL(!uRF;s#i{w^X0b~%v2KOv#5=->__G{V;!990@E z{py@|+|h<<8*=9&0NRduSjXpPBwjN>Jh>YY6*k_@BY!gnpdHEJJpwy_1bA{br4bEY z4`A9p>2W?h4ZKxIoCkb}$JC94Kin1D<$O7T25ei8hbtXr&X6AGQ7a})9sp$lS)tX4 zd=nDq67e|i_CpBHH}epe&qtBWoZ)Q83etUVwhZhH49C)A6G?*E_U(>ZgGRlY$Kd@n3domu zygX;>0(jr@;qj83Q@}GcQ02Y<4c<8xq$hWa0`CmoX$O4RhH`u#$?)ZUStmD~D<5%x z;KQTeKMlMcC^HXnm}nb@UJ3rW6gih3+x$-?@~3>f*J3;H_T$|=wto33a?&%lM7*1I z9W&N3alIie^L!q7XAOXyIDD9MY|T@`1nhvKZbSk8CRF;+h@3X>r}xbL_^WC<2>lp( z2KMLlTZCt8uJlg|R-EaF6s$PV-zbE=NNMSvH1=N(trr>9|-&8eFHG(J2IDFv2n9)Ct&l?I!5c@-v!LO$~Y6QhWt+e=6b+3 zgb(`gZIpeb4*suf5BsG4uR{M`_0^N#TXpain4-qMd5`H;K4(GvzB)Kn2me+byuS`U zR0scc9sJ+w;I{z#?`8EnCCYOnT*x8l=L2}Zde%H^k%cYSsel=YV-_9POI=pQBtBs{vcq4S*Xzfp4_}&$Ctl-mdM1_t19K z;on~em+Rn90_OZ>G4HKCP*?vY!2Ww~p96frhyP#d@PAMT|GW;q*5~8dpQV8P@~>pQ zXMdJ;PaQt5xcL)3A2}Wm0p|UB{H{rTRRH_%&9!0${H+~+1|H(=o?Sy52BLkvgG0Ej zG#c%$fj-#ftBU8MBkA0*la5L}9(BrNmilo8f60AY+p>0x7130DjL>pRh4k@qCNpmM zg!{XN&ANfk_2H<2$i}=^xk&IYTzKnfD3;ITUe>-$BgsQNo80K|o4;zrS%u83v2x)byqt3Zy~O|F4rJ>GUJ}x>b=Rzy6RQ>ufGO5>N6a5QSUnl zUA^zw2x+b${?}fMtY);CU2>H#?M(LK>JEllaaM%~2D*B}U3a&)>t9h1ZtNR^iTdvM zt-D&dN&p6>?cv;;plfZ+cj30&NL;1Srv4^E{Zi4p>Y7&ytE-CrnBFzU{z4-Ht?v9c zL9^ypUcFttu-n{leD2lF9UZ=Fj_H(YaddDSP with + channel->addDSP. + Note in this example you don't have to add and remove units each time, you could simply add them + all at the start then use DSP::setActive to toggle them on and off. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_dsp.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system = 0; + FMOD::Sound *sound = 0; + FMOD::Channel *channel = 0; + FMOD::DSP *dsplowpass = 0; + FMOD::DSP *dsphighpass = 0; + FMOD::DSP *dspecho = 0; + FMOD::DSP *dspflange = 0; + FMOD::DSP *dspdistortion = 0; + FMOD::DSP *dspchorus = 0; + FMOD::DSP *dspparameq = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createSound("../media/drumloop.wav", FMOD_SOFTWARE, 0, &sound); + ERRCHECK(result); + + printf("=================================================================\n"); + printf("Effects Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("=================================================================\n"); + printf("\n"); + printf("Press SPACE to paused/unpause sound.\n"); + printf("Press 1 to toggle dsplowpass effect.\n"); + printf("Press 2 to toggle dsphighpass effect.\n"); + printf("Press 3 to toggle dspecho effect.\n"); + printf("Press 4 to toggle dspflange effect.\n"); + printf("Press 5 to toggle dspdistortion effect.\n"); + printf("Press 6 to toggle dspchorus effect.\n"); + printf("Press 7 to toggle dspparameq effect.\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + + /* + Create some effects to play with. + */ + result = system->createDSPByType(FMOD_DSP_TYPE_LOWPASS, &dsplowpass); + ERRCHECK(result); + result = system->createDSPByType(FMOD_DSP_TYPE_HIGHPASS, &dsphighpass); + ERRCHECK(result); + result = system->createDSPByType(FMOD_DSP_TYPE_ECHO, &dspecho); + ERRCHECK(result); + result = system->createDSPByType(FMOD_DSP_TYPE_FLANGE, &dspflange); + ERRCHECK(result); + result = system->createDSPByType(FMOD_DSP_TYPE_DISTORTION, &dspdistortion); + ERRCHECK(result); + result = system->createDSPByType(FMOD_DSP_TYPE_CHORUS, &dspchorus); + ERRCHECK(result); + result = system->createDSPByType(FMOD_DSP_TYPE_PARAMEQ, &dspparameq); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + bool paused; + + channel->getPaused(&paused); + ERRCHECK(result); + + paused = !paused; + + result = channel->setPaused(paused); + ERRCHECK(result); + break; + } + case '1' : + { + bool active; + + result = dsplowpass->getActive(&active); + ERRCHECK(result); + + if (active) + { + result = dsplowpass->remove(); + ERRCHECK(result); + } + else + { + result = system->addDSP(dsplowpass, 0); + ERRCHECK(result); + } + break; + } + case '2' : + { + bool active; + + result = dsphighpass->getActive(&active); + ERRCHECK(result); + + if (active) + { + result = dsphighpass->remove(); + ERRCHECK(result); + } + else + { + result = system->addDSP(dsphighpass, 0); + ERRCHECK(result); + } + break; + } + case '3' : + { + bool active; + + result = dspecho->getActive(&active); + ERRCHECK(result); + + if (active) + { + result = dspecho->remove(); + ERRCHECK(result); + } + else + { + result = system->addDSP(dspecho, 0); + ERRCHECK(result); + + result = dspecho->setParameter(FMOD_DSP_ECHO_DELAY, 50.0f); + ERRCHECK(result); + } + break; + } + case '4' : + { + bool active; + + result = dspflange->getActive(&active); + ERRCHECK(result); + + if (active) + { + result = dspflange->remove(); + ERRCHECK(result); + } + else + { + result = system->addDSP(dspflange, 0); + ERRCHECK(result); + } + break; + } + case '5' : + { + bool active; + + result = dspdistortion->getActive(&active); + ERRCHECK(result); + + if (active) + { + result = dspdistortion->remove(); + ERRCHECK(result); + } + else + { + result = system->addDSP(dspdistortion, 0); + ERRCHECK(result); + + result = dspdistortion->setParameter(FMOD_DSP_DISTORTION_LEVEL, 0.8f); + ERRCHECK(result); + } + break; + } + case '6' : + { + bool active; + + result = dspchorus->getActive(&active); + ERRCHECK(result); + + if (active) + { + result = dspchorus->remove(); + ERRCHECK(result); + } + else + { + result = system->addDSP(dspchorus, 0); + ERRCHECK(result); + } + break; + } + case '7' : + { + bool active; + + result = dspparameq->getActive(&active); + ERRCHECK(result); + + if (active) + { + result = dspparameq->remove(); + ERRCHECK(result); + } + else + { + result = system->addDSP(dspparameq, 0); + ERRCHECK(result); + + result = dspparameq->setParameter(FMOD_DSP_PARAMEQ_CENTER, 5000.0f); + ERRCHECK(result); + result = dspparameq->setParameter(FMOD_DSP_PARAMEQ_GAIN, 0.0f); + ERRCHECK(result); + } + break; + } + } + } + + system->update(); + + { + bool paused = 0; + bool dsplowpass_active; + bool dsphighpass_active; + bool dspecho_active; + bool dspflange_active; + bool dspdistortion_active; + bool dspchorus_active; + bool dspparameq_active; + + dsplowpass ->getActive(&dsplowpass_active); + dsphighpass ->getActive(&dsphighpass_active); + dspecho ->getActive(&dspecho_active); + dspflange ->getActive(&dspflange_active); + dspdistortion->getActive(&dspdistortion_active); + dspchorus ->getActive(&dspchorus_active); + dspparameq ->getActive(&dspparameq_active); + + if (channel) + { + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + + printf("%s : lowpass[%c] highpass[%c] echo[%c] flange[%c] dist[%c] chorus[%c] parameq[%c]\r", + paused ? "Paused " : "Playing", + dsplowpass_active ? 'x' : ' ', + dsphighpass_active ? 'x' : ' ', + dspecho_active ? 'x' : ' ', + dspflange_active ? 'x' : ' ', + dspdistortion_active ? 'x' : ' ', + dspchorus_active ? 'x' : ' ', + dspparameq_active ? 'x' : ' '); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/filecallbacks/Makefile b/CocosDenshion/third_party/fmod/examples/filecallbacks/Makefile new file mode 100644 index 0000000000..741a5e3c6b --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/filecallbacks/Makefile @@ -0,0 +1,11 @@ +filecallbacks_cpp: main.cpp + g++ -O3 -o filecallbacks main.cpp ../../api/lib/libfmodex.so -pthread + +filecallbacks_c: main.c + g++ -O3 -o filecallbacks main.c ../../api/lib/libfmodex.so -pthread + +run: + ./filecallbacks + +clean: + rm -f filecallbacks diff --git a/CocosDenshion/third_party/fmod/examples/filecallbacks/main.c b/CocosDenshion/third_party/fmod/examples/filecallbacks/main.c new file mode 100644 index 0000000000..fe106fb941 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/filecallbacks/main.c @@ -0,0 +1,230 @@ +/*=============================================================================================== + File Callbacks Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example is a modified version of the playstream example. + It shows the correct way declare and handle fmod file callbacks with System::setFileSystem. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +/* + TIPS: + + 1. use F_CALLBACK. Do NOT force cast your own function to fmod's callback type. + 2. return FMOD_ERR_FILE_NOTFOUND in open as required. + 3. return number of bytes read in read callback. Do not get the size and count + around the wrong way in fread for example, this would return 1 instead of the number of bytes read. + + QUESTIONS: + + 1. Why does fmod seek to the end and read? Because it is looking for ID3V1 tags. + Use FMOD_IGNORETAGS in FMOD_System_CreateSound / FMOD_System_CreateStream if you don't like this behaviour. +*/ + +FMOD_RESULT F_CALLBACK myopen(const char *name, int unicode, unsigned int *filesize, void **handle, void **userdata) +{ + if (name) + { + FILE *fp; + + fp = fopen(name, "rb"); + if (!fp) + { + return FMOD_ERR_FILE_NOTFOUND; + } + + fseek(fp, 0, SEEK_END); + *filesize = ftell(fp); + fseek(fp, 0, SEEK_SET); + + *userdata = (void *)0x12345678; + *handle = fp; + } + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myclose(void *handle, void *userdata) +{ + if (!handle) + { + return FMOD_ERR_INVALID_PARAM; + } + + fclose((FILE *)handle); + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myread(void *handle, void *buffer, unsigned int sizebytes, unsigned int *bytesread, void *userdata) +{ + if (!handle) + { + return FMOD_ERR_INVALID_PARAM; + } + + if (bytesread) + { + *bytesread = (int)fread(buffer, 1, sizebytes, (FILE *)handle); + + if (*bytesread < sizebytes) + { + return FMOD_ERR_FILE_EOF; + } + } + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myseek(void *handle, unsigned int pos, void *userdata) +{ + if (!handle) + { + return FMOD_ERR_INVALID_PARAM; + } + + fseek((FILE *)handle, pos, SEEK_SET); + + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 1, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + result = FMOD_System_SetFileSystem(system, myopen, myclose, myread, myseek, 0, 0, 2048); + ERRCHECK(result); + + result = FMOD_System_CreateStream(system, "../media/wave.mp3", FMOD_HARDWARE | FMOD_LOOP_NORMAL | FMOD_2D, 0, &sound); + ERRCHECK(result); + + printf("====================================================================\n"); + printf("PlayStream Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("====================================================================\n"); + printf("\n"); + printf("Press space to pause, Esc to quit\n"); + printf("\n"); + + /* + Play the sound. + */ + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, 0, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + int paused; + FMOD_Channel_GetPaused(channel, &paused); + FMOD_Channel_SetPaused(channel, !paused); + break; + } + } + } + + FMOD_System_Update(system); + + if (channel) + { + unsigned int ms; + unsigned int lenms; + int playing; + int paused; + + FMOD_Channel_IsPlaying(channel, &playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPaused(channel, &paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Sound_GetLength(sound, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/filecallbacks/main.cpp b/CocosDenshion/third_party/fmod/examples/filecallbacks/main.cpp new file mode 100644 index 0000000000..a4730916d1 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/filecallbacks/main.cpp @@ -0,0 +1,229 @@ +/*=============================================================================================== + File Callbacks Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example is a modified version of the playstream example. + It shows the correct way declare and handle fmod file callbacks with System::setFileSystem. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +/* + TIPS: + + 1. use F_CALLBACK. Do NOT force cast your own function to fmod's callback type. + 2. return FMOD_ERR_FILE_NOTFOUND in open as required. + 3. return number of bytes read in read callback. Do not get the size and count + around the wrong way in fread for example, this would return 1 instead of the number of bytes read. + + QUESTIONS: + + 1. Why does fmod seek to the end and read? Because it is looking for ID3V1 tags. + Use FMOD_IGNORETAGS in System::createSound / System::createStream if you don't like this behaviour. + +*/ + +FMOD_RESULT F_CALLBACK myopen(const char *name, int unicode, unsigned int *filesize, void **handle, void **userdata) +{ + if (name) + { + FILE *fp; + + fp = fopen(name, "rb"); + if (!fp) + { + return FMOD_ERR_FILE_NOTFOUND; + } + + fseek(fp, 0, SEEK_END); + *filesize = ftell(fp); + fseek(fp, 0, SEEK_SET); + + *userdata = (void *)0x12345678; + *handle = fp; + } + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myclose(void *handle, void *userdata) +{ + if (!handle) + { + return FMOD_ERR_INVALID_PARAM; + } + + fclose((FILE *)handle); + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myread(void *handle, void *buffer, unsigned int sizebytes, unsigned int *bytesread, void *userdata) +{ + if (!handle) + { + return FMOD_ERR_INVALID_PARAM; + } + + if (bytesread) + { + *bytesread = (int)fread(buffer, 1, sizebytes, (FILE *)handle); + + if (*bytesread < sizebytes) + { + return FMOD_ERR_FILE_EOF; + } + } + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myseek(void *handle, unsigned int pos, void *userdata) +{ + if (!handle) + { + return FMOD_ERR_INVALID_PARAM; + } + + fseek((FILE *)handle, pos, SEEK_SET); + + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(1, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->setFileSystem(myopen, myclose, myread, myseek, 0, 0, 2048); + ERRCHECK(result); + + result = system->createStream("../media/wave.mp3", FMOD_HARDWARE | FMOD_LOOP_NORMAL | FMOD_2D, 0, &sound); + ERRCHECK(result); + + printf("========================================================================\n"); + printf("File Callbacks Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("========================================================================\n"); + printf("\n"); + printf("Press space to pause, Esc to quit\n"); + printf("\n"); + + /* + Play the sound. + */ + + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + bool paused; + channel->getPaused(&paused); + channel->setPaused(!paused); + break; + } + } + } + + system->update(); + + if (channel) + { + unsigned int ms; + unsigned int lenms; + bool playing; + bool paused; + + channel->isPlaying(&playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE)) + { + ERRCHECK(result); + } + + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE)) + { + ERRCHECK(result); + } + + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE)) + { + ERRCHECK(result); + } + + result = sound->getLength(&lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE)) + { + ERRCHECK(result); + } + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/generatetone/Makefile b/CocosDenshion/third_party/fmod/examples/generatetone/Makefile new file mode 100644 index 0000000000..bc7f3cc699 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/generatetone/Makefile @@ -0,0 +1,11 @@ +generatetone_cpp: main.cpp + g++ -O3 -o generatetone main.cpp ../../api/lib/libfmodex.so + +generatetone_c: main.c + g++ -O3 -o generatetone main.c ../../api/lib/libfmodex.so + +run: + ./generatetone + +clean: + rm -f generatetone diff --git a/CocosDenshion/third_party/fmod/examples/generatetone/main.c b/CocosDenshion/third_party/fmod/examples/generatetone/main.c new file mode 100644 index 0000000000..2c668b92cf --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/generatetone/main.c @@ -0,0 +1,230 @@ +/*=============================================================================================== + GenerateTone Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how simply play generated tones using FMOD_System_PlayDSP instead of + manually connecting and disconnecting DSP units. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_CHANNEL *channel = 0; + FMOD_DSP *dsp = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + /* + Create DSP units for each type of noise we want. + */ + result = FMOD_System_CreateDSPByType(system, FMOD_DSP_TYPE_OSCILLATOR, &dsp); + ERRCHECK(result); + result = FMOD_DSP_SetParameter(dsp, FMOD_DSP_OSCILLATOR_RATE, 440.0f); + ERRCHECK(result); + + printf("======================================================================\n"); + printf("GenerateTone Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("======================================================================\n\n"); + printf("\n"); + printf("Press '1' to play a sine wave\n"); + printf("Press '2' to play a square wave\n"); + printf("Press '3' to play a triangle wave\n"); + printf("Press '4' to play a saw wave\n"); + printf("Press '5' to play a white noise\n"); + printf("Press 's' to stop channel\n"); + printf("\n"); + printf("Press 'v'/'V' to change channel volume\n"); + printf("Press 'f'/'F' to change channel frequency\n"); + printf("Press '['/']' to change channel pan\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = FMOD_System_PlayDSP(system, FMOD_CHANNEL_REUSE, dsp, TRUE, &channel); + + FMOD_Channel_SetVolume(channel, 0.5f); + result = FMOD_DSP_SetParameter(dsp, FMOD_DSP_OSCILLATOR_TYPE, 0); + ERRCHECK(result); + FMOD_Channel_SetPaused(channel, FALSE); + break; + } + case '2' : + { + result = FMOD_System_PlayDSP(system, FMOD_CHANNEL_REUSE, dsp, TRUE, &channel); + FMOD_Channel_SetVolume(channel, 0.125f); + result = FMOD_DSP_SetParameter(dsp, FMOD_DSP_OSCILLATOR_TYPE, 1); + ERRCHECK(result); + FMOD_Channel_SetPaused(channel, FALSE); + break; + } + case '3' : + { + result = FMOD_System_PlayDSP(system, FMOD_CHANNEL_REUSE, dsp, TRUE, &channel); + FMOD_Channel_SetVolume(channel, 0.5f); + result = FMOD_DSP_SetParameter(dsp, FMOD_DSP_OSCILLATOR_TYPE, 2); + ERRCHECK(result); + FMOD_Channel_SetPaused(channel, FALSE); + break; + } + case '4' : + { + result = FMOD_System_PlayDSP(system, FMOD_CHANNEL_REUSE, dsp, TRUE, &channel); + FMOD_Channel_SetVolume(channel, 0.125f); + result = FMOD_DSP_SetParameter(dsp, FMOD_DSP_OSCILLATOR_TYPE, 4); + ERRCHECK(result); + FMOD_Channel_SetPaused(channel, FALSE); + break; + } + case '5' : + { + result = FMOD_System_PlayDSP(system, FMOD_CHANNEL_REUSE, dsp, TRUE, &channel); + FMOD_Channel_SetVolume(channel, 0.25f); + result = FMOD_DSP_SetParameter(dsp, FMOD_DSP_OSCILLATOR_TYPE, 5); + ERRCHECK(result); + FMOD_Channel_SetPaused(channel, FALSE); + break; + } + case 's' : + { + FMOD_Channel_Stop(channel); + break; + } + case 'v' : + { + float volume; + + FMOD_Channel_GetVolume(channel, &volume); + volume -= 0.1f; + FMOD_Channel_SetVolume(channel, volume); + break; + } + case 'V' : + { + float volume; + + FMOD_Channel_GetVolume(channel, &volume); + volume += 0.1f; + FMOD_Channel_SetVolume(channel, volume); + break; + } + case 'f' : + { + float frequency; + + FMOD_Channel_GetFrequency(channel, &frequency); + frequency -= 500.0f; + FMOD_Channel_SetFrequency(channel, frequency); + break; + } + case 'F' : + { + float frequency; + + FMOD_Channel_GetFrequency(channel, &frequency); + frequency += 500.0f; + FMOD_Channel_SetFrequency(channel, frequency); + break; + } + case '[' : + { + float pan; + + FMOD_Channel_GetPan(channel, &pan); + pan -= 0.1f; + FMOD_Channel_SetPan(channel, pan); + break; + } + case ']' : + { + float pan; + + FMOD_Channel_GetPan(channel, &pan); + pan += 0.1f; + FMOD_Channel_SetPan(channel, pan); + break; + } + } + } + + FMOD_System_Update(system); + + { + float frequency = 0, volume = 0, pan = 0; + int playing = FALSE; + + if (channel) + { + FMOD_Channel_GetFrequency(channel, &frequency); + FMOD_Channel_GetVolume(channel, &volume); + FMOD_Channel_GetPan(channel, &pan); + FMOD_Channel_IsPlaying(channel, &playing); + } + + printf("Channel %s : Frequency %.1f Volume %.1f Pan %.1f \r", playing ? "playing" : "stopped", frequency, volume, pan); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_DSP_Release(dsp); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/generatetone/main.cpp b/CocosDenshion/third_party/fmod/examples/generatetone/main.cpp new file mode 100644 index 0000000000..eba958d49f --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/generatetone/main.cpp @@ -0,0 +1,234 @@ +/*=============================================================================================== + GenerateTone Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how simply play generated tones using FMOD::System::payDSP instead of + manually connecting and disconnecting DSP units. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Channel *channel = 0; + FMOD::DSP *dsp = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + /* + Create an oscillator DSP unit for the tone. + */ + result = system->createDSPByType(FMOD_DSP_TYPE_OSCILLATOR, &dsp); + ERRCHECK(result); + result = dsp->setParameter(FMOD_DSP_OSCILLATOR_RATE, 440.0f); + ERRCHECK(result); + + printf("======================================================================\n"); + printf("GenerateTone Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("======================================================================\n\n"); + printf("\n"); + printf("Press '1' to play a sine wave\n"); + printf("Press '2' to play a square wave\n"); + printf("Press '3' to play a triangle wave\n"); + printf("Press '4' to play a saw wave\n"); + printf("Press '5' to play a white noise\n"); + printf("Press 's' to stop channel\n"); + printf("\n"); + printf("Press 'v'/'V' to change channel volume\n"); + printf("Press 'f'/'F' to change channel frequency\n"); + printf("Press '['/']' to change channel pan\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = system->playDSP(FMOD_CHANNEL_REUSE, dsp, true, &channel); + + channel->setVolume(0.5f); + result = dsp->setParameter(FMOD_DSP_OSCILLATOR_TYPE, 0); + ERRCHECK(result); + channel->setPaused(false); + break; + } + case '2' : + { + result = system->playDSP(FMOD_CHANNEL_REUSE, dsp, true, &channel); + + channel->setVolume(0.125f); + result = dsp->setParameter(FMOD_DSP_OSCILLATOR_TYPE, 1); + ERRCHECK(result); + channel->setPaused(false); + break; + } + case '3' : + { + result = system->playDSP(FMOD_CHANNEL_REUSE, dsp, true, &channel); + + channel->setVolume(0.5f); + result = dsp->setParameter(FMOD_DSP_OSCILLATOR_TYPE, 2); + ERRCHECK(result); + channel->setPaused(false); + break; + } + case '4' : + { + result = system->playDSP(FMOD_CHANNEL_REUSE, dsp, true, &channel); + + channel->setVolume(0.125f); + result = dsp->setParameter(FMOD_DSP_OSCILLATOR_TYPE, 4); + ERRCHECK(result); + channel->setPaused(false); + break; + } + case '5' : + { + result = system->playDSP(FMOD_CHANNEL_REUSE, dsp, true, &channel); + + channel->setVolume(0.25f); + result = dsp->setParameter(FMOD_DSP_OSCILLATOR_TYPE, 5); + ERRCHECK(result); + channel->setPaused(false); + break; + } + case 's' : + { + channel->stop(); + break; + } + case 'v' : + { + float volume; + + channel->getVolume(&volume); + volume -= 0.1f; + channel->setVolume(volume); + break; + } + case 'V' : + { + float volume; + + channel->getVolume(&volume); + volume += 0.1f; + channel->setVolume(volume); + break; + } + case 'f' : + { + float frequency; + + channel->getFrequency(&frequency); + frequency -= 500.0f; + channel->setFrequency(frequency); + break; + } + case 'F' : + { + float frequency; + + channel->getFrequency(&frequency); + frequency += 500.0f; + channel->setFrequency(frequency); + break; + } + case '[' : + { + float pan; + + channel->getPan(&pan); + pan -= 0.1f; + channel->setPan(pan); + break; + } + case ']' : + { + float pan; + + channel->getPan(&pan); + pan += 0.1f; + channel->setPan(pan); + break; + } + } + } + + system->update(); + + { + float frequency = 0, volume = 0, pan = 0; + bool playing = false; + + if (channel) + { + channel->getFrequency(&frequency); + channel->getVolume(&volume); + channel->getPan(&pan); + channel->isPlaying(&playing); + } + + printf("Channel %s : Frequency %.1f Volume %.1f Pan %.1f \r", playing ? "playing" : "stopped", frequency, volume, pan); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = dsp->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/loadfrommemory/Makefile b/CocosDenshion/third_party/fmod/examples/loadfrommemory/Makefile new file mode 100644 index 0000000000..ceec753a43 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/loadfrommemory/Makefile @@ -0,0 +1,11 @@ +loadfrommemory_cpp: main.cpp + g++ -O3 -o loadfrommemory main.cpp ../../api/lib/libfmodex.so -pthread + +loadfrommemory_c: main.c + g++ -O3 -o loadfrommemory main.c ../../api/lib/libfmodex.so -pthread + +run: + ./loadfrommemory + +clean: + rm -f loadfrommemory diff --git a/CocosDenshion/third_party/fmod/examples/loadfrommemory/main.c b/CocosDenshion/third_party/fmod/examples/loadfrommemory/main.c new file mode 100644 index 0000000000..f6f3d7a577 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/loadfrommemory/main.c @@ -0,0 +1,219 @@ +/*=============================================================================================== + Load from memory example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example is simply a variant of the play sound example, but it loads the data into memory + then uses the 'load from memory' feature of System::createSound. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +void LoadFileIntoMemory(const char *name, void **buff, int *length) +{ + FILE *fp = fopen(name, "rb"); + + fseek(fp, 0, SEEK_END); + *length = ftell(fp); + fseek(fp, 0, SEEK_SET); + + *buff = malloc(*length); + fread(*buff, *length, 1, fp); + + fclose(fp); +} + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound1, *sound2, *sound3; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + void *buff = 0; + int length = 0; + FMOD_CREATESOUNDEXINFO exinfo; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + LoadFileIntoMemory("../media/drumloop.wav", &buff, &length); + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.length = length; + + result = FMOD_System_CreateSound(system, (const char *)buff, FMOD_HARDWARE | FMOD_OPENMEMORY, &exinfo, &sound1); + ERRCHECK(result); + + result = FMOD_Sound_SetMode(sound1, FMOD_LOOP_OFF); + ERRCHECK(result); + + free(buff); // don't need the original memory any more. Note! If loading as a stream, the memory must stay active so do not free it! + + LoadFileIntoMemory("../media/jaguar.wav", &buff, &length); + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.length = length; + + result = FMOD_System_CreateSound(system, (const char *)buff, FMOD_SOFTWARE | FMOD_OPENMEMORY, &exinfo, &sound2); + ERRCHECK(result); + + free(buff); // don't need the original memory any more. Note! If loading as a stream, the memory must stay active so do not free it! + + LoadFileIntoMemory("../media/swish.wav", &buff, &length); + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.length = length; + + result = FMOD_System_CreateSound(system, (const char *)buff, FMOD_HARDWARE | FMOD_OPENMEMORY, &exinfo, &sound3); + ERRCHECK(result); + + free(buff); // don't need the original memory any more. Note! If loading as a stream, the memory must stay active so do not free it! + + printf("==========================================================================\n"); + printf("Load from memory example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==========================================================================\n"); + printf("\n"); + printf("Press '1' to play a mono sound using hardware mixing\n"); + printf("Press '2' to play a mono sound using software mixing\n"); + printf("Press '3' to play a stereo sound using hardware mixing\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, 0, &channel); + ERRCHECK(result); + break; + } + case '2' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound2, 0, &channel); + ERRCHECK(result); + break; + } + case '3' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound3, 0, &channel); + ERRCHECK(result); + break; + } + } + } + + FMOD_System_Update(system); + + { + unsigned int ms = 0; + unsigned int lenms = 0; + int playing = 0; + int paused = 0; + int channelsplaying = 0; + + if (channel) + { + FMOD_SOUND *currentsound = 0; + + result = FMOD_Channel_IsPlaying(channel, &playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPaused(channel, &paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + FMOD_Channel_GetCurrentSound(channel, ¤tsound); + if (currentsound) + { + result = FMOD_Sound_GetLength(currentsound, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + } + + result = FMOD_Sound_GetLength(sound1, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + FMOD_System_GetChannelsPlaying(system, &channelsplaying); + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : Channels Playing %2d\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped", channelsplaying); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound1); + ERRCHECK(result); + result = FMOD_Sound_Release(sound2); + ERRCHECK(result); + result = FMOD_Sound_Release(sound3); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/loadfrommemory/main.cpp b/CocosDenshion/third_party/fmod/examples/loadfrommemory/main.cpp new file mode 100644 index 0000000000..2dba723573 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/loadfrommemory/main.cpp @@ -0,0 +1,213 @@ +/*=============================================================================================== + Load from memory example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example is simply a variant of the play sound example, but it loads the data into memory + then uses the 'load from memory' feature of System::createSound. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +void LoadFileIntoMemory(const char *name, void **buff, int *length) +{ + FILE *fp = fopen(name, "rb"); + + fseek(fp, 0, SEEK_END); + *length = ftell(fp); + fseek(fp, 0, SEEK_SET); + + *buff = malloc(*length); + fread(*buff, *length, 1, fp); + + fclose(fp); +} + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound1, *sound2, *sound3; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + void *buff = 0; + int length = 0; + FMOD_CREATESOUNDEXINFO exinfo; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + LoadFileIntoMemory("../media/drumloop.wav", &buff, &length); + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.length = length; + + result = system->createSound((const char *)buff, FMOD_HARDWARE | FMOD_OPENMEMORY, &exinfo, &sound1); + ERRCHECK(result); + + result = sound1->setMode(FMOD_LOOP_OFF); + ERRCHECK(result); + + free(buff); // don't need the original memory any more. Note! If loading as a stream, the memory must stay active so do not free it! + + LoadFileIntoMemory("../media/jaguar.wav", &buff, &length); + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.length = length; + + result = system->createSound((const char *)buff, FMOD_SOFTWARE | FMOD_OPENMEMORY, &exinfo, &sound2); + ERRCHECK(result); + + free(buff); // don't need the original memory any more. Note! If loading as a stream, the memory must stay active so do not free it! + + LoadFileIntoMemory("../media/swish.wav", &buff, &length); + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.length = length; + + result = system->createSound((const char *)buff, FMOD_HARDWARE | FMOD_OPENMEMORY, &exinfo, &sound3); + ERRCHECK(result); + + free(buff); // don't need the original memory any more. Note! If loading as a stream, the memory must stay active so do not free it! + + printf("==========================================================================\n"); + printf("Load from memory example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==========================================================================\n"); + printf("\n"); + printf("Press '1' to play a mono sound using hardware mixing\n"); + printf("Press '2' to play a mono sound using software mixing\n"); + printf("Press '3' to play a stereo sound using hardware mixing\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound1, false, &channel); + ERRCHECK(result); + break; + } + case '2' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound2, false, &channel); + ERRCHECK(result); + break; + } + case '3' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound3, false, &channel); + ERRCHECK(result); + break; + } + } + } + + system->update(); + + { + unsigned int ms = 0; + unsigned int lenms = 0; + bool playing = 0; + bool paused = 0; + int channelsplaying = 0; + + if (channel) + { + FMOD::Sound *currentsound = 0; + + result = channel->isPlaying(&playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + channel->getCurrentSound(¤tsound); + if (currentsound) + { + result = currentsound->getLength(&lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + } + + system->getChannelsPlaying(&channelsplaying); + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : Channels Playing %2d\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped", channelsplaying); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound1->release(); + ERRCHECK(result); + result = sound2->release(); + ERRCHECK(result); + result = sound3->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/media/playlist.m3u b/CocosDenshion/third_party/fmod/examples/media/playlist.m3u new file mode 100644 index 0000000000..381935fcc0 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/media/playlist.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:11,Unknown - FMOD example wave +wave.mp3 +#EXTINF:1,swish +swish.wav +#EXTINF:2,stereo +stereo.ogg +#EXTINF:1,jaguar +jaguar.wav +#EXTINF:0,drumloop +drumloop.wav diff --git a/CocosDenshion/third_party/fmod/examples/media/wave.mp3.REMOVED.git-id b/CocosDenshion/third_party/fmod/examples/media/wave.mp3.REMOVED.git-id new file mode 100644 index 0000000000..d18eccea47 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/media/wave.mp3.REMOVED.git-id @@ -0,0 +1 @@ +400b6a591c4687406c5b5943181e083952872de7 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/examples/multiplesoundcard/Makefile b/CocosDenshion/third_party/fmod/examples/multiplesoundcard/Makefile new file mode 100644 index 0000000000..b221cabf3e --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/multiplesoundcard/Makefile @@ -0,0 +1,11 @@ +multiplesoundcard_cpp: main.cpp + g++ -O3 -o multiplesoundcard main.cpp ../../api/lib/libfmodex.so -pthread + +multiplesoundcard_c: main.c + g++ -O3 -o multiplesoundcard main.c ../../api/lib/libfmodex.so -pthread + +run: + ./multiplesoundcard + +clean: + rm -f multiplesoundcard diff --git a/CocosDenshion/third_party/fmod/examples/multiplesoundcard/main.c b/CocosDenshion/third_party/fmod/examples/multiplesoundcard/main.c new file mode 100644 index 0000000000..e99247f834 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/multiplesoundcard/main.c @@ -0,0 +1,226 @@ +/*=============================================================================================== + MultipleSoundCard Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to simply load and play multiple sounds. This is about the simplest + use of FMOD. + This makes FMOD decode the into memory when it loads. If the sounds are big and possibly take + up a lot of ram, then it would be better to use the FMOD_CREATESTREAM flag so that it is + streamed in realtime as it plays. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *systemA, *systemB; + FMOD_SOUND *soundA, *soundB; + FMOD_CHANNEL *channelA = 0, *channelB = 0; + FMOD_RESULT result; + int key, count, numdrivers, driver; + unsigned int version; + + /* + Create Sound Card A + */ + result = FMOD_System_Create(&systemA); + ERRCHECK(result); + + result = FMOD_System_GetVersion(systemA, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = FMOD_System_GetNumDrivers(systemA, &numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Select soundcard A\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = FMOD_System_GetDriverInfo(systemA, count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + if (key == 27) + { + return 0; + } + driver = key - '1'; + } while (driver < 0 || driver >= numdrivers); + + printf("\n"); + + result = FMOD_System_SetDriver(systemA, driver); + ERRCHECK(result); + + result = FMOD_System_Init(systemA, 32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + + + /* + Create Sound Card B + */ + result = FMOD_System_Create(&systemB); + ERRCHECK(result); + + result = FMOD_System_GetVersion(systemB, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = FMOD_System_GetNumDrivers(systemB, &numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Select soundcard B\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = FMOD_System_GetDriverInfo(systemB, count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + if (key == 27) + { + return 0; + } + driver = key - '1'; + } while (driver < 0 || driver >= numdrivers); + + printf("\n"); + + result = FMOD_System_SetDriver(systemB, driver); + ERRCHECK(result); + + result = FMOD_System_Init(systemB, 32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + + /* + Load 1 sample into each soundcard. + */ + result = FMOD_System_CreateSound(systemA, "../media/drumloop.wav", FMOD_HARDWARE, 0, &soundA); + ERRCHECK(result); + result = FMOD_Sound_SetMode(soundA, FMOD_LOOP_OFF); + ERRCHECK(result); + + result = FMOD_System_CreateSound(systemB, "../media/jaguar.wav", FMOD_HARDWARE, 0,&soundB); + ERRCHECK(result); + + printf("======================================================================\n"); + printf("MultipleSoundCard Example. Copyright (c) Firelight Technologies 2004.\n"); + printf("======================================================================\n"); + printf("\n"); + printf("Press '1' to play a sound on soundcard A\n"); + printf("Press '2' to play a sound on soundcard B\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + int channelsplayingA = 0; + int channelsplayingB = 0; + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = FMOD_System_PlaySound(systemA, FMOD_CHANNEL_FREE, soundA, 0, &channelA); + ERRCHECK(result); + break; + } + case '2' : + { + result = FMOD_System_PlaySound(systemB, FMOD_CHANNEL_FREE, soundB, 0, &channelB); + ERRCHECK(result); + break; + } + } + } + + FMOD_System_Update(systemA); + FMOD_System_Update(systemB); + + FMOD_System_GetChannelsPlaying(systemA, &channelsplayingA); + FMOD_System_GetChannelsPlaying(systemB, &channelsplayingB); + + printf("Channels Playing on A %2d. Channels Playing on B %2d.\r", channelsplayingA, channelsplayingB); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(soundA); + ERRCHECK(result); + result = FMOD_System_Close(systemA); + ERRCHECK(result); + result = FMOD_System_Release(systemA); + ERRCHECK(result); + + result = FMOD_Sound_Release(soundB); + ERRCHECK(result); + result = FMOD_System_Close(systemB); + ERRCHECK(result); + result = FMOD_System_Release(systemB); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/multiplesoundcard/main.cpp b/CocosDenshion/third_party/fmod/examples/multiplesoundcard/main.cpp new file mode 100644 index 0000000000..aec4520f4f --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/multiplesoundcard/main.cpp @@ -0,0 +1,228 @@ +/*=============================================================================================== + MultipleSoundCard Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to play sounds on 2 different sound cards from the same application. + It creates 2 FMOD::System objects, selects a different sound device for each, then allows + the user to play 1 sound on 1 soundcard and another sound on another soundcard. + + Note that sounds created on device A cannot be played on device B and vice versa. + You will have to each sound separately for each sound card. Device A might load the sound + into its own memory so obviously device B wouldnt be able to play it. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *systemA, *systemB; + FMOD::Sound *soundA, *soundB; + FMOD::Channel *channelA = 0, *channelB = 0;; + FMOD_RESULT result; + int key, count, numdrivers, driver; + unsigned int version; + + /* + Create Sound Card A + */ + result = FMOD::System_Create(&systemA); + ERRCHECK(result); + + result = systemA->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = systemA->getNumDrivers(&numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Select soundcard A\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = systemA->getDriverInfo(count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + if (key == 27) + { + return 0; + } + driver = key - '1'; + } while (driver < 0 || driver >= numdrivers); + + printf("\n"); + + result = systemA->setDriver(driver); + ERRCHECK(result); + + result = systemA->init(32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + + + /* + Create Sound Card B + */ + result = FMOD::System_Create(&systemB); + ERRCHECK(result); + + result = systemB->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = systemB->getNumDrivers(&numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Select soundcard B\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = systemB->getDriverInfo(count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + if (key == 27) + { + return 0; + } + driver = key - '1'; + } while (driver < 0 || driver >= numdrivers); + + printf("\n"); + + result = systemB->setDriver(driver); + ERRCHECK(result); + + result = systemB->init(32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + + /* + Load 1 sample into each soundcard. + */ + result = systemA->createSound("../media/drumloop.wav", FMOD_HARDWARE, 0, &soundA); + ERRCHECK(result); + result = soundA->setMode(FMOD_LOOP_OFF); + ERRCHECK(result); + + result = systemB->createSound("../media/jaguar.wav", FMOD_HARDWARE, 0, &soundB); + ERRCHECK(result); + + printf("======================================================================\n"); + printf("MultipleSoundCard Example. Copyright (c) Firelight Technologies 2004.\n"); + printf("======================================================================\n"); + printf("\n"); + printf("Press '1' to play a sound on soundcard A\n"); + printf("Press '2' to play a sound on soundcard B\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + int channelsplayingA = 0; + int channelsplayingB = 0; + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = systemA->playSound(FMOD_CHANNEL_FREE, soundA, 0, &channelA); + ERRCHECK(result); + break; + } + case '2' : + { + result = systemB->playSound(FMOD_CHANNEL_FREE, soundB, 0, &channelB); + ERRCHECK(result); + break; + } + } + } + + systemA->update(); + systemB->update(); + + systemA->getChannelsPlaying(&channelsplayingA); + systemB->getChannelsPlaying(&channelsplayingB); + + printf("Channels Playing on A %2d. Channels Playing on B %2d.\r", channelsplayingA, channelsplayingB); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = soundA->release(); + ERRCHECK(result); + result = systemA->close(); + ERRCHECK(result); + result = systemA->release(); + ERRCHECK(result); + + result = soundB->release(); + ERRCHECK(result); + result = systemB->close(); + ERRCHECK(result); + result = systemB->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/multispeakeroutput/Makefile b/CocosDenshion/third_party/fmod/examples/multispeakeroutput/Makefile new file mode 100644 index 0000000000..5030259732 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/multispeakeroutput/Makefile @@ -0,0 +1,11 @@ +multispeakeroutput_cpp: main.cpp + g++ -O3 -o multispeakeroutput main.cpp ../../api/lib/libfmodex.so -pthread + +multispeakeroutput_c: main.c + g++ -O3 -o multispeakeroutput main.c ../../api/lib/libfmodex.so -pthread + +run: + ./multispeakeroutput + +clean: + rm -f multispeakeroutput diff --git a/CocosDenshion/third_party/fmod/examples/multispeakeroutput/main.c b/CocosDenshion/third_party/fmod/examples/multispeakeroutput/main.c new file mode 100644 index 0000000000..a2e3be628c --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/multispeakeroutput/main.c @@ -0,0 +1,335 @@ +/*=============================================================================================== + Multi Speaker Output Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to play sounds in multiple speakers, and also how to even assign + sound subchannels, such as those in a stereo sound to different individual speakers. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound1, *sound2; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + /* + Multichannel only supported in ALSA mode in 5.1 and 7.1. + If the user doesn't have 5.1 speakers then only the speakers + they have will be audible. + */ + + result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_ALSA); + ERRCHECK(result); + + FMOD_System_SetSpeakerMode(system, FMOD_SPEAKERMODE_5POINT1); + ERRCHECK(result); + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/drumloop.wav", FMOD_SOFTWARE | FMOD_2D, 0, &sound1); + ERRCHECK(result); + result = FMOD_Sound_SetMode(sound1, FMOD_LOOP_OFF); + + result = FMOD_System_CreateSound(system, "../media/stereo.ogg", FMOD_SOFTWARE | FMOD_2D, 0, &sound2); + ERRCHECK(result); + + printf("==============================================================================\n"); + printf("Multi Speaker Output Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==============================================================================\n"); + printf("\n"); + printf("Note! You must have your speaker configuration set up correctly\n"); + printf(" in the windows control panel for this to work properly.\n"); + printf("\n"); + printf("Press '1' to play a mono sound on the FRONT LEFT speaker.\n"); + printf("Press '2' to play a mono sound on the FRONT RIGHT speaker.\n"); + printf("Press '3' to play a mono sound on the CENTER speaker.\n"); + printf("Press '4' to play a mono sound on the REAR LEFT speaker.\n"); + printf("Press '5' to play a mono sound on the REAR RIGHT speaker.\n"); + printf("Press '6' to play a mono sound on the SIDE LEFT speaker.\n"); + printf("Press '7' to play a mono sound on the SIDE RIGHT speaker.\n"); + printf("Press '8' to play a stereo sound on the front speakers.\n"); + printf("Press '9' to play a stereo sound on the front speakers but channel swapped.\n"); + printf("Press '0' to play the right part of a stereo sound on the CENTER speaker.\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, TRUE, &channel); + ERRCHECK(result); + + result = FMOD_Channel_SetSpeakerMix(channel, 1.0f, 0, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + break; + } + case '2' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, TRUE, &channel); + ERRCHECK(result); + + result = FMOD_Channel_SetSpeakerMix(channel, 0, 1.0f, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + break; + } + case '3' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, TRUE, &channel); + ERRCHECK(result); + + result = FMOD_Channel_SetSpeakerMix(channel, 0, 0, 1.0f, 0, 0, 0, 0, 0); + ERRCHECK(result); + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + break; + } + case '4' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, TRUE, &channel); + ERRCHECK(result); + + result = FMOD_Channel_SetSpeakerMix(channel, 0, 0, 0, 0, 1.0f, 0, 0, 0); + ERRCHECK(result); + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + break; + } + case '5' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, TRUE, &channel); + ERRCHECK(result); + + result = FMOD_Channel_SetSpeakerMix(channel, 0, 0, 0, 0, 0, 1.0f, 0, 0); + ERRCHECK(result); + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + break; + } + case '6' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, TRUE, &channel); + ERRCHECK(result); + + result = FMOD_Channel_SetSpeakerMix(channel, 0, 0, 0, 0, 0, 0, 1.0f, 0); + ERRCHECK(result); + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + break; + } + case '7' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, TRUE, &channel); + ERRCHECK(result); + + result = FMOD_Channel_SetSpeakerMix(channel, 0, 0, 0, 0, 0, 0, 0, 1.0f); + ERRCHECK(result); + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + + break; + } + case '8' : + { + float levels[2] = { 0, 1.0f }; + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound2, TRUE, &channel); + ERRCHECK(result); + + /* + By default a stereo sound would play in all right and all left speakers, so this forces it to just the front. + */ + result = FMOD_Channel_SetSpeakerMix(channel, 1.0f, 1.0f, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + + break; + } + case '9' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound2, TRUE, &channel); + ERRCHECK(result); + + /* + Clear out all speakers first. + */ + result = FMOD_Channel_SetSpeakerMix(channel, 0, 0, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + /* + Put the left channel of the sound in the right speaker. + */ + { + float levels[2] = { 0, 1.0f }; /* This array represents the source stereo sound. l/r */ + + result = FMOD_Channel_SetSpeakerLevels(channel, FMOD_SPEAKER_FRONT_LEFT, levels, 2); + ERRCHECK(result); + } + /* + Put the right channel of the sound in the left speaker. + */ + { + float levels[2] = { 1.0f, 0 }; /* This array represents the source stereo sound. l/r */ + + result = FMOD_Channel_SetSpeakerLevels(channel, FMOD_SPEAKER_FRONT_RIGHT, levels, 2); + ERRCHECK(result); + } + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + + break; + } + case '0' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound2, TRUE, &channel); + ERRCHECK(result); + + /* + Clear out all speakers first. + */ + result = FMOD_Channel_SetSpeakerMix(channel, 0, 0, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + /* + Put the left channel of the sound in the right speaker. + */ + { + float levels[2] = { 0, 1.0f }; /* This array represents the source stereo sound. l/r */ + + result = FMOD_Channel_SetSpeakerLevels(channel, FMOD_SPEAKER_FRONT_CENTER, levels, 2); + ERRCHECK(result); + } + + result = FMOD_Channel_SetPaused(channel, FALSE); + ERRCHECK(result); + + break; + } + } + } + + FMOD_System_Update(system); + + { + unsigned int ms = 0; + unsigned int lenms = 0; + int playing = FALSE; + int paused = FALSE; + int channelsplaying = 0; + + if (channel) + { + FMOD_SOUND *currentsound = 0; + + result = FMOD_Channel_IsPlaying(channel, &playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPaused(channel, &paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + FMOD_Channel_GetCurrentSound(channel, ¤tsound); + if (currentsound) + { + result = FMOD_Sound_GetLength(currentsound, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + } + + FMOD_System_GetChannelsPlaying(system, &channelsplaying); + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : Channels Playing %2d\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped", channelsplaying); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound1); + ERRCHECK(result); + result = FMOD_Sound_Release(sound2); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/multispeakeroutput/main.cpp b/CocosDenshion/third_party/fmod/examples/multispeakeroutput/main.cpp new file mode 100644 index 0000000000..c771563e3f --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/multispeakeroutput/main.cpp @@ -0,0 +1,337 @@ +/*=============================================================================================== + Multi Speaker Output Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to play sounds in multiple speakers, and also how to even assign + sound subchannels, such as those in a stereo sound to different individual speakers. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound1, *sound2; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + /* + Multichannel only supported in ALSA mode in 5.1 and 7.1. + If the user doesn't have 5.1 speakers then only the speakers + they have will be audible. + */ + + result = system->setOutput(FMOD_OUTPUTTYPE_ALSA); + ERRCHECK(result); + + result = system->setSpeakerMode(FMOD_SPEAKERMODE_5POINT1); + ERRCHECK(result); + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createSound("../media/drumloop.wav", FMOD_SOFTWARE | FMOD_2D, 0, &sound1); + ERRCHECK(result); + result = sound1->setMode(FMOD_LOOP_OFF); + ERRCHECK(result); + + + result = system->createSound("../media/stereo.ogg", FMOD_SOFTWARE | FMOD_2D, 0, &sound2); + ERRCHECK(result); + + printf("==============================================================================\n"); + printf("Multi Speaker Output Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==============================================================================\n"); + printf("\n"); + printf("Note! You must have your speaker configuration set up correctly\n"); + printf(" in the windows control panel for this to work properly.\n"); + printf("\n"); + printf("Press '1' to play a mono sound on the FRONT LEFT speaker.\n"); + printf("Press '2' to play a mono sound on the FRONT RIGHT speaker.\n"); + printf("Press '3' to play a mono sound on the CENTER speaker.\n"); + printf("Press '4' to play a mono sound on the REAR LEFT speaker.\n"); + printf("Press '5' to play a mono sound on the REAR RIGHT speaker.\n"); + printf("Press '6' to play a mono sound on the SIDE LEFT speaker.\n"); + printf("Press '7' to play a mono sound on the SIDE RIGHT speaker.\n"); + printf("Press '8' to play a stereo sound on the front speakers.\n"); + printf("Press '9' to play a stereo sound on the front speakers but channel swapped.\n"); + printf("Press '0' to play the right part of a stereo sound on the CENTER speaker.\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound1, true, &channel); + ERRCHECK(result); + + result = channel->setSpeakerMix(1.0f, 0, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + result = channel->setPaused(false); + ERRCHECK(result); + break; + } + case '2' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound1, true, &channel); + ERRCHECK(result); + + result = channel->setSpeakerMix(0, 1.0f, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + result = channel->setPaused(false); + ERRCHECK(result); + break; + } + case '3' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound1, true, &channel); + ERRCHECK(result); + + result = channel->setSpeakerMix(0, 0, 1.0f, 0, 0, 0, 0, 0); + ERRCHECK(result); + + result = channel->setPaused(false); + ERRCHECK(result); + break; + } + case '4' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound1, true, &channel); + ERRCHECK(result); + + result = channel->setSpeakerMix(0, 0, 0, 0, 1.0f, 0, 0, 0); + ERRCHECK(result); + + result = channel->setPaused(false); + ERRCHECK(result); + break; + } + case '5' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound1, true, &channel); + ERRCHECK(result); + + result = channel->setSpeakerMix(0, 0, 0, 0, 0, 1.0f, 0, 0); + ERRCHECK(result); + + result = channel->setPaused(false); + ERRCHECK(result); + break; + } + case '6' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound1, true, &channel); + ERRCHECK(result); + + result = channel->setSpeakerMix(0, 0, 0, 0, 0, 0, 1.0f, 0); + ERRCHECK(result); + + result = channel->setPaused(false); + ERRCHECK(result); + break; + } + case '7' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound1, true, &channel); + ERRCHECK(result); + + result = channel->setSpeakerMix(0, 0, 0, 0, 0, 0, 0, 1.0f); + ERRCHECK(result); + + result = channel->setPaused(false); + ERRCHECK(result); + + break; + } + case '8' : + { + float levels[2] = { 0, 1.0f }; + + result = system->playSound(FMOD_CHANNEL_FREE, sound2, true, &channel); + ERRCHECK(result); + + /* + By default a stereo sound would play in all right and all left speakers, so this forces it to just the front. + */ + result = channel->setSpeakerMix(1.0f, 1.0f, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + result = channel->setPaused(false); + ERRCHECK(result); + + break; + } + case '9' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound2, true, &channel); + ERRCHECK(result); + + /* + Clear out all speakers first. + */ + result = channel->setSpeakerMix(0, 0, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + /* + Put the left channel of the sound in the right speaker. + */ + { + float levels[2] = { 0, 1.0f }; /* This array represents the source stereo sound. l/r */ + + result = channel->setSpeakerLevels(FMOD_SPEAKER_FRONT_LEFT, levels, 2); + ERRCHECK(result); + } + /* + Put the right channel of the sound in the left speaker. + */ + { + float levels[2] = { 1.0f, 0 }; /* This array represents the source stereo sound. l/r */ + + result = channel->setSpeakerLevels(FMOD_SPEAKER_FRONT_RIGHT, levels, 2); + ERRCHECK(result); + } + + result = channel->setPaused(false); + ERRCHECK(result); + + break; + } + case '0' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound2, true, &channel); + ERRCHECK(result); + + /* + Clear out all speakers first. + */ + result = channel->setSpeakerMix(0, 0, 0, 0, 0, 0, 0, 0); + ERRCHECK(result); + + /* + Put the left channel of the sound in the right speaker. + */ + { + float levels[2] = { 0, 1.0f }; /* This array represents the source stereo sound. l/r */ + + result = channel->setSpeakerLevels(FMOD_SPEAKER_FRONT_CENTER, levels, 2); + ERRCHECK(result); + } + + result = channel->setPaused(false); + ERRCHECK(result); + + break; + } + } + } + + system->update(); + + { + unsigned int ms = 0; + unsigned int lenms = 0; + bool playing = false; + bool paused = false; + int channelsplaying = 0; + + if (channel) + { + FMOD::Sound *currentsound = 0; + + result = channel->isPlaying(&playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + channel->getCurrentSound(¤tsound); + if (currentsound) + { + result = currentsound->getLength(&lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + } + + system->getChannelsPlaying(&channelsplaying); + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : Channels Playing %2d\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped", channelsplaying); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound1->release(); + ERRCHECK(result); + result = sound2->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/netstream/Makefile b/CocosDenshion/third_party/fmod/examples/netstream/Makefile new file mode 100644 index 0000000000..2b3b3e0088 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/netstream/Makefile @@ -0,0 +1,11 @@ +netstream_cpp: main.cpp + g++ -O3 -o netstream main.cpp ../../api/lib/libfmodex.so -pthread + +netstream_c: main.c + g++ -O3 -o netstream main.c ../../api/lib/libfmodex.so -pthread + +run: + ./netstream + +clean: + rm -f netstream diff --git a/CocosDenshion/third_party/fmod/examples/netstream/main.c b/CocosDenshion/third_party/fmod/examples/netstream/main.c new file mode 100644 index 0000000000..66e01ad886 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/netstream/main.c @@ -0,0 +1,174 @@ +/*=============================================================================================== + NetStream Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to play streaming audio from the internet +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + printf("===================================================================\n"); + printf("NetStream Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===================================================================\n\n"); + + if (argc < 2) + { + printf("Usage: netstream \n"); + printf("Example: netstream http://www.fmod.org/stream.mp3\n\n"); + return -1; + } + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system,&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 1, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + /* + Bump up the file buffer size a little bit for netstreams (to account for lag). Decode buffer is left at default. + */ + result = FMOD_System_SetStreamBufferSize(system, 64*1024, FMOD_TIMEUNIT_RAWBYTES); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, argv[1], FMOD_HARDWARE | FMOD_2D | FMOD_CREATESTREAM | FMOD_NONBLOCKING, 0, &sound); + ERRCHECK(result); + + printf("Press space to pause, Esc to quit\n\n"); + + /* + Main loop + */ + do + { + unsigned int ms = 0, percent = 0; + int playing = FALSE; + int paused = FALSE; + int starving = FALSE; + FMOD_OPENSTATE openstate; + + if (!channel) + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, FALSE, &channel); + } + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + if (channel) + { + int paused; + FMOD_Channel_GetPaused(channel, &paused); + FMOD_Channel_SetPaused(channel, !paused); + } + break; + } + } + } + + FMOD_System_Update(system); + + if (channel) + { + for (;;) + { + FMOD_TAG tag; + if (FMOD_Sound_GetTag(sound, 0, -1, &tag) != FMOD_OK) + { + break; + } + if (tag.datatype == FMOD_TAGDATATYPE_STRING) + { + printf("%s = %s (%d bytes)\n", tag.name, tag.data, tag.datalen); + } + } + result = FMOD_Channel_GetPaused(channel, &paused); + ERRCHECK(result); + result = FMOD_Channel_IsPlaying(channel, &playing); + ERRCHECK(result); + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + ERRCHECK(result); + } + + result = FMOD_Sound_GetOpenState(sound, &openstate, &percent, &starving, 0); + ERRCHECK(result); + + printf("Time %02d:%02d:%02d : %s : (%3d%%%) %s \r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, openstate == FMOD_OPENSTATE_BUFFERING ? "Buffering..." : openstate == FMOD_OPENSTATE_CONNECTING ? "Connecting..." : paused ? "Paused " : playing ? "Playing " : "Stopped ", percent, starving ? "STARVING" : " "); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + printf("Shutting down.\n"); + + /* + If we pressed escape before it is ready, wait for it to finish opening before we release it. + */ + do + { + FMOD_OPENSTATE openstate; + + result = FMOD_Sound_GetOpenState(sound, &openstate, 0, 0, 0); + ERRCHECK(result); + + if (openstate == FMOD_OPENSTATE_READY) + { + break; + } + + printf("Waiting for sound to finish opening before trying to release it....\r"); + + Sleep(10); + } while (1); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/netstream/main.cpp b/CocosDenshion/third_party/fmod/examples/netstream/main.cpp new file mode 100644 index 0000000000..31a4dcbaaf --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/netstream/main.cpp @@ -0,0 +1,186 @@ +/*=============================================================================================== + NetStream Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to play streaming audio from the internet +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + printf("===================================================================\n"); + printf("NetStream Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===================================================================\n\n"); + + if (argc < 2) + { + printf("Usage: netstream \n"); + printf("Example: netstream http://www.fmod.org/stream.mp3\n\n"); + return -1; + } + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(1, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + /* + Bump up the file buffer size a little bit for netstreams (to account for lag). Decode buffer is left at default. + */ + result = system->setStreamBufferSize(64*1024, FMOD_TIMEUNIT_RAWBYTES); + ERRCHECK(result); + + result = system->createSound(argv[1], FMOD_HARDWARE | FMOD_2D | FMOD_CREATESTREAM | FMOD_NONBLOCKING, 0, &sound); + ERRCHECK(result); + + printf("Press space to pause, Esc to quit\n\n"); + + /* + Main loop + */ + do + { + unsigned int ms = 0, percent = 0; + bool playing = false; + bool paused = false; + bool starving = false; + FMOD_OPENSTATE openstate; + + if (!channel) + { + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + } + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + if (channel) + { + bool paused; + channel->getPaused(&paused); + channel->setPaused(!paused); + } + break; + } + } + } + + system->update(); + + if (channel) + { + for (;;) + { + FMOD_TAG tag; + if (sound->getTag(0, -1, &tag) != FMOD_OK) + { + break; + } + if (tag.datatype == FMOD_TAGDATATYPE_STRING) + { + printf("%s = %s (%d bytes)\n", tag.name, (char *)tag.data, tag.datalen); + } + } + + result = channel->getPaused(&paused); + ERRCHECK(result); + result = channel->isPlaying(&playing); + ERRCHECK(result); + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + ERRCHECK(result); + } + + result = sound->getOpenState(&openstate, &percent, &starving, 0); + ERRCHECK(result); + + channel->setMute(starving); + ERRCHECK(result); + + printf("Time %02d:%02d:%02d : %s : (%3d%%) %s \r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, openstate == FMOD_OPENSTATE_BUFFERING ? "Buffering..." : openstate == FMOD_OPENSTATE_CONNECTING ? "Connecting..." : paused ? "Paused " : playing ? "Playing " : "Stopped ", percent, starving ? "STARVING" : " "); + fflush(stdout); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + printf("Shutting down.\n"); + + if (channel) + { + result = channel->stop(); + ERRCHECK(result); + } + + /* + If we pressed escape before it is ready, wait for it to finish opening before we release it. + */ + do + { + FMOD_OPENSTATE openstate; + + result = sound->getOpenState(&openstate, 0, 0, 0); + ERRCHECK(result); + + if (openstate == FMOD_OPENSTATE_READY) + { + break; + } + + printf("Waiting for sound to finish opening before trying to release it....\r"); + fflush(stdout); + + Sleep(10); + } while (1); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/offlinedecoding/Makefile b/CocosDenshion/third_party/fmod/examples/offlinedecoding/Makefile new file mode 100644 index 0000000000..090b273dcf --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/offlinedecoding/Makefile @@ -0,0 +1,11 @@ +offlinedecoding_cpp: main.cpp + g++ -O3 -o offlinedecoding main.cpp ../../api/lib/libfmodex.so -pthread + +offlinedecoding_c: main.c + g++ -O3 -o offlinedecoding main.c ../../api/lib/libfmodex.so -pthread + +run: + ./offlinedecoding + +clean: + rm -f offlinedecoding diff --git a/CocosDenshion/third_party/fmod/examples/offlinedecoding/main.c b/CocosDenshion/third_party/fmod/examples/offlinedecoding/main.c new file mode 100644 index 0000000000..866f4384d9 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/offlinedecoding/main.c @@ -0,0 +1,137 @@ +/*=============================================================================================== + Offline Decoding Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how decode a file to PCM, without playing it. + It writes out the data as a raw data file. + The FMOD_System_CreateSound function uses FMOD_OPENONLY so that FMOD does not read any data + itself. + If this is uses then it is up to the user to use FMOD_Sound_ReadData to get the data out of + the file and into the destination buffer. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_RESULT result; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 1, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = FMOD_System_CreateStream(system, "../media/wave.mp3", FMOD_OPENONLY | FMOD_ACCURATETIME, 0, &sound); + ERRCHECK(result); + + printf("==========================================================================\n"); + printf("Offline Decoding Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==========================================================================\n"); + printf("\n"); + printf("This program will open wave.mp3 and decode it into wave.raw using the\n"); + printf("FMOD_Sound_ReadData function.\n"); + printf("\n"); + + /* + Decode the sound and write it to a .raw file. + */ + { + void *data; + unsigned int length = 0, read; + unsigned int bytesread; + FILE *outfp; + + #define CHUNKSIZE 4096 + + result = FMOD_Sound_GetLength(sound, &length, FMOD_TIMEUNIT_PCMBYTES); + ERRCHECK(result); + + outfp = fopen("output.raw", "wb"); + if (!outfp) + { + printf("Error! Could not open output.raw output file.\n"); + return 0; + } + + data = malloc(CHUNKSIZE); + if (!data) + { + printf("Error! Failed to allocate %d bytes.\n", CHUNKSIZE); + return 0; + } + + bytesread = 0; + do + { + result = FMOD_Sound_ReadData(sound, (char *)data, CHUNKSIZE, &read); + + fwrite((char *)data, read, 1, outfp); + + bytesread += read; + + printf("writing %d bytes of %d to output.raw\r", bytesread, length); + } + while (result == FMOD_OK && read == CHUNKSIZE); + + /* + Loop terminates when either + 1. the read function returns an error. (ie FMOD_ERR_FILE_EOF etc). + 2. the amount requested was different to the amount returned. (somehow got an EOF without the file error, maybe a non stream file format like mod/s3m/xm/it/midi). + + If 'bytesread' is bigger than 'length' then it just means that FMOD miscalculated the size, + but this will not usually happen if FMOD_ACCURATETIME is used. (this will give the correct length for VBR formats) + */ + + printf("\n"); + + if (outfp) + { + fclose(outfp); + } + } + + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/offlinedecoding/main.cpp b/CocosDenshion/third_party/fmod/examples/offlinedecoding/main.cpp new file mode 100644 index 0000000000..96c88065a2 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/offlinedecoding/main.cpp @@ -0,0 +1,135 @@ +/*=============================================================================================== + Offline Decoding Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how decode a file to PCM, without playing it. + It writes out the data as a raw data file. + The System::createSound function uses FMOD_OPENONLY so that FMOD does not read any data + itself. + If this is uses then it is up to the user to use Sound::readData to get the data out of + the file and into the destination buffer. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD_RESULT result; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(1, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createStream("../media/wave.mp3", FMOD_OPENONLY | FMOD_ACCURATETIME, 0, &sound); + ERRCHECK(result); + + printf("==========================================================================\n"); + printf("Offline Decoding Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==========================================================================\n"); + printf("\n"); + printf("This program will open wave.mp3 and decode it into wave.raw using the\n"); + printf("Sound::readData function.\n"); + printf("\n"); + + /* + Decode the sound and write it to a .raw file. + */ + { + void *data; + unsigned int length = 0, read; + unsigned int bytesread; + FILE *outfp; + + #define CHUNKSIZE 4096 + + result = sound->getLength(&length, FMOD_TIMEUNIT_PCMBYTES); + ERRCHECK(result); + + outfp = fopen("output.raw", "wb"); + if (!outfp) + { + printf("Error! Could not open output.raw output file.\n"); + return 0; + } + + data = malloc(CHUNKSIZE); + if (!data) + { + printf("Error! Failed to allocate %d bytes.\n", CHUNKSIZE); + return 0; + } + + bytesread = 0; + do + { + result = sound->readData((char *)data, CHUNKSIZE, &read); + + fwrite((char *)data, read, 1, outfp); + + bytesread += read; + + printf("writing %d bytes of %d to output.raw\r", bytesread, length); + } + while (result == FMOD_OK && read == CHUNKSIZE); + + /* + Loop terminates when either + 1. the read function returns an error. (ie FMOD_ERR_FILE_EOF etc). + 2. the amount requested was different to the amount returned. (somehow got an EOF without the file error, maybe a non stream file format like mod/s3m/xm/it/midi). + + If 'bytesread' is bigger than 'length' then it just means that FMOD miscalculated the size, + but this will not usually happen if FMOD_ACCURATETIME is used. (this will give the correct length for VBR formats) + */ + + printf("\n"); + + if (outfp) + { + fclose(outfp); + } + } + + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/pitchdetection/Makefile b/CocosDenshion/third_party/fmod/examples/pitchdetection/Makefile new file mode 100644 index 0000000000..19e2c34c31 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/pitchdetection/Makefile @@ -0,0 +1,11 @@ +pitchdetection_cpp: main.cpp + g++ -O3 -o pitchdetection main.cpp ../../api/lib/libfmodex.so -pthread + +pitchdetection_c: main.c + g++ -O3 -o pitchdetection main.c ../../api/lib/libfmodex.so -pthread + +run: + ./pitchdetection + +clean: + rm -f pitchdetection diff --git a/CocosDenshion/third_party/fmod/examples/pitchdetection/main.c b/CocosDenshion/third_party/fmod/examples/pitchdetection/main.c new file mode 100644 index 0000000000..ab2fd6971c --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/pitchdetection/main.c @@ -0,0 +1,309 @@ +/*=============================================================================================== + Pitch detection example. + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example combines recording with spectrum analysis to determine the pitch of the sound + being recorded. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +#include +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +static const char *note[120] = +{ + "C 0", "C#0", "D 0", "D#0", "E 0", "F 0", "F#0", "G 0", "G#0", "A 0", "A#0", "B 0", + "C 1", "C#1", "D 1", "D#1", "E 1", "F 1", "F#1", "G 1", "G#1", "A 1", "A#1", "B 1", + "C 2", "C#2", "D 2", "D#2", "E 2", "F 2", "F#2", "G 2", "G#2", "A 2", "A#2", "B 2", + "C 3", "C#3", "D 3", "D#3", "E 3", "F 3", "F#3", "G 3", "G#3", "A 3", "A#3", "B 3", + "C 4", "C#4", "D 4", "D#4", "E 4", "F 4", "F#4", "G 4", "G#4", "A 4", "A#4", "B 4", + "C 5", "C#5", "D 5", "D#5", "E 5", "F 5", "F#5", "G 5", "G#5", "A 5", "A#5", "B 5", + "C 6", "C#6", "D 6", "D#6", "E 6", "F 6", "F#6", "G 6", "G#6", "A 6", "A#6", "B 6", + "C 7", "C#7", "D 7", "D#7", "E 7", "F 7", "F#7", "G 7", "G#7", "A 7", "A#7", "B 7", + "C 8", "C#8", "D 8", "D#8", "E 8", "F 8", "F#8", "G 8", "G#8", "A 8", "A#8", "B 8", + "C 9", "C#9", "D 9", "D#9", "E 9", "F 9", "F#9", "G 9", "G#9", "A 9", "A#9", "B 9" +}; + +static const float notefreq[120] = +{ + 16.35f, 17.32f, 18.35f, 19.45f, 20.60f, 21.83f, 23.12f, 24.50f, 25.96f, 27.50f, 29.14f, 30.87f, + 32.70f, 34.65f, 36.71f, 38.89f, 41.20f, 43.65f, 46.25f, 49.00f, 51.91f, 55.00f, 58.27f, 61.74f, + 65.41f, 69.30f, 73.42f, 77.78f, 82.41f, 87.31f, 92.50f, 98.00f, 103.83f, 110.00f, 116.54f, 123.47f, + 130.81f, 138.59f, 146.83f, 155.56f, 164.81f, 174.61f, 185.00f, 196.00f, 207.65f, 220.00f, 233.08f, 246.94f, + 261.63f, 277.18f, 293.66f, 311.13f, 329.63f, 349.23f, 369.99f, 392.00f, 415.30f, 440.00f, 466.16f, 493.88f, + 523.25f, 554.37f, 587.33f, 622.25f, 659.26f, 698.46f, 739.99f, 783.99f, 830.61f, 880.00f, 932.33f, 987.77f, + 1046.50f, 1108.73f, 1174.66f, 1244.51f, 1318.51f, 1396.91f, 1479.98f, 1567.98f, 1661.22f, 1760.00f, 1864.66f, 1975.53f, + 2093.00f, 2217.46f, 2349.32f, 2489.02f, 2637.02f, 2793.83f, 2959.96f, 3135.96f, 3322.44f, 3520.00f, 3729.31f, 3951.07f, + 4186.01f, 4434.92f, 4698.64f, 4978.03f, 5274.04f, 5587.65f, 5919.91f, 6271.92f, 6644.87f, 7040.00f, 7458.62f, 7902.13f, + 8372.01f, 8869.84f, 9397.27f, 9956.06f, 10548.08f, 11175.30f, 11839.82f, 12543.85f, 13289.75f, 14080.00f, 14917.24f, 15804.26f +}; + +#define OUTPUTRATE 48000 +#define SPECTRUMSIZE 8192 +#define SPECTRUMRANGE ((float)OUTPUTRATE / 2.0f) /* 0 to nyquist */ + +#define BINSIZE (SPECTRUMRANGE / (float)SPECTRUMSIZE) + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system = 0; + FMOD_SOUND *sound = 0; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + FMOD_CREATESOUNDEXINFO exinfo; + int key, driver, recorddriver, numdrivers, count, outputfreq, bin; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + /* + System initialization + */ + printf("---------------------------------------------------------\n"); + printf("Select OUTPUT type\n"); + printf("---------------------------------------------------------\n"); + printf("1 : OSS - Open Sound System\n"); + printf("2 : ALSA - Advanced Linux Sound Architecture\n"); + printf("3 : ESD - Enlightenment Sound Daemon\n"); + printf("4 : PULSEAUDIO - Pulse Audio Sound Server\n"); + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + } while (key != 27 && key < '1' && key > '5'); + + switch (key) + { + case '1' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_OSS); + break; + case '2' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_ALSA); + break; + case '3' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_ESD); + break; + case '4' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_PULSEAUDIO); + break; + default : return 1; + } + ERRCHECK(result); + + /* + Enumerate playback devices + */ + + result = FMOD_System_GetNumDrivers(system, &numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a PLAYBACK driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = FMOD_System_GetDriverInfo(system, count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + if (key == 27) + { + return 0; + } + driver = key - '1'; + } while (driver < 0 || driver >= numdrivers); + + result = FMOD_System_SetDriver(system, driver); + ERRCHECK(result); + + /* + Enumerate record devices + */ + + result = FMOD_System_GetRecordNumDrivers(system, &numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a RECORD driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = FMOD_System_GetRecordDriverInfo(system, count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + recorddriver = 0; + do + { + key = getch(); + if (key == 27) + { + return 0; + } + recorddriver = key - '1'; + } while (recorddriver < 0 || recorddriver >= numdrivers); + + printf("\n"); + + result = FMOD_System_SetSoftwareFormat(system, OUTPUTRATE, FMOD_SOUND_FORMAT_PCM16, 1, 0, FMOD_DSP_RESAMPLER_LINEAR); + ERRCHECK(result); + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + FMOD_System_GetSoftwareFormat(system, &outputfreq, 0, 0, 0, 0, 0); + ERRCHECK(result); + + /* + Create a sound to record to. + */ + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.numchannels = 1; + exinfo.format = FMOD_SOUND_FORMAT_PCM16; + exinfo.defaultfrequency = OUTPUTRATE; + exinfo.length = exinfo.defaultfrequency * sizeof(short) * exinfo.numchannels * 5; + + result = FMOD_System_CreateSound(system, 0, FMOD_2D | FMOD_SOFTWARE | FMOD_LOOP_NORMAL | FMOD_OPENUSER, &exinfo, &sound); + ERRCHECK(result); + + /* + Start the interface + */ + printf("=========================================================================\n"); + printf("Pitch detection example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("=========================================================================\n"); + printf("\n"); + printf("Record something through the selected recording device and FMOD will\n"); + printf("Determine the pitch. Sustain the tone for at least a second to get an\n"); + printf("accurate reading.\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + result = FMOD_System_RecordStart(system, recorddriver, sound, TRUE); + ERRCHECK(result); + + Sleep(200); /* Give it some time to record something */ + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_REUSE, sound, FALSE, &channel); + ERRCHECK(result); + + /* Dont hear what is being recorded otherwise it will feedback. Spectrum analysis is done before volume scaling in the DSP chain */ + result = FMOD_Channel_SetVolume(channel, 0); + ERRCHECK(result); + + bin = 0; + + /* + Main loop. + */ + do + { + static float spectrum[SPECTRUMSIZE]; + float dominanthz = 0; + float max; + int dominantnote = 0; + float binsize = BINSIZE; + + if (kbhit()) + { + key = getch(); + } + + result = FMOD_Channel_GetSpectrum(channel, spectrum, SPECTRUMSIZE, 0, FMOD_DSP_FFT_WINDOW_TRIANGLE); + ERRCHECK(result); + + max = 0; + + for (count = 0; count < SPECTRUMSIZE; count++) + { + if (spectrum[count] > 0.01f && spectrum[count] > max) + { + max = spectrum[count]; + bin = count; + } + } + + dominanthz = (float)bin * BINSIZE; /* dominant frequency min */ + + dominantnote = 0; + for (count = 0; count < 120; count++) + { + if (dominanthz >= notefreq[count] && dominanthz < notefreq[count + 1]) + { + /* which is it closer to. This note or the next note */ + if (fabs(dominanthz - notefreq[count]) < fabs(dominanthz - notefreq[count+1])) + { + dominantnote = count; + } + else + { + dominantnote = count + 1; + } + break; + } + } + + printf("Detected rate : %7.1f -> %7.1f hz. Detected musical note. %-3s (%7.1f hz)\r", dominanthz, ((float)bin + 0.99f) * BINSIZE, note[dominantnote], notefreq[dominantnote]); + fflush(stdout); + + FMOD_System_Update(system); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/pitchdetection/main.cpp b/CocosDenshion/third_party/fmod/examples/pitchdetection/main.cpp new file mode 100644 index 0000000000..80c7bef09e --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/pitchdetection/main.cpp @@ -0,0 +1,309 @@ +/*=============================================================================================== + Pitch detection example. + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example combines recording with spectrum analysis to determine the pitch of the sound + being recorded. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +#include +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +static const char *note[120] = +{ + "C 0", "C#0", "D 0", "D#0", "E 0", "F 0", "F#0", "G 0", "G#0", "A 0", "A#0", "B 0", + "C 1", "C#1", "D 1", "D#1", "E 1", "F 1", "F#1", "G 1", "G#1", "A 1", "A#1", "B 1", + "C 2", "C#2", "D 2", "D#2", "E 2", "F 2", "F#2", "G 2", "G#2", "A 2", "A#2", "B 2", + "C 3", "C#3", "D 3", "D#3", "E 3", "F 3", "F#3", "G 3", "G#3", "A 3", "A#3", "B 3", + "C 4", "C#4", "D 4", "D#4", "E 4", "F 4", "F#4", "G 4", "G#4", "A 4", "A#4", "B 4", + "C 5", "C#5", "D 5", "D#5", "E 5", "F 5", "F#5", "G 5", "G#5", "A 5", "A#5", "B 5", + "C 6", "C#6", "D 6", "D#6", "E 6", "F 6", "F#6", "G 6", "G#6", "A 6", "A#6", "B 6", + "C 7", "C#7", "D 7", "D#7", "E 7", "F 7", "F#7", "G 7", "G#7", "A 7", "A#7", "B 7", + "C 8", "C#8", "D 8", "D#8", "E 8", "F 8", "F#8", "G 8", "G#8", "A 8", "A#8", "B 8", + "C 9", "C#9", "D 9", "D#9", "E 9", "F 9", "F#9", "G 9", "G#9", "A 9", "A#9", "B 9" +}; + +static const float notefreq[120] = +{ + 16.35f, 17.32f, 18.35f, 19.45f, 20.60f, 21.83f, 23.12f, 24.50f, 25.96f, 27.50f, 29.14f, 30.87f, + 32.70f, 34.65f, 36.71f, 38.89f, 41.20f, 43.65f, 46.25f, 49.00f, 51.91f, 55.00f, 58.27f, 61.74f, + 65.41f, 69.30f, 73.42f, 77.78f, 82.41f, 87.31f, 92.50f, 98.00f, 103.83f, 110.00f, 116.54f, 123.47f, + 130.81f, 138.59f, 146.83f, 155.56f, 164.81f, 174.61f, 185.00f, 196.00f, 207.65f, 220.00f, 233.08f, 246.94f, + 261.63f, 277.18f, 293.66f, 311.13f, 329.63f, 349.23f, 369.99f, 392.00f, 415.30f, 440.00f, 466.16f, 493.88f, + 523.25f, 554.37f, 587.33f, 622.25f, 659.26f, 698.46f, 739.99f, 783.99f, 830.61f, 880.00f, 932.33f, 987.77f, + 1046.50f, 1108.73f, 1174.66f, 1244.51f, 1318.51f, 1396.91f, 1479.98f, 1567.98f, 1661.22f, 1760.00f, 1864.66f, 1975.53f, + 2093.00f, 2217.46f, 2349.32f, 2489.02f, 2637.02f, 2793.83f, 2959.96f, 3135.96f, 3322.44f, 3520.00f, 3729.31f, 3951.07f, + 4186.01f, 4434.92f, 4698.64f, 4978.03f, 5274.04f, 5587.65f, 5919.91f, 6271.92f, 6644.87f, 7040.00f, 7458.62f, 7902.13f, + 8372.01f, 8869.84f, 9397.27f, 9956.06f, 10548.08f, 11175.30f, 11839.82f, 12543.85f, 13289.75f, 14080.00f, 14917.24f, 15804.26f +}; + +#define OUTPUTRATE 48000 +#define SPECTRUMSIZE 8192 +#define SPECTRUMRANGE ((float)OUTPUTRATE / 2.0f) /* 0 to nyquist */ + +#define BINSIZE (SPECTRUMRANGE / (float)SPECTRUMSIZE) + +int main(int argc, char *argv[]) +{ + FMOD::System *system = 0; + FMOD::Sound *sound = 0; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + FMOD_CREATESOUNDEXINFO exinfo; + int key, driver, recorddriver, numdrivers, count, outputfreq, bin; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + /* + System initialization + */ + printf("---------------------------------------------------------\n"); + printf("Select OUTPUT type\n"); + printf("---------------------------------------------------------\n"); + printf("1 : OSS - Open Sound System\n"); + printf("2 : ALSA - Advanced Linux Sound Architecture\n"); + printf("3 : ESD - Enlightenment Sound Daemon\n"); + printf("4 : PULSEAUDIO - Pulse Audio Sound Server\n"); + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + } while (key != 27 && key < '1' && key > '5'); + + switch (key) + { + case '1' : result = system->setOutput(FMOD_OUTPUTTYPE_OSS); + break; + case '2' : result = system->setOutput(FMOD_OUTPUTTYPE_ALSA); + break; + case '3' : result = system->setOutput(FMOD_OUTPUTTYPE_ESD); + break; + case '4' : result = system->setOutput(FMOD_OUTPUTTYPE_PULSEAUDIO); + break; + default : return 1; + } + ERRCHECK(result); + + /* + Enumerate playback devices + */ + + result = system->getNumDrivers(&numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a PLAYBACK driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = system->getDriverInfo(count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + if (key == 27) + { + return 0; + } + driver = key - '1'; + } while (driver < 0 || driver >= numdrivers); + + result = system->setDriver(driver); + ERRCHECK(result); + + /* + Enumerate record devices + */ + + result = system->getRecordNumDrivers(&numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a RECORD driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = system->getRecordDriverInfo(count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + recorddriver = 0; + do + { + key = getch(); + if (key == 27) + { + return 0; + } + recorddriver = key - '1'; + } while (recorddriver < 0 || recorddriver >= numdrivers); + + printf("\n"); + + result = system->setSoftwareFormat(OUTPUTRATE, FMOD_SOUND_FORMAT_PCM16, 1, 0, FMOD_DSP_RESAMPLER_LINEAR); + ERRCHECK(result); + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + system->getSoftwareFormat(&outputfreq, 0, 0, 0, 0, 0); + ERRCHECK(result); + + /* + Create a sound to record to. + */ + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.numchannels = 1; + exinfo.format = FMOD_SOUND_FORMAT_PCM16; + exinfo.defaultfrequency = OUTPUTRATE; + exinfo.length = exinfo.defaultfrequency * sizeof(short) * exinfo.numchannels * 5; + + result = system->createSound(0, FMOD_2D | FMOD_SOFTWARE | FMOD_LOOP_NORMAL | FMOD_OPENUSER, &exinfo, &sound); + ERRCHECK(result); + + /* + Start the interface + */ + printf("=========================================================================\n"); + printf("Pitch detection example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("=========================================================================\n"); + printf("\n"); + printf("Record something through the selected recording device and FMOD will\n"); + printf("Determine the pitch. Sustain the tone for at least a second to get an\n"); + printf("accurate reading.\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + result = system->recordStart(recorddriver, sound, true); + ERRCHECK(result); + + Sleep(200); /* Give it some time to record something */ + + result = system->playSound(FMOD_CHANNEL_REUSE, sound, false, &channel); + ERRCHECK(result); + + /* Dont hear what is being recorded otherwise it will feedback. Spectrum analysis is done before volume scaling in the DSP chain */ + result = channel->setVolume(0); + ERRCHECK(result); + + bin = 0; + + /* + Main loop. + */ + do + { + static float spectrum[SPECTRUMSIZE]; + float dominanthz = 0; + float max; + int dominantnote = 0; + float binsize = BINSIZE; + + if (kbhit()) + { + key = getch(); + } + + result = channel->getSpectrum(spectrum, SPECTRUMSIZE, 0, FMOD_DSP_FFT_WINDOW_TRIANGLE); + ERRCHECK(result); + + max = 0; + + for (count = 0; count < SPECTRUMSIZE; count++) + { + if (spectrum[count] > 0.01f && spectrum[count] > max) + { + max = spectrum[count]; + bin = count; + } + } + + dominanthz = (float)bin * BINSIZE; /* dominant frequency min */ + + dominantnote = 0; + for (count = 0; count < 120; count++) + { + if (dominanthz >= notefreq[count] && dominanthz < notefreq[count + 1]) + { + /* which is it closer to. This note or the next note */ + if (fabs(dominanthz - notefreq[count]) < fabs(dominanthz - notefreq[count+1])) + { + dominantnote = count; + } + else + { + dominantnote = count + 1; + } + break; + } + } + + printf("Detected rate : %7.1f -> %7.1f hz. Detected musical note. %-3s (%7.1f hz)\r", dominanthz, ((float)bin + 0.99f) * BINSIZE, note[dominantnote], notefreq[dominantnote]); + fflush(stdout); + + system->update(); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/playlist/Makefile b/CocosDenshion/third_party/fmod/examples/playlist/Makefile new file mode 100644 index 0000000000..965bf1fcf5 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/playlist/Makefile @@ -0,0 +1,11 @@ +playlist_cpp: main.cpp + g++ -O3 -o playlist main.cpp ../../api/lib/libfmodex.so -pthread + +playlist_c: main.c + g++ -O3 -o playlist main.c ../../api/lib/libfmodex.so -pthread + +run: + ./playlist + +clean: + rm -f playlist diff --git a/CocosDenshion/third_party/fmod/examples/playlist/main.c b/CocosDenshion/third_party/fmod/examples/playlist/main.c new file mode 100644 index 0000000000..636d5b91fc --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/playlist/main.c @@ -0,0 +1,254 @@ +/*=============================================================================================== + PlayList Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to load a playlist and play the sounds in a playlist. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system = 0; + FMOD_SOUND *playlist = 0; + FMOD_SOUND *sound = 0; + FMOD_CHANNEL *channel = 0; + FMOD_TAG tag; + FMOD_RESULT result; + FMOD_SOUND_TYPE soundtype; + FMOD_BOOL isplaylist = 0; + char *title = NULL; + int count = 0; + int key; + unsigned int version; + char file[128]; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/playlist.m3u", FMOD_DEFAULT, 0, &playlist); + ERRCHECK(result); + + result = FMOD_Sound_GetFormat(playlist, &soundtype, 0, 0, 0); + ERRCHECK(result); + + isplaylist = (soundtype == FMOD_SOUND_TYPE_PLAYLIST); + + printf("===================================================================\n"); + printf("PlayList Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===================================================================\n"); + printf("\n"); + printf("Press 'n' to play next sound in playlist\n"); + printf("Press 'space' to pause/unpause current sound\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + if (isplaylist) + { + printf("PLAYLIST loaded.\n"); + /* + Get the first song in the playlist, create the sound and then play it. + */ + result = FMOD_Sound_GetTag(playlist, "FILE", count, &tag); + ERRCHECK(result); + + sprintf(file, "../media/%s", (char *)tag.data); + + result = FMOD_System_CreateSound(system, file, FMOD_DEFAULT, 0, &sound); + ERRCHECK(result); + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, 0, &channel); + ERRCHECK(result); + + FMOD_Sound_GetTag(playlist, "TITLE", count, &tag); + title = (char *)tag.data; + + count++; + } + else + { + printf("SOUND loaded.\n"); + + /* + This is just a normal sound, so just play it. + */ + sound = playlist; + + result = FMOD_Sound_SetMode(sound, FMOD_LOOP_NORMAL); + ERRCHECK(result); + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, 0, &channel); + ERRCHECK(result); + } + + printf("\n"); + + /* + Main loop. + */ + do + { + FMOD_BOOL isplaying = 0; + + if (channel && isplaylist) + { + /* + When sound has finished playing, play the next sound in the playlist + */ + + FMOD_Channel_IsPlaying(channel, &isplaying); + if (!isplaying) + { + if (sound) + { + FMOD_Sound_Release(sound); + + sound = NULL; + } + + result = FMOD_Sound_GetTag(playlist, "FILE", count, &tag); + if (result != FMOD_OK) + { + count = 0; + } + else + { + printf("playing next song in playlist...\n"); + + sprintf(file, "../media/%s", (char *)tag.data); + + result = FMOD_System_CreateSound(system, file, FMOD_DEFAULT, 0, &sound); + ERRCHECK(result); + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, 0, &channel); + ERRCHECK(result); + + FMOD_Sound_GetTag(playlist, "TITLE", count, &tag); + title = (char *)tag.data; + + count++; + } + } + } + + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'n' : + { + /* + Play the next song in the playlist + */ + if (channel && isplaylist) + { + FMOD_Channel_Stop(channel); + } + + break; + } + case ' ' : + { + if (channel) + { + FMOD_BOOL paused; + + FMOD_Channel_GetPaused(channel, &paused); + FMOD_Channel_SetPaused(channel, !paused); + } + } + } + } + + FMOD_System_Update(system); + + { + unsigned int ms = 0; + unsigned int lenms = 0; + FMOD_BOOL paused = 0; + + if (channel) + { + if (sound) + { + result = FMOD_Sound_GetLength(sound, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + + result = FMOD_Channel_GetPaused(channel, &paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : %s\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : "Playing ", title); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + if (sound) + { + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + } + if (isplaylist) + { + result = FMOD_Sound_Release(playlist); + ERRCHECK(result); + } + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/playlist/main.cpp b/CocosDenshion/third_party/fmod/examples/playlist/main.cpp new file mode 100644 index 0000000000..056a816352 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/playlist/main.cpp @@ -0,0 +1,256 @@ +/*=============================================================================================== + PlayList Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to load a playlist and play the sounds in a playlist. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system = 0; + FMOD::Sound *playlist = 0; + FMOD::Sound *sound = 0; + FMOD::Channel *channel = 0; + FMOD_TAG tag; + FMOD_RESULT result; + FMOD_SOUND_TYPE soundtype; + bool isplaylist = false; + char *title = NULL; + int count = 0; + int key; + unsigned int version; + char file[128]; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createSound("../media/playlist.m3u", FMOD_DEFAULT, 0, &playlist); + ERRCHECK(result); + + result = playlist->getFormat(&soundtype, 0, 0, 0); + ERRCHECK(result); + + isplaylist = (soundtype == FMOD_SOUND_TYPE_PLAYLIST); + + printf("===================================================================\n"); + printf("PlayList Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===================================================================\n"); + printf("\n"); + printf("Press 'n' to play next sound in playlist\n"); + printf("Press 'space' to pause/unpause current sound\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + if (isplaylist) + { + printf("PLAYLIST loaded.\n"); + /* + Get the first song in the playlist, create the sound and then play it. + */ + result = playlist->getTag("FILE", count, &tag); + ERRCHECK(result); + + sprintf(file, "../media/%s", (char *)tag.data); + + result = system->createSound(file, FMOD_DEFAULT, 0, &sound); + ERRCHECK(result); + + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + + playlist->getTag("TITLE", count, &tag); + title = (char *)tag.data; + + count++; + } + else + { + printf("SOUND loaded.\n"); + + /* + This is just a normal sound, so just play it. + */ + sound = playlist; + + result = sound->setMode(FMOD_LOOP_NORMAL); + ERRCHECK(result); + + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + } + + printf("\n"); + + /* + Main loop. + */ + do + { + bool isplaying = false; + + if (channel && isplaylist) + { + /* + When sound has finished playing, play the next sound in the playlist + */ + + channel->isPlaying(&isplaying); + if (!isplaying) + { + if (sound) + { + sound->release(); + + sound = NULL; + } + + result = playlist->getTag("FILE", count, &tag); + if (result != FMOD_OK) + { + count = 0; + } + else + { + printf("playing next song in playlist...\n"); + + sprintf(file, "../media/%s", (char *)tag.data); + + result = system->createSound(file, FMOD_DEFAULT, 0, &sound); + ERRCHECK(result); + + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + + playlist->getTag("TITLE", count, &tag); + title = (char *)tag.data; + + count++; + } + } + } + + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'n' : + { + /* + Play the next song in the playlist + */ + if (channel && isplaylist) + { + channel->stop(); + } + + break; + } + case ' ' : + { + if (channel) + { + bool paused; + + channel->getPaused(&paused); + channel->setPaused(!paused); + } + } + } + } + + system->update(); + + { + unsigned int ms = 0; + unsigned int lenms = 0; + bool paused = 0; + + if (channel) + { + if (sound) + { + result = sound->getLength(&lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : %s\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : "Playing ", title); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + if (sound) + { + result = sound->release(); + ERRCHECK(result); + } + if (isplaylist) + { + result = playlist->release(); + ERRCHECK(result); + } + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/playlist/playlist b/CocosDenshion/third_party/fmod/examples/playlist/playlist new file mode 100755 index 0000000000000000000000000000000000000000..f31d786e9d442ec1664a9511e90cfcbcd8f4f877 GIT binary patch literal 21196 zcmd6Pe|%iUb?=qEHVbi(0uCj`fr}%@a$~P0|H5|6i-okp3i`1~Yhx0J@%fg8+=gPq0? zz3=zT%wwjt6%Un~esTQFVJAD2n$RBD} zB}**Zy4Y&4uCZoW)A5L9OSS?B$wmdHX?W&Cnu-(#9KOrvXSy6P6U*>e5;Ds|U8Z~g zn`JSvzE!8nj{!dRJ)fWHAynEh#gcYej$7*_%1@$<=`>&_^2Iio;;0ix+f1#1nM_&e z=Y`m@>p}lJppR6KGA2`gGs*#;bs73StncBEeP?2QWY)rDqHkd`wjh~E7Y76ROkj~J z1M5{_@zPtD4z+K73}_YC|0F?uQD%R}hV(`FuRY~9;Qw9)-{ygdKd-9(Q#E*~FP49% z3jS3UyrZiANEMu{foWdsVe^)!whorv#bi9T~+_fRpq}^)!!Sd@L#XOUshHA zxhj5kRl!~xAb&@z%D+)XKU_tBOBMY4Rrn89l|Kb|)r;_FxazF8CvO9M;E2ypoBset z>mz`-0XF5A1AgtRro7Jjc2#*7;N713$53(ac2)l}jDp9}pZ%y$dY56e9)>)Rz-KEM ze*=Mq`0r#B${Qv6`cs*hOLt^NKGn6Pt+TszS?^H3;HH)&(uqPau_?5rx@1K*=?wK| zis@Le={nYkw5)0F>I!zWceMuBhq`(rOI2xKh`@C%aVMR2lfh~_OQXq5-VL5be_1gb za|$dF;)HrXSFR=LXLML+g2 zPM*uGNMz&SU?dCrnY5Ek6ow*O8i|uq#kkuTjYjf>n)p0hh@)3A!h#poWZJvYLM)Mv z(1@)5{$w#92k~q!kuLN{qVdfDz(RC0?<4(AB5CEJ^Ju}6YE~f%Q9Fe~j&P<}u!{Ml z>t^vB-IwR6@1=$YQ4$4Na0L#fdnqT8#*^rv6M>lz(u!S-0te6f@_B`XN9mZ=vVMK@ z4egPpz+&shj`kZ`B8vh`N_UN=yTzWT#FfjqSGWjsEA0s4oQ42|zI57b6d=C{zR$-T{P>vzZw7O4RL2}a!%XG~ zjILx3uQ-c2TCkZT5UOX6;Glsyf{OXf!EqyV1R+b9BM4f~9GzOl9D&bj=9o}gnIm9Y z!yJJ}2Xh1;A?66S!psqB-5-(eD?gjUyCXNV9iN>kMi30*tvT=ro6MF@wgyS~h z-2zk6@dm;>1*XK~jfA%fOv%TW6V3`u4a8RyzFlByBEE)jNMLFt9wNM2U}`45o^YeU z)KL6(!nVNFRGb}}s1ukPi)RU20#kGGLBc2A#e+H2V0`Sgz_ft)0m8QnOiPGAM>r%f zEh2t|@M?i+8Sz&LHwsJ(i60|u3rtIij}xvFm=+U1LD&+QmJ>fs_{9I4oNW4++s1x6 z{Mw07xF>$>E5yW~o7cq~zvT0eM^NG9&WcOh+t%x!1{tgPi9OFDfATn1U3a}Xj=u+g zGiCVAnia3)uihas@$i9~zaYxw%uyB#`ifU__OTp=y4B|7>f$-$Jy7TpSs&S#kV(=)m)b6el~L z;v+?Wdl1x%Q=UIGd^+;PIKrlZi?+`ky?wvWKNhZ^F$QX+bP5Ha#7J>`CS-+sTG04D zP~ExXQFtLm@3j-Rtn0n&_-jCP_i)iMHd4>{vgyE%k@_of^Q_8b7}s0Nd{*rj{tiw}Bccyn9$6wC zmHTYuBrt;hu!$Dc1bIRebr+~P<330SHQ&%p)4PK?f0;QFL0ffbf_X*Tta(J&d;tz= zc)!%V6nMVXe^Qcj?XK4PmhlIF17V|JTe)ETkMuJS^7tRB+w(iX%1+QA`DaGzuR+G4 z^FGb}WtauGfAAPa-RSpgM|NRu+_9m4!{auv#(vUt;LI-{hBi+E8t$myPy;*VJulqS zUDRQG(nJi$$o(uH+feT_!haPkj2`&?JN8I32Wm%lpiyrViuU~Ce`87^|d28JcUX|HX$EA{l3}}M{fR|e&jI7 z7(bE)r)b8v0`|1yzWSqVRlA$N1RDAz!*WCY3?pk|-vn&-^IH%GoY*MP=1&F+*k`p(rM;n1#}v1ybCsHejkQ80`Gt`7gbS>R`Ar{A3l8e)IaaL zX7tUQ$6h=*G4<3>_r28FS2y<3srvoV0%xG7p6 zDqVz1beRJn#Ienq6Il>1jcb-JhdWe8GO_@-tavHdnXmzv@lU)uz*TUAfwHxNd=Gk-dmvGBC<;D`uLT>vev3nOtEiPK2oSVS(^TqrEq5Co@jWjRh{T+S)sUWg2txR=7QkC$fiF#!_3jwxu^r zZL2Gz7|92$X1k@ewb|z8oqA?xqS0b52lBQRBb||$DcVlXwTpRDbJBJu8MC*jElfMpZ*vpW zp3}H|Fksu^cp`6SbD51fCnaM)r`^GVou_#0MA|m0 zWuqEDpLL?{TxvGU?e&GlwB)u(KCSB#pLHoMO%Zn=w3=;6sDqVLfZ`qSK6RRWCMNWN@-iD<_oam6pKXk^JsltZlVx(b9Ps_x23lo zjpXd+-cY+8%@kpLeJ;d_oq7<*_B8RE^>8hX0(&4%doQ7pJSeJBlP~t=<$aDAdJAc$ z=VD+aC?O!_vu-rePbtRSEr}>c4=#*8rx;6Q>_QG3-+79p3OSLF0u^{ItqWV%wd&e= zd%%Ub&9Gy6444=uZr+8_z%r`n}1ZS_0fb9X>9o?Ve#}Hcz=-` z624kHo9#A?gkp}vyw`Oh)4t+HI;m`tt}JJ#Xv>K-Zt*q?rmE`ohR_t=uqo?RuAF|N z^eCIj=M#O&A=stJ1_B+5CKFLKki{DXCmjU`c6SciHp59(MrUBK7y_A$opRDc7)Oah z9@X5e-5|_haHQ>~Ma#vKvHuNT)Vnr4rPy|}&4;WA5<}3_7HG797mQg7oa_`{60sNt9fp6dn5N>*j4+UZCrV}Dvy+LS87u1)8Q*=#0PLP0;2b1a!8LKKNE#H>nwIiNxW z5fYk>#uq@BGLFm0$|EqU0t0R`?+(CODThdYn&=)#i|lhY zS^`UbuuNCE2F&G|LHNK*OrU8ZGX8XrshYE!gDvR3<=q^eSalaI6*QK8o0_XWi|#}- zh|!`2XbD4G%TNt5Gh>QTx2Q2FGq^YaL<(>=G27{fi?!A3|CKB0g$2KI{zE%5L4yI# zYtoGJ|1i>)Od2n4_0yb=^}5sc`o7Gdy?9yUe8o=6g)f7cVlfG7vwSrzqLFYfRm51v zG@OkOzrf}wG=UoXNt(NyPU51c6+*C<^>m% zeF`%>rPYs!SvW-h66q~?3X|{Sh=2!4)7Ovy{Wo<|#>qN}KV3?Sd0uu ztRTMtcrW#`uCw{VE!lneF$6eQ6MZRI)D`(-6Dm<`dng^vX7G|7elR8zBNPwMkjrRC zEK|1bJSwry7KkI0D|M4z5;G!QxVXQh{B~eIWedl}xh)YbCY_wvO^BzX>NdL&_-&r{jO3kOrqLMN7urj+x-^x^ph z1_G2&Pq4Q)*xK9N8R`gnZR5iHv1!Z?`3!ol1Pt>LrmN#&GYnC|u@__Fki`Q0lUA)B zrL;Q6K1y33 zAd4TzzOkjbmD1;`go7R?tNI6%%4hluLIXX&C6VAXQR>Tu+7=IL>cSEeX$j;ipTM5; zwvPBEUPUL;95DU;qJATFiq#!-qeV^(qJmP_OvsCAG8!+hOe#IBk`5JHn#*-qKyO^> z?Bj@5h>5iYIv?Ha!oX!&U0!FOcPdl(3n~KX^G|9r?n^6s+r&CM4R03-Yb|0a^U>xfU*sHQ7#jl$#rX-#Q z4hcD1u*7lbcQr}bQL<%|gX;tIn0p23JVPSR4VXivD+nb7mQ^a}YBhNYN2v_vOSale zAEml!7VPC=;o4Yvi|g0E14?yW>{3%2}sKihQKgokQu%cFiQSIO_W-*!l5N8zAWy-D$ z70>cqJ3N`^F|oiT5yBLP(6=I7rm~$dL;%C-L#%<*xRovEcVr{)QVAvpT@y>JlXQ{R_7Rs}%lK0T&fP*2RLL$SC@)+P)ZIZGa!zv$F z)}h*i4Jf_qb(CiUE;&t3-86J86S&UPJ4j0Zy(Re=ol`P0s(OO!f;~4xLOlqodcy6& z-ij#%KgA5#ou1XVaqwW1p0*q}mk1j>Q>)V)WS;AjSrwwk4>4tG40FGaTWJylk&t%T zYQaqpZ9``jn@#iWA?zk=E0KX+-Z9CfxiZL6yUI_KE@G9gB5VK#E22>wR|*YrD3IX< z`V%=lS@&WFK(mG`?rh3thRhjo6j9nf_lz*3nyA`MATn0%s%80n)QA7a7$^l|73ErJ zG%>xmuIyKf0&Fp)x8W$UEtHXggsmx1EbZPHa_pfO9le!3u1pjY1eR&Ch^3{OH49{b zkq5nTgmU^sH%OHhLVK<>Fr#PMl+sep#f0d>U2r9e2B2_{u%x>nuC_xMty4u3g5fE* zd-+UPJa0Xzgr1O}((Z`tb2-Vp5(m^F(;f7T+j8U~L5){9(za7lk60SJPM@#4PRoFW z7dTvsSzV=z{RKL;9}H~XQar+xvBJqdBD z*z87$_+jac+A%VLDCnm#>>ve<3|OI_#4#mtTqrle`doQ&tEn^zq5FF6>Y0Dg!CpOG zwaG>&`0B;V5DQv#Te|^zeJV&Ce}b<@Xhakf*ApeZqWoH=#PTk{wPHWyRIgz4POq^b z<6P;eC?^AhuhzP?WLD;aUKAiAuUQwUs^_B5++@k{@o^3b|a#}};S$2u- z$Yf(SxRn9tTy7G>rOe03FK=?{Fm3K8ZkAA>b0K=_tHe2dj5dPOe8??(47&v0Jz~#M z*35d%qj)qzw;b32){b$?&`QzO^#l9l;#@x4Jd&2Azh*s7Ba@+$fi2plgYG3 z8`b;h6`eK4Ft^hg#MBJ5RDP~#H4du~Ba_+4@YEiTv^BSPM7p~ooz3fe!}w03vsds- z0-#XoM-efLi$oYhd9(%Bm7E+FqkI!4hM?98s_BJ!dHbh)E!&4I)tXx=#SB()x-5(( zxEjES5T|0AVM$*xkyJA}-f>w25Dfm~ zLf7Z<`;~|AJCxUul7Hs&--q-HlC|6CZ$Mguv;#N=H0x_V|7xWDNGFk6zm77bx`%!K!$_x*)<1%Fke)-b{|eih380h-v%zytVh8Y(*FO2c93>H z=JOvzYW&~eAL%(H-#*9&=@F!pNb4W>`OhHDe*!!q9Yvb)q|g6Fq*svq`|&%ntEPV3 zhJvOd9XT>Nxf;3k;^gE8WFh2($gkuxTs5B!^;k7``lrj6gjdb*`L@-t%tqRVy7Ke1 z=1cuIj81t!euFFZRw2I+WowXIo-+RCYdsR%{2D*PHDyz7uA6$%+KW&8?!_l(*G*S< zr)Sq)r0&kl2I_z2#a|ndp2>NSA0?F%ziA@;Q=Px5^Iz+nzk26Sm-y`^e}}+tF8SM? zNAO+wuil-^ocKJxO9K4LD85%hzI@o{=kFVSgL>>Xe;m(ml6g@FCtvXK=VH<*f85A# zsrfzg-v8nA^Zs7s{9cuE=l9tBWfgvFlxe_o^dZB#Cy@VO4EFR}Tq8$dJNQMBsrnB3 zHT{b|{}o6dMOuc`hO`c;A88BH7m&V;^Z?RhNY5a>jPyFvJ4n;<-RTubA4OV*)P}SU zsUK+z(if1vjPwA~V@S^+y^QoalHudVmX?)v!`eQ?mqmL?U`b%{f+aBc*>k=QsMaXWEIJzW~5|*U#E4 z$uwa!vvYY{2G{-=_g+LNa*UVDsC6Cw@R98oV`tIS$w^#|D3x+KR+6!HalI ztw{K-ud-u|ofD|Qy484Hc*gNVdK^>BF?edK z4atljj-4OivzaiSnRZ#9X)_YX8}B*h8Zel%xHmE|{rxPSfrQlIn7tQx9J7WV@o3z` zNCuB%d@r4YmJ9uf!TX|mEcNMY_M-ERcxEos?jPa-`^0vR0q+>_>d36Vh{tpflELFy z9w*S)VK%5Q%8u8)NCuC-Z9fcXmXxSJrrkf)cx>tz@Q%^YW-A>2we{@-$VpG|z5_g* zvr(_hm>GJH;@;r-z6+mt{jCR&AD;13$aCQx_TcdY zvlGBGG*DE!e-ZbTG24}MMu2x3_p}3EtV8<$h{S#nkKe2w|HRqt689$_Jk9|pfk&O2 zi#SZla9DpY8H%>LSKfSfxS8X7U8M7 zRr)6dtCs196s%gHzfmw-$NUJtqF~h^{fC07QROETth8z7(y7{FIPO(Bd!goJ1#|GK zxmv;WP~~$Orb?us#-%D(1CHZQ!T7KkmpQj#sy=0f<4KjPQOPrD6ilr^rWhXzW@Mno zfr6E1r@bq9CNqn6tzZ>-nE8IHoC2flRFyOGP%(*u>A@_EcBf#T1f%Rr!T505b4|sG zFkU_SaPGwnlyjUCtp+m>YZ(4&a6(H1V8dSxBBP~%?YkBJ6rBEY6JYsL6nPD5e+oIj zC#7Zy$B}RK;8(X_K>2H)_U{6`OUthYCuMvIu($oM0^X_R&-T9w*j((-69D)TMLlws zKgU9RdCIt#{2W2f??|_Tks4V3KLY0W8;0MX1Lk-~X4Oo&()tZ@#$XEmki`!@jJ&KV zms=mIg69J^`m338g|!s0(T|OjdR7BA7p(q^u82nQ6Tan4e(N&Z&=gs_-fJW3az9y8K!yLSN*kAMiG9Pds-fS5qWqgU-J36=A=Ad2JAgI$BO3gJ4L)g5AaxymT-4ZgkLe>(2+=_wF3HN zi>D}-iEK<}`kZ7$;`fMC9JJKN6yJhh*SM(3VnHMk8zi*YQcHkXF_juJ?F4ZW4V!7} zY3>Y048&&4eYq7`EJ!OnE+i1mW^sT@$MQlH8+JG{geU2AEY9Q-R!i?K;g&Ulr7QSk z8CNB4%!=ID(S1WR_9)xhdV}FexcP>TAX|>*GZFO@GXTVmIJulNB!`VuJdl%0tVrvv zUCo{CEfyCf=3tVFvuAkXPQ@`UouQq3v@JteY0!lPr)aTpi7AntuIp?`C{nA)E8LvyN+ zX~!Hxqz;)m7p9hl_k^L!BW|imRvw|GOsQJ3zx|m{5s#Uu!*wpebouBf!=%ydZ+j$> z8op*I$$>jGH(98w4^b-FSsv`^X;~9&xv8m1zi#eb+Yv5_qkK-0dN=jnj+F8qN96(;c$M6h&j2&09i4rs)9TfpBai6k$`sLsNMhOYWdV4cNH!WN#Ea?8 NfxbaY9j7E({{IPc**gFL literal 0 HcmV?d00001 diff --git a/CocosDenshion/third_party/fmod/examples/playsound/Makefile b/CocosDenshion/third_party/fmod/examples/playsound/Makefile new file mode 100644 index 0000000000..02ae25b3b3 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/playsound/Makefile @@ -0,0 +1,11 @@ +playsound_cpp: main.cpp + g++ -O3 -o playsound main.cpp ../../api/lib/libfmodex.so -pthread + +playsound_c: main.c + gcc -O3 -o playsound main.c ../../api/lib/libfmodex.so -pthread + +run: + ./playsound + +clean: + rm -f playsound diff --git a/CocosDenshion/third_party/fmod/examples/playsound/main.c b/CocosDenshion/third_party/fmod/examples/playsound/main.c new file mode 100644 index 0000000000..56a4acaaf4 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/playsound/main.c @@ -0,0 +1,184 @@ +/*=============================================================================================== + PlaySound Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to simply load and play multiple sounds. This is about the simplest + use of FMOD. + This makes FMOD decode the into memory when it loads. If the sounds are big and possibly take + up a lot of ram, then it would be better to use the FMOD_CREATESTREAM flag so that it is + streamed in realtime as it plays. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound1, *sound2, *sound3; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/drumloop.wav", FMOD_SOFTWARE, 0, &sound1); + ERRCHECK(result); + result = FMOD_Sound_SetMode(sound1, FMOD_LOOP_OFF); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/jaguar.wav", FMOD_SOFTWARE, 0, &sound2); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/swish.wav", FMOD_SOFTWARE, 0, &sound3); + ERRCHECK(result); + + printf("===================================================================\n"); + printf("PlaySound Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===================================================================\n"); + printf("\n"); + printf("Press '1' to Play a mono sound using hardware mixing\n"); + printf("Press '2' to Play a mono sound using software mixing\n"); + printf("Press '3' to Play a stereo sound using hardware mixing\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound1, 0, &channel); + ERRCHECK(result); + break; + } + case '2' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound2, 0, &channel); + ERRCHECK(result); + break; + } + case '3' : + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound3, 0, &channel); + ERRCHECK(result); + break; + } + } + } + + FMOD_System_Update(system); + + { + unsigned int ms = 0; + unsigned int lenms = 0; + int playing = 0; + int paused = 0; + int channelsplaying = 0; + + if (channel) + { + FMOD_SOUND *currentsound = 0; + + result = FMOD_Channel_IsPlaying(channel, &playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPaused(channel, &paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + FMOD_Channel_GetCurrentSound(channel, ¤tsound); + if (currentsound) + { + result = FMOD_Sound_GetLength(currentsound, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + } + + result = FMOD_Sound_GetLength(sound1, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + FMOD_System_GetChannelsPlaying(system, &channelsplaying); + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : Channels Playing %2d\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped", channelsplaying); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound1); + ERRCHECK(result); + result = FMOD_Sound_Release(sound2); + ERRCHECK(result); + result = FMOD_Sound_Release(sound3); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/playsound/main.cpp b/CocosDenshion/third_party/fmod/examples/playsound/main.cpp new file mode 100644 index 0000000000..9d979cee49 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/playsound/main.cpp @@ -0,0 +1,182 @@ +/*=============================================================================================== + PlaySound Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to simply load and play multiple sounds. This is about the simplest + use of FMOD. + This makes FMOD decode the into memory when it loads. If the sounds are big and possibly take + up a lot of ram, then it would be better to use the FMOD_CREATESTREAM flag so that it is + streamed in realtime as it plays. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound1, *sound2, *sound3; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = system->setOutput(FMOD_OUTPUTTYPE_ALSA); + ERRCHECK(result); + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createSound("../media/drumloop.wav", FMOD_SOFTWARE, 0, &sound1); + ERRCHECK(result); + result = sound1->setMode(FMOD_LOOP_OFF); + ERRCHECK(result); + + result = system->createSound("../media/jaguar.wav", FMOD_SOFTWARE, 0, &sound2); + ERRCHECK(result); + + result = system->createSound("../media/swish.wav", FMOD_SOFTWARE, 0, &sound3); + ERRCHECK(result); + + printf("===================================================================\n"); + printf("PlaySound Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===================================================================\n"); + printf("\n"); + printf("Press '1' to Play a mono sound using software mixing\n"); + printf("Press '2' to Play a mono sound using software mixing\n"); + printf("Press '3' to Play a stereo sound using software mixing\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case '1' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound1, 0, &channel); + ERRCHECK(result); + break; + } + case '2' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound2, 0, &channel); + ERRCHECK(result); + break; + } + case '3' : + { + result = system->playSound(FMOD_CHANNEL_FREE, sound3, 0, &channel); + ERRCHECK(result); + break; + } + } + } + + system->update(); + + { + unsigned int ms = 0; + unsigned int lenms = 0; + bool playing = 0; + bool paused = 0; + int channelsplaying = 0; + + if (channel) + { + FMOD::Sound *currentsound = 0; + + result = channel->isPlaying(&playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + channel->getCurrentSound(¤tsound); + if (currentsound) + { + result = currentsound->getLength(&lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + } + + system->getChannelsPlaying(&channelsplaying); + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : Channels Playing %2d\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped", channelsplaying); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound1->release(); + ERRCHECK(result); + result = sound2->release(); + ERRCHECK(result); + result = sound3->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/playsound/playsound b/CocosDenshion/third_party/fmod/examples/playsound/playsound new file mode 100755 index 0000000000000000000000000000000000000000..4264b19a3d384c60bcc22a71c97e55b1f91357f8 GIT binary patch literal 21100 zcmeHveRLhgm1oO(1{sX45R);9Aq|mZdt;s@e_=c(k&vE{5`7`b#tg)d)_X0zw%-@8 z`&kl)Gh;{A#EvoRO*k3yv8=seW-=QFoJl4zAOg@-MUqE@2y+6>UH-YC3-sR>gp_W&9Uk&V#NcohP6l! zwW*S|mTk?mmRs+&mROe{i)Cwffd*is0%0!lVt{(UF!15su?E6BffHDUYyl*eg}Q{V z{=Q`qSl?1zX_w`=wa%dY49W;+ffLv-wn50CP6llgI)D>Q z*}yA7+CqEQlV~5%gj<3szm4VRxeWh7lt=r=u@hJyiM1;0jjYP1Z^(N2@es0LqT#Z}y(L{2yNb)0cL?a`ed4|NWZ9%Rc+=ol8-+9KbfN z2C#1Qx&{dAlNT@Y~X344{t8#Xj-663_&=7VvJsdjanNGyr(L zPbF{bujn^IIZxleKa#f~a(@}_DKlQz1Fiu49+AjpDe0{O}#TquOi1zMUoNJdfCa)_btlr4MP4$)f>T&a9K}K~eIhHHrlYZcof@IRd z(&q>1)CWGmb#J|uOpZ-VB#Yo*$U9jtm`v_$CQVKi<8CaKO8UfFm|qMs7*(3M(4{n+ z?tZk8_VP*Ei8VT!E&CZTFP6M~Fq%wdb^t*aQagB`9Cf^`<--_KfhEG{iU?WxwAH?K zYuhc|$(HyU>(-v`TiTPW<7>ma=J0M!B$u?jDlQ++L9Q6qaQ-uxNh>QT%VLNG2>hqg zOXU6#7;@dT0pELk2P$1+eMYk;(RM z{(Fhfv7XWVPXEtX!zJhpec;?CH84e;`Ak9I$P@w0BBlsV7BhvH zTf!7A*h~=sG%-csvYaUv^_5J~<7TD^7S=LFu(E+E2C#`K0+d#!SP(jxBCzRVih!tx zDFTK8rU)8_nIfpz$`nD+T}%;N-OUsMPnszLiwsjNHd&?!w2Dj-I0Z}*9BtnB%Fxv5 z*bGK)-MRbtp$^O1|EaUHv$NCR4d%}DA$NvL|IB>!ee0diAD>-!7LuD?`Ud{8&g@c3 zEW_JVCsA#7DJ7R-*{KtPQ-T?)=+rU6Daj1Owo^w0r$jS0@k4@BvYF+?4+>5RXPSxc z5}cCGY#?3~oD$Ep62Dt;NWcJL&OgW zPR(Y%Nc^DS)Ntkq@m+#b)0v~hi-J?*nPbH77Mz;TJV$&$a9Tj-1o2kEX$hGZi8l*Q zi^!ZLZVOJ!$jlIL1ddd$mVeo{?;odLer;fQFmvKhSOb4<+mbo*K&)Zr;~+e9u|bz|Jav=IruqB8jhtRb0XV^HSTmdc-|Q^zX(=;D!1dsPugW%o{9b#hPZQpXp-@r+xSzP`u1+G`C+7lj5m26vb_zKsG6E zw${h2g@1e>e3K?*7rBLEg}>JoY*j%T?P%hr!=h|-8nbaj@&_;)_TcAm0qDUQW_L6- zRv3phTT#S@=6?pVLCr3y*X;j{=^G-+VuG4ulfRHeNyAL7M;mtB%2br@y;!&uUok6E=nq^SQ67=Z#-{2^x9<_<`Z3 zo~fRuo;sKlabCEk3uwgLp`0<)P;)GXHOI_wwxdhX`2!zA{$XkC*up*Q&TTAg1^me4 zVm#lad43;j`r%y|0Byj*n5NFIMt?Rf+|z*urp~TexaSLU)3R{Sy|@`Ys7;OZhd~dN zGX%pq$u@D}_J``u`qrK%@mJHwaQCJzd{GxJ+;cUI@4)>+f=b`l`TKgBV&wj*e`Rl) zf=+mmTc*xl9^Cx4=X@8cnmPYXbW+@u>H!AF`N}@Ck;il+^U%m#G*bSYEu5T*2mKWhpWPLP`?DE{Bqex&yO;5ge`qkT>+P8P_ zUa+!{{{0Ityzn>vU;T69^+!y1Vh>jAf8TeWK2^W(xz~Su^n1M{jZgn%?vC%KSA0j) zLNiN9a0v+hFGj}U2+1ap{IjqI$>OJfvH%S)LZy@J^@TV}VNX+Ilq2&h9Kme9V%9KI zetmZK@F8ueiy;N*my>7a1r$u(*R<(93#adaKY@5-(Rq3^iqTbZlv;lDpI?T%L${ZV3&h%H!h_U$b}lD5t#0O}U#StDL1(2hkf;X?_6V0OR;m4yOEpot$ve9%h;57-_F?p7!o!dwZ(e)9WnzW4hH8X|I{> zZPV@TQIkzACKR~wOR&cV=zvnC*0@5`#6N)cAjUnPLj6nCjVYTy59IR-DTT=&~> zs!xLrdj7y6)D4~Ld}N;b7np?6_ve-T?>e9Se|F|veg6aULPg(ouA;w$28^P=j+Ret zf*?7UCU)`MFkuQwrZMRe^l;UzOrS7k@moH7Pu$TIm@n|jQrafm>x>U|(3x#5Q z+}T;l-R_K)oloRzHcu}_^D-fP_XYQd%!tgm;;5lgv)ideMg~eJ0;gH`{d^2?Lszf?^I_$c45@!>5;v( zdBa59wudvGZx>62v67P$z8=OWg_l|5UOrXG6`dfS*=Va{mgOt#Lf#%t+s!r)U)(g$ z?r;A8zsN?UCdXWMV#3K4DFnN{P@F7zW0}BSo?2mdqIX%rhTT*qU&t25Jal(;bMx98 zRyVh_#1$Wh#9&&#LfF^6ZT;So|?3qqa6Id+F-*71nUcgZg2FDJPqS^`v%SpuU?bV30Ho zd&C_r&<^raHtzUBDHc~<*Re;-`4o>Jsb0tC(U%=e7F|2YIDwrmK*+R2v{M*I9&AQR zVN9l?och_zJy+VG;fX3YZj`o#s~^Dnb1V`?tf1BQxn7WQOLpJzQ2S6f8Y$UrLj&D* zs!)c}j<_}tfITqBc_8WA^wbV#k3F8@JPFCj9vszd^UEW?oRP}}X(!M8GE69s5(1H5 zbW`3arI>bidMVC2T$r^^IqenfpoEh~pCYLt_WTq`LD$}~s$)xsuI=07PNb@J2ueKorb;R46pkXHjFdW+SA83<>a{MiGf?e_>*g_od2mVw zMX`G*jnWl)3xhWMb}zqXwcXy|3*szVsB%XXGKQ~1?FS+8>YbQ@t-vEcjONOlr- zDYAh;CsSE3g$9Z^&~@@D^uX>fLEC0Jsmd4(3>H(MP_T1OeiHM@3w%^_i}rHq3?@h3 zZdtuSEE#8z=u4;cPA@;U-DWeB6~ST>dfEw%2KdpYNWpXJ>b7tz(<<)<eQaMk>o0VkTgD1)rur_7A9WI2Paj+ofZEuu@Tu}<`0#l=s0p1n4pcO|1N5?jT zIVfGf(AYU8M8YF3O;9sc;;m{2S$;p0jC8*i~vNbOjxDjJXDZ@-*obHoywap51=Y~6!D|79u1xo66h(UCKPJ z5G#)W-%jps)_2F@tdv8fQbWtdK;gkka5s#6Btmh@kS2x))*}0ojh4`*5m=_HTm#ng z!UWd-YD$o4CNlr@h^d-$n}aRrvH5O^PONr_mI^Q{zD=!F_hLAy0%E&V04-r^YZ!ow>UK2;Wd#=pfQSpuCT%;TaIv=fNp<5!dSRijUjNXJEYRox*EMNI`F|K`dm)cs z%5-i?$B6xTd+SJH!d|n!d8O)3&V?_7n9^wpn~MA`P(&kPVy=w2jAgi(ne-v->`F0g zvpT_A>8G|1=+ZW>TJaTFMYlNFGHNMin9mfEWA{0IEA8(5sH_Vv7W*7lc1mj$v9I(H z$R;@3HQ~u%se?z^4+$wkPwcVgbKu!VjipVT9u08A=81h-JyvgGVLS z*$HtJO5rf+C9xvXg^T;k%8#`xDO)%$u5DhboW)KCO_P+RXnPa0|^)#_PFt7Gh= zB)3}Af#XH_89Mm-i}Ew=M)^^!2-oq51wth?`$MOgaY|{~(`bJKC%}NbvM{Ki(7v_3 zt%K6%?v9flCacB=lM44m82Rm<$7LcM%f;Fj4{G*QutYB}fn0SC?Af<<#4qtG29f84 z866e%8>v&Q?u45vb72q_ghMkSFP6zvrm{1s_OMDiRBX7G>#%^{xZ2rg5Ur3BdkYLc zwZnyh%XYl7KfmBors!{|3ZyT*sL8w!cO07sdpPOTjszZ-lPJ4Wt-6-gAI4!ae9Vg* zM!1t=grj>Ym5uAbZW)^eFDC~Z0U|F9sluZ|N>{GpJxF%Mm6$lP@`)L&stGc&WYWnn zs*qqkA>s))2JDg!)736&r9Fa(N+M*vrgC|kv#tC#bzx8U#*8cbxczkt0eTT=aX^W~hx)1VJWXD8m8H>SEdCI zI`ZQBweNsZT{jIYsP_44zicmWSwDhJi$2CsN~14$E8Vjn;;Osa20LzV8&uA@5?awR zC<&#v>dwmUh=t*Lf-W*3br7FG4C1{^98|T5f(6M|IdopeECN_A+R{fo+IQ%EdZklP zb8VnC0236=a;Lx@87eWcyt2oYYFa0lWmLsuEhpVMbPN0# zY&g2k=?4UDWh|6uMJ2yMo8u0qfSMkrJIZ6A$LesE<(O7}Mp=hy4>q9muJ=)q1vqq? zT)JuK*e1xCZ}j|WD3p)UIVB^rYA~@SF?dUIU=Tso;Ba?hsA>tpvu|;`H?sRS4j$d4 zr>(@zA!B1_YIjmf2$?W%40O4Nt{#~cU)v8r+{G@6(`lUMeuMS*THq_^QH zaV%7jiG-sma12jx3_Ff6N{-RW8CM~N1p?bN*~HS)%$@}@z|4c*I77L7Vi@Gg`AK`O zHZY@S+LY2#$;E=`!d-ADiUy$Yh_Gb1V6Kis7_C!95`rO@$Gyzc6)#v%Dq$q-Pk1^a z>zI@El{ladS?=Jyaa)NzB&dlBN7{Bm^@yc$==Aw|=(G%2ctE#YE^>W`7)8)S6e9EXygdgK;o65>>G*o_kL!!j6kVq^kQ@Xuq~ zK?;}|utGM2MI1{K=Y?_;tk0bnkD9_o2*cNV*U0*V0S@Wqs#A^<(XS!w46&ibu(cbY z*QbKS@q7HGghoU$aX%6273J3{C00%Wt`qxVPxTH)AK)4bGR~EbigGeI`qfc=kgJSR ztrvzF!l5#|p;r|heIQ3%I$BkGdPob8JgZY#=veE~>HeFN?qel*}s892=m+^BvqeDL;$8enFw2rW|91`1+#l{?PD+4aMJS2uoS&5ln zIpow~+Oq9DETKS`LG;vD*mL?AZ3N+Z$Rm49I}g88;>=O@%zDqG`e=m8xq{woN%RdT z`IvWqU(X$Cag53%Tx;kzpa9y342f146pX`>Lv{RYCd(RaRG*_)4b~XLvR-EbOEbuF z{xZ>O238?PCaaO@Q}=MPv#q-)+25D!ZQD9Dj0e+uhlD;90EJ3FiilZUB*GZVqcgE3 zbaL2?@)t!h1hrRCO|SCh$3W$4**;{c_S{M-X0nRYWntRmZU8evoQi3NB_m}ot5$UU z#$~9ekO00n$3AlZ5V&JJ5euC-+DAafKW5>Rl~Lk7+E^vpf@!c-No+YaF-XW2b4nGf zpFa@#o$H{`k#Nt=X~qqI)$emK4NUq8&526|78g0x4y~9|&KKXHsPx$k=a0ly)uX$0 zb9cviMrYOdQ}kJ%$wh+z_#8%J-1>CEo?-X7ayIbLLyWD+A7~NAQVk+V!$VbJA3^No z-2xufpX6kODk`VAy>Or@9R!-0S_z`$N2C!rHGSZr?{%WS~RcV}niL9ez24Yy3sxq@$Muxu0H4U}~uwIXF}fo=t`&1>+! zLs(X9tiN>gyw~16@67d$m#Dk5*Ee3O?%uc_l)t-vCxPEd;B86(kD|%*wI*dXKBH-X z&sg&Q8J&Jxr$5vw-<9Gc-h4+BukOgZnS7S*QM_0F%Qt5WGatiyPr#2%<2@*(%~P=k zJ~MOz4uvlZ@R4r5pUjIs<_zBV0ZWTdRPqT^zDxakfUTd1HSoR_Dc@tI@8J8`4FEiQ zS2(c`FJmB;x=42cN6~M5-G`?o`Odtl_yETBFyJx3Q-E&+egya_;7!1S`(q8)0^)!V z0{Q^k0C~V40v-T740sIi6yV!{9|3*}coVST0O|wcfDZ!t0NVhj{af4HH`>cLk6^D< zw%5kj#@F1iwk+7X6$-~Iul{5%a7K^@*a9%km^=JXhM%;oIM!J=j`#0wz?My8WBGEN zab5ZbFKxw%VL{GV@$_UK{8Wnf0i{Im2C9%G%5YvpdUaFG23DLgh84%FfcPsfi^fX@ zMif@u%_K*;aZ6^>sA(`OF2Bv8IsQav#kZ$W2$p!>DTU?=V1qw#;jQ@Ky+TyNE({@v zkjQ3vT zak(ZP=V~h^JLjt5M>-n!6u{7NZf^x0=RE1?M-1KlxMyFPPao5T!8haHT&CTRBg4>5 zfNlbGubDxjjC6!gM(Fqrk0Kh|M1kt7QKt_fHT?L#`J))b5<`U4wEM88<9JVk?j-2! z>nnt|zWp<#I z=k|}ZFGc9+`_F)G5Aw`K8o~^~@SA{-o@hOnA4sg90@yy=-37W`t(Nt9+?&hRH@`qi ze#Vwa_dZ?5gk=P-Ipk%oFSH_FH3(AD@M0>u70j|GIx&wRsB3|*0dNeoE!upP-*Y{d z^#~n=z6?KuM^pMO;`O>!`X_~}mg$ESu3DhKQ8-(N4B=N4t{SBOP&hTJ{Di`lHq9DZ zuPux7UX^ncYJMx6E4o^v6|N?f`EEnKLF>s-CHKydS2hkE(qi<(a? zs29oM2J=DT)C%TLh%+Kk^MGl+_UyEGg)@?XKL~LZahP?!UcQc^>{QV+;!v@O!ZE3F z(e4z^ugfU=Quwml z{23D1^#be5ywMlO^9|hdC7dRtEPoCuU+3X|j{P}-l<%+ZLPzSLzaIeSn<%EguK?$K zM`G2@S#13pDPu2%Uv2S4AtNtq&O0r>R2Rip0yp}roAWMf9dM%`8(;rv1#T`{$46`M zao~Kvm^0x@^#9{E<&Ob3_Q~?Uj+EP|^GprS@66EubA0c>cwdT?v;8+~@Wq(2#@_iI zlWQZ+gY^8KleviVHB@sE|3nS`=Qa3~HTa1d{GV#@H-JaK%W`?dNwK{Zz*{jsEJxOr za~4>PJIuxM3E)QljgbFzP5GbH;74lkmum3$Ly&xnn{B*f&LV3KaJ~voyQe>;`-*~Bf0Hw9n zeBOkgFVP=MN%`gE`97UTj#Pg;=DgpY87(F=XPpjRd~Q;s(Ijt z1pS36>5%%7GyJv|zeJ?Ia1><`e*Gw#Y4~c9R=(wBK5%sImz!E!BVRe9zpCPw^ww`! aAICS8lEqXq$dvOt;v*B5`ht=O_}>An8Lwmj literal 0 HcmV?d00001 diff --git a/CocosDenshion/third_party/fmod/examples/playstream/Makefile b/CocosDenshion/third_party/fmod/examples/playstream/Makefile new file mode 100644 index 0000000000..fd1ea53df3 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/playstream/Makefile @@ -0,0 +1,11 @@ +playstream_cpp: main.cpp + g++ -O3 -o playstream main.cpp ../../api/lib/libfmodex.so -pthread + +playstream_c: main.c + g++ -O3 -o playstream main.c ../../api/lib/libfmodex.so -pthread + +run: + ./playstream + +clean: + rm -f playstream diff --git a/CocosDenshion/third_party/fmod/examples/playstream/main.c b/CocosDenshion/third_party/fmod/examples/playstream/main.c new file mode 100644 index 0000000000..eab0d6d12a --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/playstream/main.c @@ -0,0 +1,149 @@ +/*=============================================================================================== + PlayStream Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to simply play a stream, such as an mp3 or wav. + The stream behaviour is achieved by specifying FMOD_CREATESTREAM in the call to + FMOD_System_CreateSound. + This makes FMOD decode the file in realtime as it plays, instead of loading it all at once. + This uses far less memory, in exchange for a small runtime cpu hit. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = FMOD_System_Init(system, 1, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/wave.mp3", FMOD_SOFTWARE | FMOD_2D | FMOD_CREATESTREAM, 0, &sound); + ERRCHECK(result); + + printf("====================================================================\n"); + printf("PlayStream Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("====================================================================\n"); + printf("\n"); + printf("Press space to pause, Esc to quit\n"); + printf("\n"); + + /* + Play the sound. + */ + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, 0, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + int paused; + FMOD_Channel_GetPaused(channel, &paused); + FMOD_Channel_SetPaused(channel, !paused); + break; + } + } + } + + FMOD_System_Update(system); + + if (channel) + { + unsigned int ms; + unsigned int lenms; + int playing; + int paused; + + FMOD_Channel_IsPlaying(channel, &playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPaused(channel, &paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Sound_GetLength(sound, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/playstream/main.cpp b/CocosDenshion/third_party/fmod/examples/playstream/main.cpp new file mode 100644 index 0000000000..5fa8235a8d --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/playstream/main.cpp @@ -0,0 +1,147 @@ +/*=============================================================================================== + PlayStream Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to simply play a stream, such as an mp3 or wav. + The stream behaviour is achieved by specifying FMOD_CREATESTREAM in the call to + System::createSound. + This makes FMOD decode the file in realtime as it plays, instead of loading it all at once. + This uses far less memory, in exchange for a small runtime cpu hit. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = system->init(1, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createSound("../media/wave.mp3", FMOD_SOFTWARE | FMOD_2D | FMOD_CREATESTREAM, 0, &sound); + ERRCHECK(result); + + printf("====================================================================\n"); + printf("PlayStream Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("====================================================================\n"); + printf("\n"); + printf("Press space to pause, Esc to quit\n"); + printf("\n"); + + /* + Play the sound. + */ + + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + bool paused; + channel->getPaused(&paused); + channel->setPaused(!paused); + break; + } + } + } + + system->update(); + + if (channel) + { + unsigned int ms; + unsigned int lenms; + bool playing; + bool paused; + + channel->isPlaying(&playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE)) + { + ERRCHECK(result); + } + + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE)) + { + ERRCHECK(result); + } + + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE)) + { + ERRCHECK(result); + } + + result = sound->getLength(&lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE)) + { + ERRCHECK(result); + } + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/plugin_dev/codec_raw/Makefile b/CocosDenshion/third_party/fmod/examples/plugin_dev/codec_raw/Makefile new file mode 100644 index 0000000000..458ad01437 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/plugin_dev/codec_raw/Makefile @@ -0,0 +1,5 @@ +all: + g++ -shared -fPIC -o codec_raw.so main.c + +clean: + rm -f codec_raw.so diff --git a/CocosDenshion/third_party/fmod/examples/plugin_dev/codec_raw/main.c b/CocosDenshion/third_party/fmod/examples/plugin_dev/codec_raw/main.c new file mode 100644 index 0000000000..9b585b481d --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/plugin_dev/codec_raw/main.c @@ -0,0 +1,96 @@ +/*=============================================================================================== + CODEC_RAW.SO + Copyright (c), Firelight Technologies Pty, Ltd 2006-2011. + +===============================================================================================*/ + +#include + +#include "../../../api/inc/fmod.h" +#include "../../../api/inc/fmod_errors.h" + +FMOD_RESULT F_CALLBACK rawopen(FMOD_CODEC_STATE *codec, FMOD_MODE usermode, FMOD_CREATESOUNDEXINFO *userexinfo); +FMOD_RESULT F_CALLBACK rawclose(FMOD_CODEC_STATE *codec); +FMOD_RESULT F_CALLBACK rawread(FMOD_CODEC_STATE *codec, void *buffer, unsigned int size, unsigned int *read); +FMOD_RESULT F_CALLBACK rawsetposition(FMOD_CODEC_STATE *codec, int subsound, unsigned int position, FMOD_TIMEUNIT postype); + +FMOD_CODEC_DESCRIPTION rawcodec = +{ + "FMOD Raw player plugin example", // Name. + 0x00010000, // Version 0xAAAABBBB A = major, B = minor. + 0, // Don't force everything using this codec to be a stream + FMOD_TIMEUNIT_PCMBYTES, // The time format we would like to accept into setposition/getposition. + &rawopen, // Open callback. + &rawclose, // Close callback. + &rawread, // Read callback. + 0, // Getlength callback. (If not specified FMOD return the length in FMOD_TIMEUNIT_PCM, FMOD_TIMEUNIT_MS or FMOD_TIMEUNIT_PCMBYTES units based on the lengthpcm member of the FMOD_CODEC structure). + &rawsetposition, // Setposition callback. + 0, // Getposition callback. (only used for timeunit types that are not FMOD_TIMEUNIT_PCM, FMOD_TIMEUNIT_MS and FMOD_TIMEUNIT_PCMBYTES). + 0 // Sound create callback (don't need it) +}; + + +/* + FMODGetCodecDescription is mandatory for every fmod plugin. This is the symbol the registerplugin function searches for. + Must be declared with F_API to make it export as stdcall. + MUST BE EXTERN'ED AS C! C++ functions will be mangled incorrectly and not load in fmod. +*/ +#ifdef __cplusplus +extern "C" { +#endif + +F_DECLSPEC F_DLLEXPORT FMOD_CODEC_DESCRIPTION * F_API FMODGetCodecDescription() +{ + return &rawcodec; +} + +#ifdef __cplusplus +} +#endif + + +static FMOD_CODEC_WAVEFORMAT rawwaveformat; + +/* + The actual codec code. + + Note that the callbacks uses FMOD's supplied file system callbacks. + + This is important as even though you might want to open the file yourself, you would lose the following benefits. + 1. Automatic support of memory files, CDDA based files, and HTTP/TCPIP based files. + 2. "fileoffset" / "length" support when user calls System::createSound with FMOD_CREATESOUNDEXINFO structure. + 3. Buffered file access. + FMOD files are high level abstracts that support all sorts of 'file', they are not just disk file handles. + If you want FMOD to use your own filesystem (and potentially lose the above benefits) use System::setFileSystem. +*/ + +FMOD_RESULT F_CALLBACK rawopen(FMOD_CODEC_STATE *codec, FMOD_MODE usermode, FMOD_CREATESOUNDEXINFO *userexinfo) +{ + rawwaveformat.channels = 2; + rawwaveformat.format = FMOD_SOUND_FORMAT_PCM16; + rawwaveformat.frequency = 44100; + rawwaveformat.blockalign = rawwaveformat.channels * 2; /* 2 = 16bit pcm */ + rawwaveformat.lengthpcm = codec->filesize / rawwaveformat.blockalign; /* bytes converted to PCM samples */; + + codec->numsubsounds = 0; /* number of 'subsounds' in this sound. For most codecs this is 0, only multi sound codecs such as FSB or CDDA have subsounds. */ + codec->waveformat = &rawwaveformat; + codec->plugindata = 0; /* user data value */ + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK rawclose(FMOD_CODEC_STATE *codec) +{ + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK rawread(FMOD_CODEC_STATE *codec, void *buffer, unsigned int size, unsigned int *read) +{ + return codec->fileread(codec->filehandle, buffer, size, read, 0); +} + +FMOD_RESULT F_CALLBACK rawsetposition(FMOD_CODEC_STATE *codec, int subsound, unsigned int position, FMOD_TIMEUNIT postype) +{ + return codec->fileseek(codec->filehandle, position, 0); +} + diff --git a/CocosDenshion/third_party/fmod/examples/plugin_dev/dsp_gain/Makefile b/CocosDenshion/third_party/fmod/examples/plugin_dev/dsp_gain/Makefile new file mode 100644 index 0000000000..86e326acec --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/plugin_dev/dsp_gain/Makefile @@ -0,0 +1,5 @@ +all: + g++ -shared -fPIC -o dsp_gain.so main.c + +clean: + rm -f dsp_gain.so diff --git a/CocosDenshion/third_party/fmod/examples/plugin_dev/dsp_gain/main.c b/CocosDenshion/third_party/fmod/examples/plugin_dev/dsp_gain/main.c new file mode 100644 index 0000000000..d0b380f376 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/plugin_dev/dsp_gain/main.c @@ -0,0 +1,181 @@ +/*=============================================================================================== + DSP_GAIN.SO + Copyright (c), Firelight Technologies Pty, Ltd 2006-2011. + +===============================================================================================*/ + +#include +#include + +#include "../../../api/inc/fmod.h" +#include "../../../api/inc/fmod_errors.h" + +FMOD_RESULT F_CALLBACK dspcreate (FMOD_DSP_STATE *dsp); +FMOD_RESULT F_CALLBACK dsprelease (FMOD_DSP_STATE *dsp); +FMOD_RESULT F_CALLBACK dspreset (FMOD_DSP_STATE *dsp); +FMOD_RESULT F_CALLBACK dspread (FMOD_DSP_STATE *dsp, float *inbuffer, float *outbuffer, unsigned int length, int inchannels, int outchannels); +FMOD_RESULT F_CALLBACK dspsetparam(FMOD_DSP_STATE *dsp, int index, float value); +FMOD_RESULT F_CALLBACK dspgetparam(FMOD_DSP_STATE *dsp, int index, float *value, char *valuestr); + + +/* + DSP Parameter list. +*/ +FMOD_DSP_PARAMETERDESC dspparam[1] = +{ + { 0.0f, 1.0f, 1.0, "Level", "%", "Gain level" }, +}; + + +FMOD_DSP_DESCRIPTION dspgaindesc = +{ + "FMOD gain example", // name + 0x00010000, // version 0xAAAABBBB A = major, B = minor. + 0, // 0 = we can filter whatever you throw at us. To be most user friendly, always write a filter like this. + dspcreate, // + dsprelease, // + dspreset, // + dspread, // + 0, // This is for if you want to allow the plugin to seek, which doesnt really make sense in a gain filter so we'll just leave it out. + 1, // 1 parameter. "level" + dspparam, // pointer to the parameter list definition. + dspsetparam, // + dspgetparam, // + 0, // This is for if you want to pop up a dialog box to configure the plugin. Not doing that here. + 0, // This is for if you want to pop up a dialog box to configure the plugin. Not doing that here. + 0, // This is for if you want to pop up a dialog box to configure the plugin. Not doing that here. +}; + +/* + FMODGetDSPDescription is mandantory for every fmod plugin. This is the symbol the registerplugin function searches for. + Must be declared with F_API to make it export as stdcall. + MUST BE EXTERN'ED AS C! C++ functions will be mangled incorrectly and not load in fmod. +*/ +#ifdef __cplusplus +extern "C" { +#endif + +F_DECLSPEC F_DLLEXPORT FMOD_DSP_DESCRIPTION * F_API FMODGetDSPDescription() +{ + return &dspgaindesc; +} + +#ifdef __cplusplus +} +#endif + + +typedef struct dspgain_state +{ + float gain; +} dspgain_state; + + +FMOD_RESULT F_CALLBACK dspcreate(FMOD_DSP_STATE *dsp) +{ + dspgain_state *state; + + /* + If we were allocating memory for buffers etc, it would be done in this function. + */ + + state = (dspgain_state *)malloc(sizeof(dspgain_state)); + if (!state) + { + return FMOD_ERR_MEMORY; + } + + state->gain = dspparam[0].defaultval; + + dsp->plugindata = state; + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK dsprelease(FMOD_DSP_STATE *dsp) +{ + dspgain_state *state = (dspgain_state *)dsp->plugindata; + + /* + If memory was allocated in create, it would be freed in this function. + */ + + free(state); + + return FMOD_OK; +} + + +FMOD_RESULT F_CALLBACK dspreset(FMOD_DSP_STATE *dsp) +{ + dspgain_state *state = (dspgain_state *)dsp->plugindata; + + /* + This isnt really needed here. It is used to reset a filter back to it's default state. + */ + + state->gain = dspparam[0].defaultval; + + return FMOD_OK; +} + + +/* + This callback does the work. Modify data from inbuffer and send it to outbuffer. +*/ +FMOD_RESULT F_CALLBACK dspread(FMOD_DSP_STATE *dsp, float *inbuffer, float *outbuffer, unsigned int length, int inchannels, int outchannels) +{ + dspgain_state *state = (dspgain_state *)dsp->plugindata; + unsigned int count; + int count2; + int channels = inchannels; // outchannels and inchannels will always be the same because this is a flexible filter. + + for (count = 0; count < length; count++) + { + for (count2 = 0; count2 < channels; count2++) + { + outbuffer[(count * channels) + count2] = inbuffer[(count * channels) + count2] * state->gain; + } + } + + return FMOD_OK; +} + +/* + This callback is for when the user sets a parameter. It is automatically clamped between 0 and 1. +*/ +FMOD_RESULT F_CALLBACK dspsetparam(FMOD_DSP_STATE *dsp, int index, float value) +{ + dspgain_state *state = (dspgain_state *)dsp->plugindata; + + switch (index) + { + case 0: + { + state->gain = value; + break; + } + } + return FMOD_OK; +} + +/* + This callback is for when the user gets a parameter. The label for our only parameter is percent, + so when the string is requested print it out as 0 to 100. +*/ +FMOD_RESULT F_CALLBACK dspgetparam(FMOD_DSP_STATE *dsp, int index, float *value, char *valuestr) +{ + dspgain_state *state = (dspgain_state *)dsp->plugindata; + + switch (index) + { + case 0: + { + *value = state->gain; + sprintf(valuestr, "%.02f", state->gain * 100.0f); // our units are '%', so print it out as 0 to 100. + } + } + + return FMOD_OK; +} + diff --git a/CocosDenshion/third_party/fmod/examples/readtags/Makefile b/CocosDenshion/third_party/fmod/examples/readtags/Makefile new file mode 100644 index 0000000000..b30f2105b5 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/readtags/Makefile @@ -0,0 +1,11 @@ +readtags_cpp: main.cpp + g++ -O3 -o readtags main.cpp ../../api/lib/libfmodex.so + +readtags_c: main.c + g++ -O3 -o readtags main.c ../../api/lib/libfmodex.so + +run: + ./readtags + +clean: + rm -f readtags diff --git a/CocosDenshion/third_party/fmod/examples/readtags/main.c b/CocosDenshion/third_party/fmod/examples/readtags/main.c new file mode 100644 index 0000000000..f164c6fd2e --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/readtags/main.c @@ -0,0 +1,165 @@ +/*=============================================================================================== + ReadTags Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to read tags from sound files +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_RESULT result; + FMOD_TAG tag; + int numtags, numtagsupdated, count; + unsigned int version; + + printf("==================================================================\n"); + printf("ReadTags Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==================================================================\n\n"); + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = FMOD_System_Init(system, 100, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + /* + Open the specified file. Use FMOD_CREATESTREAM and FMOD_OPENONLY so it opens quickly + */ + result = FMOD_System_CreateSound(system, "../media/wave.mp3", FMOD_SOFTWARE | FMOD_2D | FMOD_CREATESTREAM | FMOD_OPENONLY, 0, &sound); + ERRCHECK(result); + + /* + Read and display all tags associated with this file + */ + for (;;) + { + /* + An index of -1 means "get the first tag that's new or updated". + If no tags are new or updated then getTag will return FMOD_ERR_TAGNOTFOUND. + This is the first time we've read any tags so they'll all be new but after we've read them, + they won't be new any more. + */ + if (FMOD_Sound_GetTag(sound, 0, -1, &tag) != FMOD_OK) + { + break; + } + if (tag.datatype == FMOD_TAGDATATYPE_STRING) + { + printf("%s = %s (%d bytes)\n", tag.name, tag.data, tag.datalen); + } + else + { + printf("%s = (%d bytes)\n", tag.name, tag.datalen); + } + } + printf("\n"); + + /* + Read all the tags regardless of whether they're updated or not. Also show the tag type. + */ + result = FMOD_Sound_GetNumTags(sound, &numtags, &numtagsupdated); + ERRCHECK(result); + for (count=0; count < numtags; count++) + { + result = FMOD_Sound_GetTag(sound, 0, count, &tag); + ERRCHECK(result); + + switch (tag.type) + { + case FMOD_TAGTYPE_UNKNOWN : + printf("FMOD_TAGTYPE_UNKNOWN "); + break; + + case FMOD_TAGTYPE_ID3V1 : + printf("FMOD_TAGTYPE_ID3V1 "); + break; + + case FMOD_TAGTYPE_ID3V2 : + printf("FMOD_TAGTYPE_ID3V2 "); + break; + + case FMOD_TAGTYPE_VORBISCOMMENT : + printf("FMOD_TAGTYPE_VORBISCOMMENT "); + break; + + case FMOD_TAGTYPE_SHOUTCAST : + printf("FMOD_TAGTYPE_SHOUTCAST "); + break; + + case FMOD_TAGTYPE_ICECAST : + printf("FMOD_TAGTYPE_ICECAST "); + break; + + case FMOD_TAGTYPE_ASF : + printf("FMOD_TAGTYPE_ASF "); + break; + + case FMOD_TAGTYPE_FMOD : + printf("FMOD_TAGTYPE_FMOD "); + break; + + case FMOD_TAGTYPE_USER : + printf("FMOD_TAGTYPE_USER "); + break; + } + + if (tag.datatype == FMOD_TAGDATATYPE_STRING) + { + printf("%s = %s (%d bytes)\n", tag.name, tag.data, tag.datalen); + } + else + { + printf("%s = ??? (%d bytes)\n", tag.name, tag.datalen); + } + } + printf("\n"); + + /* + Find a specific tag by name. Specify an index > 0 to get access to multiple tags of the same name. + */ + result = FMOD_Sound_GetTag(sound, "ARTIST", 0, &tag); + ERRCHECK(result); + printf("%s = %s (%d bytes)\n", tag.name, tag.data, tag.datalen); + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/readtags/main.cpp b/CocosDenshion/third_party/fmod/examples/readtags/main.cpp new file mode 100644 index 0000000000..8a1ed8bdd7 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/readtags/main.cpp @@ -0,0 +1,165 @@ +/*=============================================================================================== + ReadTags Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to read tags from sound files +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD_RESULT result; + FMOD_TAG tag; + int numtags, numtagsupdated, count; + unsigned int version; + + printf("==================================================================\n"); + printf("ReadTags Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==================================================================\n\n"); + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + result = system->init(100, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + /* + Open the specified file. Use FMOD_CREATESTREAM and FMOD_OPENONLY so it opens quickly + */ + result = system->createSound("../media/wave.mp3", FMOD_SOFTWARE | FMOD_2D | FMOD_CREATESTREAM | FMOD_OPENONLY, 0, &sound); + ERRCHECK(result); + + /* + Read and display all tags associated with this file + */ + for (;;) + { + /* + An index of -1 means "get the first tag that's new or updated". + If no tags are new or updated then getTag will return FMOD_ERR_TAGNOTFOUND. + This is the first time we've read any tags so they'll all be new but after we've read them, + they won't be new any more. + */ + if (sound->getTag(0, -1, &tag) != FMOD_OK) + { + break; + } + if (tag.datatype == FMOD_TAGDATATYPE_STRING) + { + printf("%s = %s (%d bytes)\n", tag.name, tag.data, tag.datalen); + } + else + { + printf("%s = (%d bytes)\n", tag.name, tag.datalen); + } + } + printf("\n"); + + /* + Read all the tags regardless of whether they're updated or not. Also show the tag type. + */ + result = sound->getNumTags(&numtags, &numtagsupdated); + ERRCHECK(result); + for (count=0; count < numtags; count++) + { + result = sound->getTag(0, count, &tag); + ERRCHECK(result); + + switch (tag.type) + { + case FMOD_TAGTYPE_UNKNOWN : + printf("FMOD_TAGTYPE_UNKNOWN "); + break; + + case FMOD_TAGTYPE_ID3V1 : + printf("FMOD_TAGTYPE_ID3V1 "); + break; + + case FMOD_TAGTYPE_ID3V2 : + printf("FMOD_TAGTYPE_ID3V2 "); + break; + + case FMOD_TAGTYPE_VORBISCOMMENT : + printf("FMOD_TAGTYPE_VORBISCOMMENT "); + break; + + case FMOD_TAGTYPE_SHOUTCAST : + printf("FMOD_TAGTYPE_SHOUTCAST "); + break; + + case FMOD_TAGTYPE_ICECAST : + printf("FMOD_TAGTYPE_ICECAST "); + break; + + case FMOD_TAGTYPE_ASF : + printf("FMOD_TAGTYPE_ASF "); + break; + + case FMOD_TAGTYPE_FMOD : + printf("FMOD_TAGTYPE_FMOD "); + break; + + case FMOD_TAGTYPE_USER : + printf("FMOD_TAGTYPE_USER "); + break; + } + + if (tag.datatype == FMOD_TAGDATATYPE_STRING) + { + printf("%s = %s (%d bytes)\n", tag.name, tag.data, tag.datalen); + } + else + { + printf("%s = ??? (%d bytes)\n", tag.name, tag.datalen); + } + } + printf("\n"); + + /* + Find a specific tag by name. Specify an index > 0 to get access to multiple tags of the same name. + */ + result = sound->getTag("ARTIST", 0, &tag); + ERRCHECK(result); + printf("%s = %s (%d bytes)\n", tag.name, tag.data, tag.datalen); + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/realtimestitching/Makefile b/CocosDenshion/third_party/fmod/examples/realtimestitching/Makefile new file mode 100644 index 0000000000..38f43b13f0 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/realtimestitching/Makefile @@ -0,0 +1,11 @@ +realtimestitching_cpp: main.cpp + g++ -O3 -o realtimestitching main.cpp ../../api/lib/libfmodex.so -pthread + +realtimestitching_c: main.c + g++ -O3 -o realtimestitching main.c ../../api/lib/libfmodex.so -pthread + +run: + ./realtimestitching + +clean: + rm -f realtimestitching diff --git a/CocosDenshion/third_party/fmod/examples/realtimestitching/main.c b/CocosDenshion/third_party/fmod/examples/realtimestitching/main.c new file mode 100644 index 0000000000..52942f6c88 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/realtimestitching/main.c @@ -0,0 +1,245 @@ +/*=============================================================================================== + Real-time stitching example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how you can create your own multi-subsound stream, then in realtime replace + each the subsound as it plays them. Using a looping sentence, it will seamlessly stich between + 2 subsounds in this example, and each time it switches to a new sound, it will replace the old + one with another sound in our list. + + These sounds can go on forever as long as they are the same bitdepth (when decoded) and number + of channels (ie mono / stereo). The reason for this is the hardware channel cannot change + formats mid sentence, and using different hardware channels would mean it wouldn't be gapless. + +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +#define NUMSOUNDS 32 + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_SOUND *subsound[2]; + FMOD_CREATESOUNDEXINFO exinfo; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int key; + unsigned int subsoundid, sentenceid; + unsigned int version; + const char *soundname[NUMSOUNDS] = + { + "../media/e.ogg", /* Ma- */ + "../media/d.ogg", /* ry */ + "../media/c.ogg", /* had */ + "../media/d.ogg", /* a */ + "../media/e.ogg", /* lit- */ + "../media/e.ogg", /* tle */ + "../media/e.ogg", /* lamb, */ + "../media/e.ogg", /* ..... */ + "../media/d.ogg", /* lit- */ + "../media/d.ogg", /* tle */ + "../media/d.ogg", /* lamb, */ + "../media/d.ogg", /* ..... */ + "../media/e.ogg", /* lit- */ + "../media/e.ogg", /* tle */ + "../media/e.ogg", /* lamb, */ + "../media/e.ogg", /* ..... */ + + "../media/e.ogg", /* Ma- */ + "../media/d.ogg", /* ry */ + "../media/c.ogg", /* had */ + "../media/d.ogg", /* a */ + "../media/e.ogg", /* lit- */ + "../media/e.ogg", /* tle */ + "../media/e.ogg", /* lamb, */ + "../media/e.ogg", /* its */ + "../media/d.ogg", /* fleece */ + "../media/d.ogg", /* was */ + "../media/e.ogg", /* white */ + "../media/d.ogg", /* as */ + "../media/c.ogg", /* snow. */ + "../media/c.ogg", /* ..... */ + "../media/c.ogg", /* ..... */ + "../media/c.ogg", /* ..... */ + }; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 1, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + /* + Set up the FMOD_CREATESOUNDEXINFO structure for the user stream with room for 2 subsounds. (our subsound double buffer) + */ + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.defaultfrequency = 44100; + exinfo.numsubsounds = 2; + exinfo.numchannels = 1; + exinfo.format = FMOD_SOUND_FORMAT_PCM16; + + /* + Create the 'parent' stream that contains the substreams. Set it to loop so that it loops between subsound 0 and 1. + */ + result = FMOD_System_CreateStream(system, 0, FMOD_LOOP_NORMAL | FMOD_OPENUSER, &exinfo, &sound); + ERRCHECK(result); + + /* + Add 2 of our streams as children of the parent. They should be the same format (ie mono/stereo and bitdepth) as the parent sound. + When subsound 0 has finished and it is playing subsound 1, we will swap subsound 0 with a new sound, and the same for when subsound 1 has finished, + causing a continual double buffered flip, which means continuous sound. + */ + result = FMOD_System_CreateStream(system, soundname[0], FMOD_DEFAULT, 0, &subsound[0]); + ERRCHECK(result); + + result = FMOD_System_CreateStream(system, soundname[1], FMOD_DEFAULT, 0, &subsound[1]); + ERRCHECK(result); + + result = FMOD_Sound_SetSubSound(sound, 0, subsound[0]); + ERRCHECK(result); + + result = FMOD_Sound_SetSubSound(sound, 1, subsound[1]); + ERRCHECK(result); + + /* + Set up the gapless sentence to contain these first 2 streams. + */ + { + int soundlist[2] = { 0, 1 }; + + result = FMOD_Sound_SetSubSoundSentence(sound, soundlist, 2); + ERRCHECK(result); + } + + subsoundid = 0; + sentenceid = 2; /* The next sound to be appeneded to the stream. */ + + printf("=============================================================================\n"); + printf("Real-time stitching example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("=============================================================================\n"); + printf("\n"); + printf("Press space to pause, Esc to quit\n"); + printf("\n"); + + printf("Inserted subsound %d / 2 with sound %d / %d\n", 0, 0, NUMSOUNDS); + printf("Inserted subsound %d / 2 with sound %d / %d\n", 1, 1, NUMSOUNDS); + + /* + Play the sound. + */ + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, FALSE, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + unsigned int currentsubsoundid; + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + int paused; + FMOD_Channel_GetPaused(channel, &paused); + FMOD_Channel_SetPaused(channel, !paused); + break; + } + } + } + + FMOD_System_Update(system); + + /* + Replace the subsound that just finished with a new subsound, to create endless seamless stitching! + + Note that this polls the currently playing subsound using the FMOD_TIMEUNIT_BUFFERED flag. + Remember streams are decoded / buffered ahead in advance! + Don't use the 'audible time' which is FMOD_TIMEUNIT_SENTENCE_SUBSOUND by itself. When streaming, sound is + processed ahead of time, and things like stream buffer / sentence manipulation (as done below) is required + to be in 'buffered time', or else there will be synchronization problems and you might end up releasing a + sub-sound that is still playing! + */ + result = FMOD_Channel_GetPosition(channel, ¤tsubsoundid, (FMOD_TIMEUNIT)(FMOD_TIMEUNIT_SENTENCE_SUBSOUND | FMOD_TIMEUNIT_BUFFERED)); + ERRCHECK(result); + + if (currentsubsoundid != subsoundid) + { + /* + Release the sound that isn't playing any more. + */ + result = FMOD_Sound_Release(subsound[subsoundid]); + ERRCHECK(result); + + /* + Replace it with a new sound in our list. + */ + result = FMOD_System_CreateStream(system, soundname[sentenceid], FMOD_DEFAULT, 0, &subsound[subsoundid]); + ERRCHECK(result); + + result = FMOD_Sound_SetSubSound(sound, subsoundid, subsound[subsoundid]); + ERRCHECK(result); + + printf("Replacing subsound %d / 2 with sound %d / %d\n", subsoundid, sentenceid, NUMSOUNDS); + + sentenceid++; + if (sentenceid >= NUMSOUNDS) + { + sentenceid = 0; + } + + subsoundid = currentsubsoundid; + } + + Sleep(50); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); /* Freeing a parent subsound also frees its children. */ + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/realtimestitching/main.cpp b/CocosDenshion/third_party/fmod/examples/realtimestitching/main.cpp new file mode 100644 index 0000000000..45115f0981 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/realtimestitching/main.cpp @@ -0,0 +1,245 @@ +/*=============================================================================================== + Real-time stitching example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how you can create your own multi-subsound stream, then in realtime replace + each the subsound as it plays them. Using a looping sentence, it will seamlessly stich between + 2 subsounds in this example, and each time it switches to a new sound, it will replace the old + one with another sound in our list. + + These sounds can go on forever as long as they are the same bitdepth (when decoded) and number + of channels (ie mono / stereo). The reason for this is the hardware channel cannot change + formats mid sentence, and using different hardware channels would mean it wouldn't be gapless. + +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +#define NUMSOUNDS 32 + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD::Sound *subsound[2]; + FMOD_CREATESOUNDEXINFO exinfo; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int key; + unsigned int subsoundid, sentenceid; + unsigned int version; + const char *soundname[NUMSOUNDS] = + { + "../media/e.ogg", /* Ma- */ + "../media/d.ogg", /* ry */ + "../media/c.ogg", /* had */ + "../media/d.ogg", /* a */ + "../media/e.ogg", /* lit- */ + "../media/e.ogg", /* tle */ + "../media/e.ogg", /* lamb, */ + "../media/e.ogg", /* ..... */ + "../media/d.ogg", /* lit- */ + "../media/d.ogg", /* tle */ + "../media/d.ogg", /* lamb, */ + "../media/d.ogg", /* ..... */ + "../media/e.ogg", /* lit- */ + "../media/e.ogg", /* tle */ + "../media/e.ogg", /* lamb, */ + "../media/e.ogg", /* ..... */ + + "../media/e.ogg", /* Ma- */ + "../media/d.ogg", /* ry */ + "../media/c.ogg", /* had */ + "../media/d.ogg", /* a */ + "../media/e.ogg", /* lit- */ + "../media/e.ogg", /* tle */ + "../media/e.ogg", /* lamb, */ + "../media/e.ogg", /* its */ + "../media/d.ogg", /* fleece */ + "../media/d.ogg", /* was */ + "../media/e.ogg", /* white */ + "../media/d.ogg", /* as */ + "../media/c.ogg", /* snow. */ + "../media/c.ogg", /* ..... */ + "../media/c.ogg", /* ..... */ + "../media/c.ogg", /* ..... */ + }; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(1, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + /* + Set up the FMOD_CREATESOUNDEXINFO structure for the user stream with room for 2 subsounds. (our subsound double buffer) + */ + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.defaultfrequency = 44100; + exinfo.numsubsounds = 2; + exinfo.numchannels = 1; + exinfo.format = FMOD_SOUND_FORMAT_PCM16; + + /* + Create the 'parent' stream that contains the substreams. Set it to loop so that it loops between subsound 0 and 1. + */ + result = system->createStream(0, FMOD_LOOP_NORMAL | FMOD_OPENUSER, &exinfo, &sound); + ERRCHECK(result); + + /* + Add 2 of our streams as children of the parent. They should be the same format (ie mono/stereo and bitdepth) as the parent sound. + When subsound 0 has finished and it is playing subsound 1, we will swap subsound 0 with a new sound, and the same for when subsound 1 has finished, + causing a continual double buffered flip, which means continuous sound. + */ + result = system->createStream(soundname[0], FMOD_DEFAULT, 0, &subsound[0]); + ERRCHECK(result); + + result = system->createStream(soundname[1], FMOD_DEFAULT, 0, &subsound[1]); + ERRCHECK(result); + + result = sound->setSubSound(0, subsound[0]); + ERRCHECK(result); + + result = sound->setSubSound(1, subsound[1]); + ERRCHECK(result); + + /* + Set up the gapless sentence to contain these first 2 streams. + */ + { + int soundlist[2] = { 0, 1 }; + + result = sound->setSubSoundSentence(soundlist, 2); + ERRCHECK(result); + } + + subsoundid = 0; + sentenceid = 2; /* The next sound to be appeneded to the stream. */ + + printf("=============================================================================\n"); + printf("Real-time stitching example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("=============================================================================\n"); + printf("\n"); + printf("Press space to pause, Esc to quit\n"); + printf("\n"); + + printf("Inserted subsound %d / 2 with sound %d / %d\n", 0, 0, NUMSOUNDS); + printf("Inserted subsound %d / 2 with sound %d / %d\n", 1, 1, NUMSOUNDS); + + /* + Play the sound. + */ + + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + unsigned int currentsubsoundid; + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + bool paused; + channel->getPaused(&paused); + channel->setPaused(!paused); + break; + } + } + } + + system->update(); + + /* + Replace the subsound that just finished with a new subsound, to create endless seamless stitching! + + Note that this polls the currently playing subsound using the FMOD_TIMEUNIT_BUFFERED flag. + Remember streams are decoded / buffered ahead in advance! + Don't use the 'audible time' which is FMOD_TIMEUNIT_SENTENCE_SUBSOUND by itself. When streaming, sound is + processed ahead of time, and things like stream buffer / sentence manipulation (as done below) is required + to be in 'buffered time', or else there will be synchronization problems and you might end up releasing a + sub-sound that is still playing! + */ + result = channel->getPosition(¤tsubsoundid, (FMOD_TIMEUNIT)(FMOD_TIMEUNIT_SENTENCE_SUBSOUND | FMOD_TIMEUNIT_BUFFERED)); + ERRCHECK(result); + + if (currentsubsoundid != subsoundid) + { + /* + Release the sound that isn't playing any more. + */ + result = subsound[subsoundid]->release(); + ERRCHECK(result); + + /* + Replace it with a new sound in our list. + */ + result = system->createStream(soundname[sentenceid], FMOD_DEFAULT, 0, &subsound[subsoundid]); + ERRCHECK(result); + + result = sound->setSubSound(subsoundid, subsound[subsoundid]); + ERRCHECK(result); + + printf("Replacing subsound %d / 2 with sound %d / %d\n", subsoundid, sentenceid, NUMSOUNDS); + + sentenceid++; + if (sentenceid >= NUMSOUNDS) + { + sentenceid = 0; + } + + subsoundid = currentsubsoundid; + } + + Sleep(50); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); /* Freeing a parent subsound also frees its children. */ + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/recording/Makefile b/CocosDenshion/third_party/fmod/examples/recording/Makefile new file mode 100644 index 0000000000..b8907706bb --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/recording/Makefile @@ -0,0 +1,11 @@ +recording_cpp: main.cpp + g++ -O3 -o recording main.cpp ../../api/lib/libfmodex.so -pthread + +recording_c: main.c + g++ -O3 -o recording main.c ../../api/lib/libfmodex.so -pthread + +run: + ./recording + +clean: + rm -f recording diff --git a/CocosDenshion/third_party/fmod/examples/recording/main.c b/CocosDenshion/third_party/fmod/examples/recording/main.c new file mode 100644 index 0000000000..aa0414f83d --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/recording/main.c @@ -0,0 +1,401 @@ +/*=============================================================================================== + Record example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to record a sound, then write it to a wav file. + It then shows how to play a sound while it is being recorded to. Because it is recording, the + sound playback has to be delayed a little bit so that the playback doesn't play part of the + buffer that is still being written to. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +#if defined(WIN32) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #define __PACKED /* dummy */ +#else + #define __PACKED __attribute__((packed)) /* gcc packed */ +#endif + +/* +[ + [DESCRIPTION] + Writes out the contents of a record buffer to a file. + + [PARAMETERS] + + [RETURN_VALUE] + void + + [REMARKS] +] +*/ +void SaveToWav(FMOD_SOUND *sound) +{ + FILE *fp; + int channels, bits; + float rate; + void *ptr1, *ptr2; + unsigned int lenbytes, len1, len2; + + if (!sound) + { + return; + } + + FMOD_Sound_GetFormat (sound, 0, 0, &channels, &bits); + FMOD_Sound_GetDefaults(sound, &rate, 0, 0, 0); + FMOD_Sound_GetLength (sound, &lenbytes, FMOD_TIMEUNIT_PCMBYTES); + + { + #if defined(WIN32) || defined(_WIN64) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #pragma pack(1) + #endif + + /* + WAV Structures + */ + typedef struct + { + signed char id[4]; + int size; + } RiffChunk; + + struct + { + RiffChunk chunk __PACKED; + unsigned short wFormatTag __PACKED; /* format type */ + unsigned short nChannels __PACKED; /* number of channels (i.e. mono, stereo...) */ + unsigned int nSamplesPerSec __PACKED; /* sample rate */ + unsigned int nAvgBytesPerSec __PACKED; /* for buffer estimation */ + unsigned short nBlockAlign __PACKED; /* block size of data */ + unsigned short wBitsPerSample __PACKED; /* number of bits per sample of mono data */ + } __PACKED FmtChunk = { {{'f','m','t',' '}, sizeof(FmtChunk) - sizeof(RiffChunk) }, 1, channels, (int)rate, (int)rate * channels * bits / 8, 1 * channels * bits / 8, bits }; + + struct + { + RiffChunk chunk; + } DataChunk = { {{'d','a','t','a'}, lenbytes } }; + + struct + { + RiffChunk chunk; + signed char rifftype[4]; + } WavHeader = { {{'R','I','F','F'}, sizeof(FmtChunk) + sizeof(RiffChunk) + lenbytes }, {'W','A','V','E'} }; + + #if defined(WIN32) || defined(_WIN64) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #pragma pack() + #endif + + fp = fopen("record.wav", "wb"); + + /* + Write out the WAV header. + */ + fwrite(&WavHeader, sizeof(WavHeader), 1, fp); + fwrite(&FmtChunk, sizeof(FmtChunk), 1, fp); + fwrite(&DataChunk, sizeof(DataChunk), 1, fp); + + /* + Lock the sound to get access to the raw data. + */ + FMOD_Sound_Lock(sound, 0, lenbytes, &ptr1, &ptr2, &len1, &len2); + + /* + Write it to disk. + */ + fwrite(ptr1, len1, 1, fp); + + /* + Unlock the sound to allow FMOD to use it again. + */ + FMOD_Sound_Unlock(sound, ptr1, ptr2, len1, len2); + + fclose(fp); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system = 0; + FMOD_SOUND *sound = 0; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + FMOD_CREATESOUNDEXINFO exinfo; + int key, driver, recorddriver, numdrivers, count; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + /* + System initialization + */ + printf("---------------------------------------------------------\n"); + printf("Select OUTPUT type\n"); + printf("---------------------------------------------------------\n"); + printf("1 : OSS - Open Sound System\n"); + printf("2 : ALSA - Advanced Linux Sound Architecture\n"); + printf("3 : ESD - Enlightenment Sound Daemon\n"); + printf("4 : PULSEAUDIO - Pulse Audio Sound Server\n"); + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + } while (key != 27 && key < '1' && key > '5'); + + switch (key) + { + case '1' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_OSS); + break; + case '2' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_ALSA); + break; + case '3' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_ESD); + break; + case '4' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_PULSEAUDIO); + break; + default : return 1; + } + ERRCHECK(result); + + /* + Enumerate playback devices + */ + + result = FMOD_System_GetNumDrivers(system, &numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a PLAYBACK driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = FMOD_System_GetDriverInfo(system, count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + if (key == 27) + { + return 0; + } + driver = key - '1'; + } while (driver < 0 || driver >= numdrivers); + + result = FMOD_System_SetDriver(system, driver); + ERRCHECK(result); + + /* + Enumerate record devices + */ + + result = FMOD_System_GetRecordNumDrivers(system, &numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a RECORD driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = FMOD_System_GetRecordDriverInfo(system, count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + recorddriver = 0; + do + { + key = getch(); + if (key == 27) + { + return 0; + } + recorddriver = key - '1'; + } while (recorddriver < 0 || recorddriver >= numdrivers); + + printf("\n"); + + result = FMOD_System_SetRecordDriver(system, recorddriver, driver); + ERRCHECK(result); + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.numchannels = 2; + exinfo.format = FMOD_SOUND_FORMAT_PCM16; + exinfo.defaultfrequency = 44100; + exinfo.length = exinfo.defaultfrequency * sizeof(short) * exinfo.numchannels * 5; + + result = FMOD_System_CreateSound(system, 0, FMOD_2D | FMOD_SOFTWARE | FMOD_OPENUSER, &exinfo, &sound); + ERRCHECK(result); + + printf("===================================================================\n"); + printf("Recording example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===================================================================\n"); + printf("\n"); + printf("Press 'r' to record a 5 second segment of audio and write it to a wav file.\n"); + printf("Press 'p' to play the 5 second segment of audio.\n"); + printf("Press 'l' to turn looping on/off.\n"); + printf("Press 's' to stop recording and playback.\n"); + printf("Press 'w' to save the 5 second segment to a wav file.\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + static FMOD_CHANNEL *channel = 0; + static int looping = 0; + int recording = 0; + int playing = 0; + unsigned int recordpos = 0; + unsigned int playpos = 0; + unsigned int length; + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'r' : + case 'R' : + { + result = FMOD_System_RecordStart(system, recorddriver, sound, looping); + ERRCHECK(result); + break; + } + case 'p' : + case 'P' : + { + if (looping) + { + FMOD_Sound_SetMode(sound, FMOD_LOOP_NORMAL); + } + else + { + FMOD_Sound_SetMode(sound, FMOD_LOOP_OFF); + } + ERRCHECK(result); + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_REUSE, sound, 0, &channel); + ERRCHECK(result); + break; + } + case 'l' : + case 'L' : + { + looping = !looping; + break; + } + case 's' : + case 'S' : + { + result = FMOD_System_RecordStop(system, recorddriver); + if (channel) + { + FMOD_Channel_Stop(channel); + channel = 0; + } + break; + } + case 'w' : + case 'W' : + { + printf("Writing to record.wav ... \r"); + + SaveToWav(sound); + Sleep(500); + + break; + } + } + } + + FMOD_Sound_GetLength(sound, &length, FMOD_TIMEUNIT_PCM); + ERRCHECK(result); + + FMOD_System_IsRecording(system, recorddriver, &recording); + ERRCHECK(result); + + FMOD_System_GetRecordPosition(system, recorddriver, &recordpos); + ERRCHECK(result); + + if (channel) + { + FMOD_Channel_IsPlaying(channel, &playing); + ERRCHECK(result); + + FMOD_Channel_GetPosition(channel, &playpos, FMOD_TIMEUNIT_PCM); + ERRCHECK(result); + } + + printf("State: %-19s. Record pos = %6d : Play pos = %6d : Loop %-3s\r", recording ? playing ? "Recording / playing" : "Recording" : playing ? "Playing" : "Idle", recordpos, playpos, looping ? "On" : "Off"); + fflush(stdout); + + FMOD_System_Update(system); + + fflush(stdout); + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/recording/main.cpp b/CocosDenshion/third_party/fmod/examples/recording/main.cpp new file mode 100644 index 0000000000..74f45edd75 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/recording/main.cpp @@ -0,0 +1,395 @@ +/*=============================================================================================== + Record example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to record a sound, then write it to a wav file. + It then shows how to play a sound while it is being recorded to. Because it is recording, the + sound playback has to be delayed a little bit so that the playback doesn't play part of the + buffer that is still being written to. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +#if defined(WIN32) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #define __PACKED /* dummy */ +#else + #define __PACKED __attribute__((packed)) /* gcc packed */ +#endif + +/* +[ + [DESCRIPTION] + Writes out the contents of a record buffer to a file. + + [PARAMETERS] + + [RETURN_VALUE] + void + + [REMARKS] +] +*/ +void SaveToWav(FMOD::Sound *sound) +{ + FILE *fp; + int channels, bits; + float rate; + void *ptr1, *ptr2; + unsigned int lenbytes, len1, len2; + + if (!sound) + { + return; + } + + sound->getFormat (0, 0, &channels, &bits); + sound->getDefaults(&rate, 0, 0, 0); + sound->getLength (&lenbytes, FMOD_TIMEUNIT_PCMBYTES); + + { + #if defined(WIN32) || defined(_WIN64) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #pragma pack(1) + #endif + + /* + WAV Structures + */ + typedef struct + { + signed char id[4]; + int size; + } RiffChunk; + + struct + { + RiffChunk chunk __PACKED; + unsigned short wFormatTag __PACKED; /* format type */ + unsigned short nChannels __PACKED; /* number of channels (i.e. mono, stereo...) */ + unsigned int nSamplesPerSec __PACKED; /* sample rate */ + unsigned int nAvgBytesPerSec __PACKED; /* for buffer estimation */ + unsigned short nBlockAlign __PACKED; /* block size of data */ + unsigned short wBitsPerSample __PACKED; /* number of bits per sample of mono data */ + } __PACKED FmtChunk = { {{'f','m','t',' '}, sizeof(FmtChunk) - sizeof(RiffChunk) }, 1, channels, (int)rate, (int)rate * channels * bits / 8, 1 * channels * bits / 8, bits }; + + struct + { + RiffChunk chunk; + } DataChunk = { {{'d','a','t','a'}, lenbytes } }; + + struct + { + RiffChunk chunk; + signed char rifftype[4]; + } WavHeader = { {{'R','I','F','F'}, sizeof(FmtChunk) + sizeof(RiffChunk) + lenbytes }, {'W','A','V','E'} }; + + #if defined(WIN32) || defined(_WIN64) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #pragma pack() + #endif + + fp = fopen("record.wav", "wb"); + + /* + Write out the WAV header. + */ + fwrite(&WavHeader, sizeof(WavHeader), 1, fp); + fwrite(&FmtChunk, sizeof(FmtChunk), 1, fp); + fwrite(&DataChunk, sizeof(DataChunk), 1, fp); + + /* + Lock the sound to get access to the raw data. + */ + sound->lock(0, lenbytes, &ptr1, &ptr2, &len1, &len2); + + /* + Write it to disk. + */ + fwrite(ptr1, len1, 1, fp); + + /* + Unlock the sound to allow FMOD to use it again. + */ + sound->unlock(ptr1, ptr2, len1, len2); + + fclose(fp); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system = 0; + FMOD::Sound *sound = 0; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + FMOD_CREATESOUNDEXINFO exinfo; + int key, driver, recorddriver, numdrivers, count; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + /* + System initialization + */ + printf("---------------------------------------------------------\n"); + printf("Select OUTPUT type\n"); + printf("---------------------------------------------------------\n"); + printf("1 : OSS - Open Sound System\n"); + printf("2 : ALSA - Advanced Linux Sound Architecture\n"); + printf("3 : ESD - Enlightenment Sound Daemon\n"); + printf("4 : PULSEAUDIO - Pulse Audio Sound Server\n"); + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + } while (key != 27 && key < '1' && key > '5'); + + switch (key) + { + case '1' : result = system->setOutput(FMOD_OUTPUTTYPE_OSS); + break; + case '2' : result = system->setOutput(FMOD_OUTPUTTYPE_ALSA); + break; + case '3' : result = system->setOutput(FMOD_OUTPUTTYPE_ESD); + break; + case '4' : result = system->setOutput(FMOD_OUTPUTTYPE_PULSEAUDIO); + break; + default : return 1; + } + ERRCHECK(result); + + /* + Enumerate playback devices + */ + + result = system->getNumDrivers(&numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a PLAYBACK driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = system->getDriverInfo(count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + if (key == 27) + { + return 0; + } + driver = key - '1'; + } while (driver < 0 || driver >= numdrivers); + + result = system->setDriver(driver); + ERRCHECK(result); + + /* + Enumerate record devices + */ + + result = system->getRecordNumDrivers(&numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a RECORD driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = system->getRecordDriverInfo(count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + recorddriver = 0; + do + { + key = getch(); + if (key == 27) + { + return 0; + } + recorddriver = key - '1'; + } while (recorddriver < 0 || recorddriver >= numdrivers); + + printf("\n"); + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.numchannels = 2; + exinfo.format = FMOD_SOUND_FORMAT_PCM16; + exinfo.defaultfrequency = 44100; + exinfo.length = exinfo.defaultfrequency * sizeof(short) * exinfo.numchannels * 5; + + result = system->createSound(0, FMOD_2D | FMOD_SOFTWARE | FMOD_OPENUSER, &exinfo, &sound); + ERRCHECK(result); + + printf("===================================================================\n"); + printf("Recording example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("===================================================================\n"); + printf("\n"); + printf("Press 'r' to record a 5 second segment of audio and write it to a wav file.\n"); + printf("Press 'p' to play the 5 second segment of audio.\n"); + printf("Press 'l' to turn looping on/off.\n"); + printf("Press 's' to stop recording and playback.\n"); + printf("Press 'w' to save the 5 second segment to a wav file.\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Main loop. + */ + do + { + static FMOD::Channel *channel = 0; + static bool looping = false; + bool recording = false; + bool playing = false; + unsigned int recordpos = 0; + unsigned int playpos = 0; + unsigned int length; + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'r' : + case 'R' : + { + result = system->recordStart(recorddriver, sound, looping); + ERRCHECK(result); + break; + } + case 'p' : + case 'P' : + { + if (looping) + { + sound->setMode(FMOD_LOOP_NORMAL); + } + else + { + sound->setMode(FMOD_LOOP_OFF); + } + ERRCHECK(result); + + result = system->playSound(FMOD_CHANNEL_REUSE, sound, false, &channel); + ERRCHECK(result); + break; + } + case 'l' : + case 'L' : + { + looping = !looping; + break; + } + case 's' : + case 'S' : + { + result = system->recordStop(recorddriver); + if (channel) + { + channel->stop(); + channel = 0; + } + break; + } + case 'w' : + case 'W' : + { + printf("Writing to record.wav ... \r"); + + SaveToWav(sound); + Sleep(500); + break; + } + } + } + + sound->getLength(&length, FMOD_TIMEUNIT_PCM); + ERRCHECK(result); + + system->isRecording(recorddriver, &recording); + ERRCHECK(result); + + system->getRecordPosition(recorddriver, &recordpos); + ERRCHECK(result); + + if (channel) + { + channel->isPlaying(&playing); + ERRCHECK(result); + + channel->getPosition(&playpos, FMOD_TIMEUNIT_PCM); + ERRCHECK(result); + } + + printf("State: %-19s. Record pos = %6d : Play pos = %6d : Loop %-3s\r", recording ? playing ? "Recording / playing" : "Recording" : playing ? "Playing" : "Idle", recordpos, playpos, looping ? "On" : "Off"); + fflush(stdout); + + system->update(); + + fflush(stdout); + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/recordtodisk/Makefile b/CocosDenshion/third_party/fmod/examples/recordtodisk/Makefile new file mode 100644 index 0000000000..7ae013409c --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/recordtodisk/Makefile @@ -0,0 +1,11 @@ +recordtodisk_cpp: main.cpp + g++ -O3 -o recordtodisk main.cpp ../../api/lib/libfmodex.so -pthread + +recordtodisk_c: main.c + g++ -O3 -o recordtodisk main.c ../../api/lib/libfmodex.so -pthread + +run: + ./recordtodisk + +clean: + rm -f recordtodisk diff --git a/CocosDenshion/third_party/fmod/examples/recordtodisk/main.c b/CocosDenshion/third_party/fmod/examples/recordtodisk/main.c new file mode 100644 index 0000000000..24671f4010 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/recordtodisk/main.c @@ -0,0 +1,326 @@ +/*=============================================================================================== + Record to disk example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to do a streaming record to disk. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +#if defined(WIN32) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #define __PACKED /* dummy */ +#else + #define __PACKED __attribute__((packed)) /* gcc packed */ +#endif + + +/* +[ + [DESCRIPTION] + Writes out the contents of a record buffer to a file. + + [PARAMETERS] + + [RETURN_VALUE] + void + + [REMARKS] +] +*/ +void WriteWavHeader(FILE *fp, FMOD_SOUND *sound, int length) +{ + int channels, bits; + float rate; + + if (!sound) + { + return; + } + + fseek(fp, 0, SEEK_SET); + + FMOD_Sound_GetFormat (sound, 0, 0, &channels, &bits); + FMOD_Sound_GetDefaults(sound, &rate, 0, 0, 0); + + { + #if defined(WIN32) || defined(_WIN64) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #pragma pack(1) + #endif + + /* + WAV Structures + */ + typedef struct + { + signed char id[4]; + int size; + } RiffChunk; + + struct + { + RiffChunk chunk __PACKED; + unsigned short wFormatTag __PACKED; /* format type */ + unsigned short nChannels __PACKED; /* number of channels (i.e. mono, stereo...) */ + unsigned int nSamplesPerSec __PACKED; /* sample rate */ + unsigned int nAvgBytesPerSec __PACKED; /* for buffer estimation */ + unsigned short nBlockAlign __PACKED; /* block size of data */ + unsigned short wBitsPerSample __PACKED; /* number of bits per sample of mono data */ + } __PACKED FmtChunk = { {{'f','m','t',' '}, sizeof(FmtChunk) - sizeof(RiffChunk) }, 1, channels, (int)rate, (int)rate * channels * bits / 8, 1 * channels * bits / 8, bits }; + + struct + { + RiffChunk chunk; + } DataChunk = { {{'d','a','t','a'}, length } }; + + struct + { + RiffChunk chunk; + signed char rifftype[4]; + } WavHeader = { {{'R','I','F','F'}, sizeof(FmtChunk) + sizeof(RiffChunk) + length }, {'W','A','V','E'} }; + + #if defined(WIN32) || defined(_WIN64) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #pragma pack() + #endif + + /* + Write out the WAV header. + */ + fwrite(&WavHeader, sizeof(WavHeader), 1, fp); + fwrite(&FmtChunk, sizeof(FmtChunk), 1, fp); + fwrite(&DataChunk, sizeof(DataChunk), 1, fp); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system = 0; + FMOD_SOUND *sound = 0; + FMOD_RESULT result; + FMOD_CREATESOUNDEXINFO exinfo; + int key, recorddriver, numdrivers, count; + unsigned int version; + FILE *fp; + unsigned int datalength = 0, soundlength; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + /* + System initialization + */ + printf("---------------------------------------------------------\n"); + printf("Select OUTPUT type\n"); + printf("---------------------------------------------------------\n"); + printf("1 : OSS - Open Sound System\n"); + printf("2 : ALSA - Advanced Linux Sound Architecture\n"); + printf("3 : ESD - Enlightenment Sound Daemon\n"); + printf("4 : PULSEAUDIO - Pulse Audio Sound Server\n"); + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + } while (key != 27 && key < '1' && key > '5'); + + switch (key) + { + case '1' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_OSS); + break; + case '2' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_ALSA); + break; + case '3' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_ESD); + break; + case '4' : result = FMOD_System_SetOutput(system, FMOD_OUTPUTTYPE_PULSEAUDIO); + break; + default : return 1; + } + ERRCHECK(result); + + /* + Enumerate record devices + */ + + result = FMOD_System_GetRecordNumDrivers(system, &numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a RECORD driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = FMOD_System_GetRecordDriverInfo(system, count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + recorddriver = 0; + do + { + key = getch(); + if (key == 27) + { + return 0; + } + recorddriver = key - '1'; + } while (recorddriver < 0 || recorddriver >= numdrivers); + + printf("\n"); + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.numchannels = 2; + exinfo.format = FMOD_SOUND_FORMAT_PCM16; + exinfo.defaultfrequency = 44100; + exinfo.length = exinfo.defaultfrequency * sizeof(short) * exinfo.numchannels * 2; + + result = FMOD_System_CreateSound(system, 0, FMOD_2D | FMOD_SOFTWARE | FMOD_OPENUSER, &exinfo, &sound); + ERRCHECK(result); + + printf("========================================================================\n"); + printf("Record to disk example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("========================================================================\n"); + printf("\n"); + printf("Press a key to start recording to record.wav\n"); + printf("\n"); + + getch(); + + result = FMOD_System_RecordStart(system, recorddriver, sound, TRUE); + ERRCHECK(result); + + printf("Press 'Esc' to quit\n"); + printf("\n"); + + fp = fopen("record.wav", "wb"); + if (!fp) + { + printf("ERROR : could not open record.wav for writing.\n"); + return 1; + } + + /* + Write out the wav header. As we don't know the length yet it will be 0. + */ + WriteWavHeader(fp, sound, datalength); + + result = FMOD_Sound_GetLength(sound, &soundlength, FMOD_TIMEUNIT_PCM); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + static unsigned int lastrecordpos = 0; + unsigned int recordpos = 0; + + if (kbhit()) + { + key = getch(); + } + + FMOD_System_GetRecordPosition(system, recorddriver, &recordpos); + ERRCHECK(result); + + if (recordpos != lastrecordpos) + { + void *ptr1, *ptr2; + int blocklength; + unsigned int len1, len2; + + blocklength = (int)recordpos - (int)lastrecordpos; + if (blocklength < 0) + { + blocklength += soundlength; + } + + /* + Lock the sound to get access to the raw data. + */ + FMOD_Sound_Lock(sound, lastrecordpos * 4, blocklength * 4, &ptr1, &ptr2, &len1, &len2); /* *4 = stereo 16bit. 1 sample = 4 bytes. */ + + /* + Write it to disk. + */ + if (ptr1 && len1) + { + datalength += fwrite(ptr1, 1, len1, fp); + } + if (ptr2 && len2) + { + datalength += fwrite(ptr2, 1, len2, fp); + } + + /* + Unlock the sound to allow FMOD to use it again. + */ + FMOD_Sound_Unlock(sound, ptr1, ptr2, len1, len2); + } + + lastrecordpos = recordpos; + + printf("Record buffer pos = %6d : Record time = %02d:%02d\r", recordpos, datalength / exinfo.defaultfrequency / 4 / 60, (datalength / exinfo.defaultfrequency / 4) % 60); + fflush(stdout); + + FMOD_System_Update(system); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Write back the wav header now that we know its length. + */ + WriteWavHeader(fp, sound, datalength); + + fclose(fp); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/recordtodisk/main.cpp b/CocosDenshion/third_party/fmod/examples/recordtodisk/main.cpp new file mode 100644 index 0000000000..fd14826c53 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/recordtodisk/main.cpp @@ -0,0 +1,326 @@ +/*=============================================================================================== + Record to disk example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to do a streaming record to disk. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +#if defined(WIN32) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #define __PACKED /* dummy */ +#else + #define __PACKED __attribute__((packed)) /* gcc packed */ +#endif + + +/* +[ + [DESCRIPTION] + Writes out the contents of a record buffer to a file. + + [PARAMETERS] + + [RETURN_VALUE] + void + + [REMARKS] +] +*/ +void WriteWavHeader(FILE *fp, FMOD::Sound *sound, int length) +{ + int channels, bits; + float rate; + + if (!sound) + { + return; + } + + fseek(fp, 0, SEEK_SET); + + sound->getFormat (0, 0, &channels, &bits); + sound->getDefaults(&rate, 0, 0, 0); + + { + #if defined(WIN32) || defined(_WIN64) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #pragma pack(1) + #endif + + /* + WAV Structures + */ + typedef struct + { + signed char id[4]; + int size; + } RiffChunk; + + struct + { + RiffChunk chunk __PACKED; + unsigned short wFormatTag __PACKED; /* format type */ + unsigned short nChannels __PACKED; /* number of channels (i.e. mono, stereo...) */ + unsigned int nSamplesPerSec __PACKED; /* sample rate */ + unsigned int nAvgBytesPerSec __PACKED; /* for buffer estimation */ + unsigned short nBlockAlign __PACKED; /* block size of data */ + unsigned short wBitsPerSample __PACKED; /* number of bits per sample of mono data */ + } __PACKED FmtChunk = { {{'f','m','t',' '}, sizeof(FmtChunk) - sizeof(RiffChunk) }, 1, channels, (int)rate, (int)rate * channels * bits / 8, 1 * channels * bits / 8, bits }; + + struct + { + RiffChunk chunk; + } DataChunk = { {{'d','a','t','a'}, length } }; + + struct + { + RiffChunk chunk; + signed char rifftype[4]; + } WavHeader = { {{'R','I','F','F'}, sizeof(FmtChunk) + sizeof(RiffChunk) + length }, {'W','A','V','E'} }; + + #if defined(WIN32) || defined(_WIN64) || defined(__WATCOMC__) || defined(_WIN32) || defined(__WIN32__) + #pragma pack() + #endif + + /* + Write out the WAV header. + */ + fwrite(&WavHeader, sizeof(WavHeader), 1, fp); + fwrite(&FmtChunk, sizeof(FmtChunk), 1, fp); + fwrite(&DataChunk, sizeof(DataChunk), 1, fp); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system = 0; + FMOD::Sound *sound = 0; + FMOD_RESULT result; + FMOD_CREATESOUNDEXINFO exinfo; + int key, recorddriver, numdrivers, count; + unsigned int version; + FILE *fp; + unsigned int datalength = 0, soundlength; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + /* + System initialization + */ + printf("---------------------------------------------------------\n"); + printf("Select OUTPUT type\n"); + printf("---------------------------------------------------------\n"); + printf("1 : OSS - Open Sound System\n"); + printf("2 : ALSA - Advanced Linux Sound Architecture\n"); + printf("3 : ESD - Enlightenment Sound Daemon\n"); + printf("4 : PULSEAUDIO - Pulse Audio Sound Server\n"); + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + do + { + key = getch(); + } while (key != 27 && key < '1' && key > '5'); + + switch (key) + { + case '1' : result = system->setOutput(FMOD_OUTPUTTYPE_OSS); + break; + case '2' : result = system->setOutput(FMOD_OUTPUTTYPE_ALSA); + break; + case '3' : result = system->setOutput(FMOD_OUTPUTTYPE_ESD); + break; + case '4' : result = system->setOutput(FMOD_OUTPUTTYPE_PULSEAUDIO); + break; + default : return 1; + } + ERRCHECK(result); + + /* + Enumerate record devices + */ + + result = system->getRecordNumDrivers(&numdrivers); + ERRCHECK(result); + + printf("---------------------------------------------------------\n"); + printf("Choose a RECORD driver\n"); + printf("---------------------------------------------------------\n"); + for (count=0; count < numdrivers; count++) + { + char name[256]; + + result = system->getRecordDriverInfo(count, name, 256, 0); + ERRCHECK(result); + + printf("%d : %s\n", count + 1, name); + } + printf("---------------------------------------------------------\n"); + printf("Press a corresponding number or ESC to quit\n"); + + recorddriver = 0; + do + { + key = getch(); + if (key == 27) + { + return 0; + } + recorddriver = key - '1'; + } while (recorddriver < 0 || recorddriver >= numdrivers); + + printf("\n"); + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + memset(&exinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + + exinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); + exinfo.numchannels = 2; + exinfo.format = FMOD_SOUND_FORMAT_PCM16; + exinfo.defaultfrequency = 44100; + exinfo.length = exinfo.defaultfrequency * sizeof(short) * exinfo.numchannels * 2; + + result = system->createSound(0, FMOD_2D | FMOD_SOFTWARE | FMOD_OPENUSER, &exinfo, &sound); + ERRCHECK(result); + + printf("========================================================================\n"); + printf("Record to disk example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("========================================================================\n"); + printf("\n"); + printf("Press a key to start recording to record.wav\n"); + printf("\n"); + + getch(); + + result = system->recordStart(recorddriver, sound, true); + ERRCHECK(result); + + printf("Press 'Esc' to quit\n"); + printf("\n"); + + fp = fopen("record.wav", "wb"); + if (!fp) + { + printf("ERROR : could not open record.wav for writing.\n"); + return 1; + } + + /* + Write out the wav header. As we don't know the length yet it will be 0. + */ + WriteWavHeader(fp, sound, datalength); + + result = sound->getLength(&soundlength, FMOD_TIMEUNIT_PCM); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + static unsigned int lastrecordpos = 0; + unsigned int recordpos = 0; + + if (kbhit()) + { + key = getch(); + } + + system->getRecordPosition(recorddriver, &recordpos); + ERRCHECK(result); + + if (recordpos != lastrecordpos) + { + void *ptr1, *ptr2; + int blocklength; + unsigned int len1, len2; + + blocklength = (int)recordpos - (int)lastrecordpos; + if (blocklength < 0) + { + blocklength += soundlength; + } + + /* + Lock the sound to get access to the raw data. + */ + sound->lock(lastrecordpos * 4, blocklength * 4, &ptr1, &ptr2, &len1, &len2); /* *4 = stereo 16bit. 1 sample = 4 bytes. */ + + /* + Write it to disk. + */ + if (ptr1 && len1) + { + datalength += fwrite(ptr1, 1, len1, fp); + } + if (ptr2 && len2) + { + datalength += fwrite(ptr2, 1, len2, fp); + } + + /* + Unlock the sound to allow FMOD to use it again. + */ + sound->unlock(ptr1, ptr2, len1, len2); + } + + lastrecordpos = recordpos; + + printf("Record buffer pos = %6d : Record time = %02d:%02d\r", recordpos, datalength / exinfo.defaultfrequency / 4 / 60, (datalength / exinfo.defaultfrequency / 4) % 60); + fflush(stdout); + + system->update(); + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Write back the wav header now that we know its length. + */ + WriteWavHeader(fp, sound, datalength); + + fclose(fp); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/ripnetstream/Makefile b/CocosDenshion/third_party/fmod/examples/ripnetstream/Makefile new file mode 100644 index 0000000000..996f54da2b --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/ripnetstream/Makefile @@ -0,0 +1,11 @@ +ripnetstream_cpp: main.cpp + g++ -O3 -o ripnetstream main.cpp ../../api/lib/libfmodex.so + +ripnetstream_c: main.c + g++ -O3 -o ripnetstream main.c ../../api/lib/libfmodex.so + +run: + ./ripnetstream + +clean: + rm -f ripnetstream diff --git a/CocosDenshion/third_party/fmod/examples/ripnetstream/main.c b/CocosDenshion/third_party/fmod/examples/ripnetstream/main.c new file mode 100644 index 0000000000..0f64c87052 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/ripnetstream/main.c @@ -0,0 +1,332 @@ +/*=============================================================================================== + RipNetStream Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to rip streaming audio from the internet to local files, using + System::attachFileSystem. + + This example also uses tags from the net stream to name the files as they are ripped. + + Some internet radio station only broadcast new tag information on fixed intervals. This + means that the rip might not be exactly in line with the filenames that are produced. + For example if a radio station only broadcast the track name every 10 seconds, and the + music changed half way inbetween this period, then the first file would contain 5 seconds + of the new song, and the second song would be missing the first 5 seconds of the track. + Silence detection might help this problem, but most radio stations do not offer silence + between tracks. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +FMOD_SOUND_TYPE gSoundType = FMOD_SOUND_TYPE_MPEG; +int gFileBufferSize = 128*1024; +char gCurrentTrackArtist[256]; +char gCurrentTrackTitle[256]; +int gUpdateFileName = FALSE; +char gOutputFileName[1024]; +FILE *gFileHandle = 0; + + +/* + File callbacks +*/ +FMOD_RESULT F_CALLBACK myopen(const char *name, int unicode, unsigned int *filesize, void **handle, void **userdata) +{ + gFileHandle = fopen(gOutputFileName, "wb"); + if (!gFileHandle) + { + return FMOD_ERR_FILE_NOTFOUND; + } + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myclose(void *handle, void *userdata) +{ + if (!gFileHandle) + { + return FMOD_ERR_INVALID_PARAM; + } + + fclose(gFileHandle); + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myread(void *handle, void *buffer, unsigned int sizebytes, unsigned int *bytesread, void *userdata) +{ + if (!gFileHandle) + { + return FMOD_ERR_INVALID_PARAM; + } + + /* + If the main thread detected a new tag name for artist / title, close the file and open a new one with the new name. + */ + if (gUpdateFileName) + { + char *ext; + + gUpdateFileName = FALSE; + + fclose(gFileHandle); + + switch (gSoundType) + { + case FMOD_SOUND_TYPE_MPEG: /* MP2/MP3 */ + { + ext = ".mp3"; + break; + } + case FMOD_SOUND_TYPE_OGGVORBIS: /* Ogg vorbis */ + { + ext = ".ogg"; + break; + } + default: + { + ext = ".unknown"; + break; + } + } + + /* + If it is the 'temp file name' then rename the file and append to it instead of starting a new file + */ + if (!strcmp(gOutputFileName, "output.mp3")) + { + sprintf(gOutputFileName, "%s%s%s%s", gCurrentTrackArtist, strlen(gCurrentTrackTitle) ? " - " : "", gCurrentTrackTitle, ext); + rename("output.mp3", gOutputFileName); + gFileHandle = fopen(gOutputFileName, "ab+"); + } + else + { + sprintf(gOutputFileName, "%s%s%s%s", gCurrentTrackArtist, strlen(gCurrentTrackTitle) ? " - " : "", gCurrentTrackTitle, ext); + gFileHandle = fopen(gOutputFileName, "wb"); + } + + if (!gFileHandle) + { + return FMOD_ERR_FILE_NOTFOUND; + } + } + + fwrite(buffer, 1, sizebytes, gFileHandle); + + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + memset(gCurrentTrackArtist, 0, 256); + memset(gCurrentTrackTitle, 0, 256); + strcpy(gOutputFileName, "output.mp3"); /* Start off like this then rename if a title tag comes along */ + + printf("======================================================================\n"); + printf("RipNetStream Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("======================================================================\n\n"); + + if (argc < 2) + { + printf("Usage: ripnetstream \n"); + return -1; + } + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 100, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + result = FMOD_System_SetStreamBufferSize(system, gFileBufferSize, FMOD_TIMEUNIT_RAWBYTES); + ERRCHECK(result); + + result = FMOD_System_AttachFileSystem(system, myopen, myclose, myread, 0); + ERRCHECK(result); + + printf("Buffering...\n\n"); + + result = FMOD_System_CreateSound(system, argv[1], FMOD_HARDWARE | FMOD_2D | FMOD_CREATESTREAM | FMOD_NONBLOCKING, 0, &sound); + ERRCHECK(result); + + /* + Main loop + */ + do + { + if (sound && !channel) + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, FALSE, &channel); + } + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + if (channel) + { + int paused; + FMOD_Channel_GetPaused(channel, &paused); + FMOD_Channel_SetPaused(channel, !paused); + } + break; + } + case 'm' : + case 'M' : + { + if (channel) + { + int mute; + FMOD_Channel_GetMute(channel, &mute); + FMOD_Channel_SetMute(channel, !mute); + } + break; + } + } + } + + FMOD_System_Update(system); + + if (channel) + { + unsigned int ms = 0; + int playing = FALSE; + int paused = FALSE; + int tagsupdated = 0; + + FMOD_Sound_GetNumTags(sound, 0, &tagsupdated); + + if (tagsupdated) + { + printf("\n"); + printf("\n"); + for (;;) + { + FMOD_TAG tag; + + if (FMOD_Sound_GetTag(sound, 0, -1, &tag) != FMOD_OK) + { + break; + } + + if (tag.datatype == FMOD_TAGDATATYPE_STRING) + { + printf("[%-11s] %s (%d bytes)\n", tag.name, tag.data, tag.datalen); + + FMOD_Sound_GetFormat(sound, &gSoundType, 0, 0, 0); + + if (!strcmp(tag.name, "ARTIST")) + { + if(strncmp(gCurrentTrackArtist, (const char *)tag.data, 256)) + { + strncpy(gCurrentTrackArtist, (const char *)tag.data, 256); + gUpdateFileName = TRUE; + } + } + if (!strcmp(tag.name, "TITLE")) + { + if (strncmp(gCurrentTrackTitle, (const char *)tag.data, 256)) + { + strncpy(gCurrentTrackTitle, (const char *)tag.data, 256); + gUpdateFileName = TRUE; + } + } + } + } + printf("\n"); + } + + result = FMOD_Channel_IsPlaying(channel, &playing); + if (result != FMOD_OK || !playing) + { + FMOD_Sound_Release(sound); + sound = 0; + channel = 0; + } + else + { + result = FMOD_Channel_GetPaused(channel, &paused); + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + printf("Time %02d:%02d:%02d : %s : Press SPACE to pause. 'm' to mute. ESC to quit.\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + fflush(stdout); + } + } + + + if (sound) + { + FMOD_OPENSTATE openstate = FMOD_OPENSTATE_READY; + + FMOD_Sound_GetOpenState(sound, &openstate, 0, 0, 0); + + if (openstate == FMOD_OPENSTATE_ERROR) + { + FMOD_Sound_Release(sound); + sound = 0; + channel = 0; + } + } + + if (!sound) + { + printf("\n"); + printf("Error occurred or stream ended. Restarting stream..\n"); + result = FMOD_System_CreateSound(system, argv[1], FMOD_HARDWARE | FMOD_2D | FMOD_CREATESTREAM | FMOD_NONBLOCKING, 0, &sound); + ERRCHECK(result); + Sleep(1000); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/ripnetstream/main.cpp b/CocosDenshion/third_party/fmod/examples/ripnetstream/main.cpp new file mode 100644 index 0000000000..64b3933ff6 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/ripnetstream/main.cpp @@ -0,0 +1,332 @@ +/*=============================================================================================== + RipNetStream Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to rip streaming audio from the internet to local files, using + System::attachFileSystem. + + This example also uses tags from the net stream to name the files as they are ripped. + + Some internet radio station only broadcast new tag information on fixed intervals. This + means that the rip might not be exactly in line with the filenames that are produced. + For example if a radio station only broadcast the track name every 10 seconds, and the + music changed half way inbetween this period, then the first file would contain 5 seconds + of the new song, and the second song would be missing the first 5 seconds of the track. + Silence detection might help this problem, but most radio stations do not offer silence + between tracks. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +FMOD_SOUND_TYPE gSoundType = FMOD_SOUND_TYPE_MPEG; +int gFileBufferSize = 128*1024; +char gCurrentTrackArtist[256]; +char gCurrentTrackTitle[256]; +bool gUpdateFileName = false; +char gOutputFileName[1024]; +FILE *gFileHandle = 0; + + +/* + File callbacks +*/ +FMOD_RESULT F_CALLBACK myopen(const char *name, int unicode, unsigned int *filesize, void **handle, void **userdata) +{ + gFileHandle = fopen(gOutputFileName, "wb"); + if (!gFileHandle) + { + return FMOD_ERR_FILE_NOTFOUND; + } + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myclose(void *handle, void *userdata) +{ + if (!gFileHandle) + { + return FMOD_ERR_INVALID_PARAM; + } + + fclose(gFileHandle); + + return FMOD_OK; +} + +FMOD_RESULT F_CALLBACK myread(void *handle, void *buffer, unsigned int sizebytes, unsigned int *bytesread, void *userdata) +{ + if (!gFileHandle) + { + return FMOD_ERR_INVALID_PARAM; + } + + /* + If the main thread detected a new tag name for artist / title, close the file and open a new one with the new name. + */ + if (gUpdateFileName) + { + char *ext; + + gUpdateFileName = false; + + fclose(gFileHandle); + + switch (gSoundType) + { + case FMOD_SOUND_TYPE_MPEG: /* MP2/MP3 */ + { + ext = ".mp3"; + break; + } + case FMOD_SOUND_TYPE_OGGVORBIS: /* Ogg vorbis */ + { + ext = ".ogg"; + break; + } + default: + { + ext = ".unknown"; + break; + } + } + + /* + If it is the 'temp file name' then rename the file and append to it instead of starting a new file + */ + if (!strcmp(gOutputFileName, "output.mp3")) + { + sprintf(gOutputFileName, "%s%s%s%s", gCurrentTrackArtist, strlen(gCurrentTrackTitle) ? " - " : "", gCurrentTrackTitle, ext); + rename("output.mp3", gOutputFileName); + gFileHandle = fopen(gOutputFileName, "ab+"); + } + else + { + sprintf(gOutputFileName, "%s%s%s%s", gCurrentTrackArtist, strlen(gCurrentTrackTitle) ? " - " : "", gCurrentTrackTitle, ext); + gFileHandle = fopen(gOutputFileName, "wb"); + } + + if (!gFileHandle) + { + return FMOD_ERR_FILE_NOTFOUND; + } + } + + fwrite(buffer, 1, sizebytes, gFileHandle); + + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int key; + unsigned int version; + + memset(gCurrentTrackArtist, 0, 256); + memset(gCurrentTrackTitle, 0, 256); + strcpy(gOutputFileName, "output.mp3"); /* Start off like this then rename if a title tag comes along */ + + printf("======================================================================\n"); + printf("RipNetStream Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("======================================================================\n\n"); + + if (argc < 2) + { + printf("Usage: ripnetstream \n"); + return -1; + } + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(100, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->setStreamBufferSize(gFileBufferSize, FMOD_TIMEUNIT_RAWBYTES); + ERRCHECK(result); + + result = system->attachFileSystem(myopen, myclose, myread, 0); + ERRCHECK(result); + + printf("Buffering...\n\n"); + + result = system->createSound(argv[1], FMOD_HARDWARE | FMOD_2D | FMOD_CREATESTREAM | FMOD_NONBLOCKING, 0, &sound); + ERRCHECK(result); + + /* + Main loop + */ + do + { + if (sound && !channel) + { + result = system->playSound(FMOD_CHANNEL_FREE, sound, false, &channel); + } + + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + if (channel) + { + bool paused; + channel->getPaused(&paused); + channel->setPaused(!paused); + } + break; + } + case 'm' : + case 'M' : + { + if (channel) + { + bool mute; + channel->getMute(&mute); + channel->setMute(!mute); + } + break; + } + } + } + + system->update(); + + if (channel) + { + unsigned int ms = 0; + bool playing = false; + bool paused = false; + int tagsupdated = 0; + + sound->getNumTags(0, &tagsupdated); + + if (tagsupdated) + { + printf("\n"); + printf("\n"); + for (;;) + { + FMOD_TAG tag; + + if (sound->getTag(0, -1, &tag) != FMOD_OK) + { + break; + } + + if (tag.datatype == FMOD_TAGDATATYPE_STRING) + { + printf("[%-11s] %s (%d bytes)\n", tag.name, tag.data, tag.datalen); + + sound->getFormat(&gSoundType, 0, 0, 0); + + if (!strcmp(tag.name, "ARTIST")) + { + if (strncmp(gCurrentTrackArtist, (const char *)tag.data, 256)) + { + strncpy(gCurrentTrackArtist, (const char *)tag.data, 256); + gUpdateFileName = true; + } + } + if (!strcmp(tag.name, "TITLE")) + { + if (strncmp(gCurrentTrackTitle, (const char *)tag.data, 256)) + { + strncpy(gCurrentTrackTitle, (const char *)tag.data, 256); + gUpdateFileName = true; + } + } + } + } + printf("\n"); + } + + result = channel->isPlaying(&playing); + if (result != FMOD_OK || !playing) + { + sound->release(); + sound = 0; + channel = 0; + } + else + { + result = channel->getPaused(&paused); + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + printf("Time %02d:%02d:%02d : %s : Press SPACE to pause. 'm' to mute. ESC to quit.\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + } + fflush(stdout); + } + + + if (sound) + { + FMOD_OPENSTATE openstate = FMOD_OPENSTATE_READY; + + sound->getOpenState(&openstate, 0, 0, 0); + + if (openstate == FMOD_OPENSTATE_ERROR) + { + sound->release(); + sound = 0; + channel = 0; + } + } + + if (!sound) + { + printf("\n"); + printf("Error occurred or stream ended. Restarting stream..\n"); + result = system->createSound(argv[1], FMOD_HARDWARE | FMOD_2D | FMOD_CREATESTREAM | FMOD_NONBLOCKING, 0, &sound); + ERRCHECK(result); + Sleep(1000); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} diff --git a/CocosDenshion/third_party/fmod/examples/submixing/Makefile b/CocosDenshion/third_party/fmod/examples/submixing/Makefile new file mode 100644 index 0000000000..62b648c89e --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/submixing/Makefile @@ -0,0 +1,11 @@ +submixing_cpp: main.cpp + g++ -O3 -o submixing main.cpp ../../api/lib/libfmodex.so -pthread + +submixing_c: main.c + g++ -O3 -o submixing main.c ../../api/lib/libfmodex.so -pthread + +run: + ./submixing + +clean: + rm -f submixing diff --git a/CocosDenshion/third_party/fmod/examples/submixing/main.c b/CocosDenshion/third_party/fmod/examples/submixing/main.c new file mode 100644 index 0000000000..163faeefca --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/submixing/main.c @@ -0,0 +1,269 @@ +/*=============================================================================================== + Submixing Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to put channels into channel groups, so that you can affect a group + of channels at a time instead of just one channel at a time. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound[5]; + FMOD_CHANNEL *channel[5]; + FMOD_CHANNELGROUP *groupA, *groupB, *masterGroup; + FMOD_DSP *dspreverb, *dspflange, *dsplowpass; + FMOD_RESULT result; + int key, count; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/drumloop.wav", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[0]); + ERRCHECK(result); + result = FMOD_System_CreateSound(system, "../media/jaguar.wav", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[1]); + ERRCHECK(result); + result = FMOD_System_CreateSound(system, "../media/c.ogg", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[2]); + ERRCHECK(result); + result = FMOD_System_CreateSound(system, "../media/d.ogg", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[3]); + ERRCHECK(result); + result = FMOD_System_CreateSound(system, "../media/e.ogg", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[4]); + ERRCHECK(result); + + result = FMOD_System_CreateChannelGroup(system, "Group A", &groupA); + ERRCHECK(result); + + result = FMOD_System_CreateChannelGroup(system, "Group B", &groupB); + ERRCHECK(result); + + result = FMOD_System_GetMasterChannelGroup(system, &masterGroup); + ERRCHECK(result); + + result = FMOD_ChannelGroup_AddGroup(masterGroup, groupA); + ERRCHECK(result); + + result = FMOD_ChannelGroup_AddGroup(masterGroup, groupB); + ERRCHECK(result); + + printf("======================================================================\n"); + printf("Sub-mixing example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("======================================================================\n"); + printf(" (drumloop.wav) \n"); + printf(" / \n"); + printf(" (groupA) \n"); + printf(" (reverb)/ \\ \n"); + printf(" / (jaguar.wav) \n"); + printf("(soundcard)--(lowpass)--(mastergroup) \n"); + printf(" \\ (c.ogg) \n"); + printf(" (flange) / \n"); + printf(" \\(groupB)--(d.ogg) \n"); + printf(" \\ \n"); + printf(" (e.ogg) \n"); + printf("Press 'A' to mute/unmute group A\n"); + printf("Press 'B' to mute/unmute group B\n"); + printf("\n"); + printf("Press 'R' to place reverb on group A\n"); + printf("Press 'F' to place flange on group B\n"); + printf("Press 'L' to place lowpass on master group (everything)\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Start all the sounds! + */ + for (count = 0; count < 5; count++) + { + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound[count], TRUE, &channel[count]); + ERRCHECK(result); + if (count < 2) + { + result = FMOD_Channel_SetChannelGroup(channel[count], groupA); + } + else + { + result = FMOD_Channel_SetChannelGroup(channel[count], groupB); + } + ERRCHECK(result); + result = FMOD_Channel_SetPaused(channel[count], FALSE); + ERRCHECK(result); + } + + /* + Create the DSP effects we want to apply to our submixes. + */ + result = FMOD_System_CreateDSPByType(system, FMOD_DSP_TYPE_SFXREVERB, &dspreverb); + ERRCHECK(result); + + result = FMOD_System_CreateDSPByType(system, FMOD_DSP_TYPE_FLANGE, &dspflange); + ERRCHECK(result); + result = FMOD_DSP_SetParameter(dspflange, FMOD_DSP_FLANGE_RATE, 1.0f); + ERRCHECK(result); + + result = FMOD_System_CreateDSPByType(system, FMOD_DSP_TYPE_LOWPASS, &dsplowpass); + ERRCHECK(result); + result = FMOD_DSP_SetParameter(dsplowpass, FMOD_DSP_LOWPASS_CUTOFF, 500.0f); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'a' : + case 'A' : + { + static int mute = TRUE; + + FMOD_ChannelGroup_SetMute(groupA, mute); + + mute = !mute; + break; + } + case 'b' : + case 'B' : + { + static int mute = TRUE; + + FMOD_ChannelGroup_SetMute(groupB, mute); + + mute = !mute; + break; + } + case 'r' : + case 'R' : + { + static int reverb = TRUE; + + if (reverb) + { + FMOD_ChannelGroup_AddDSP(groupA, dspreverb, 0); + } + else + { + FMOD_DSP_Remove(dspreverb); + } + + reverb = !reverb; + break; + } + case 'f' : + case 'F' : + { + static int flange = TRUE; + + if (flange) + { + FMOD_ChannelGroup_AddDSP(groupB, dspflange, 0); + } + else + { + FMOD_DSP_Remove(dspflange); + } + + flange = !flange; + break; + } + case 'l' : + case 'L' : + { + static int lowpass = TRUE; + + if (lowpass) + { + FMOD_ChannelGroup_AddDSP(masterGroup, dsplowpass, 0); + } + else + { + FMOD_DSP_Remove(dsplowpass); + } + + lowpass = !lowpass; + break; + } + } + } + + FMOD_System_Update(system); + + { + int channelsplaying = 0; + + FMOD_System_GetChannelsPlaying(system, &channelsplaying); + + printf("Channels Playing %2d\r", channelsplaying); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + for (count = 0; count < 5; count++) + { + result = FMOD_Sound_Release(sound[count]); + ERRCHECK(result); + } + + result = FMOD_DSP_Release(dspreverb); + ERRCHECK(result); + result = FMOD_DSP_Release(dspflange); + ERRCHECK(result); + result = FMOD_DSP_Release(dsplowpass); + ERRCHECK(result); + + result = FMOD_ChannelGroup_Release(groupA); + ERRCHECK(result); + result = FMOD_ChannelGroup_Release(groupB); + ERRCHECK(result); + + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/submixing/main.cpp b/CocosDenshion/third_party/fmod/examples/submixing/main.cpp new file mode 100644 index 0000000000..5d822fddc6 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/submixing/main.cpp @@ -0,0 +1,269 @@ +/*=============================================================================================== + Submixing Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to put channels into channel groups, so that you can affect a group + of channels at a time instead of just one channel at a time. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound[5]; + FMOD::Channel *channel[5]; + FMOD::ChannelGroup *groupA, *groupB, *masterGroup; + FMOD::DSP *dspreverb, *dspflange, *dsplowpass; + FMOD_RESULT result; + int key, count; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + result = system->createSound("../media/drumloop.wav", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[0]); + ERRCHECK(result); + result = system->createSound("../media/jaguar.wav", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[1]); + ERRCHECK(result); + result = system->createSound("../media/c.ogg", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[2]); + ERRCHECK(result); + result = system->createSound("../media/d.ogg", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[3]); + ERRCHECK(result); + result = system->createSound("../media/e.ogg", FMOD_SOFTWARE | FMOD_LOOP_NORMAL, 0, &sound[4]); + ERRCHECK(result); + + result = system->createChannelGroup("Group A", &groupA); + ERRCHECK(result); + + result = system->createChannelGroup("Group B", &groupB); + ERRCHECK(result); + + result = system->getMasterChannelGroup(&masterGroup); + ERRCHECK(result); + + result = masterGroup->addGroup(groupA); + ERRCHECK(result); + + result = masterGroup->addGroup(groupB); + ERRCHECK(result); + + printf("======================================================================\n"); + printf("Sub-mixing example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("======================================================================\n"); + printf(" (drumloop.wav) \n"); + printf(" / \n"); + printf(" (groupA) \n"); + printf(" (reverb)/ \\ \n"); + printf(" / (jaguar.wav) \n"); + printf("(soundcard)--(lowpass)--(mastergroup) \n"); + printf(" \\ (c.ogg) \n"); + printf(" (flange) / \n"); + printf(" \\(groupB)--(d.ogg) \n"); + printf(" \\ \n"); + printf(" (e.ogg) \n"); + printf("Press 'A' to mute/unmute group A\n"); + printf("Press 'B' to mute/unmute group B\n"); + printf("\n"); + printf("Press 'R' to place reverb on group A\n"); + printf("Press 'F' to place flange on group B\n"); + printf("Press 'L' to place lowpass on master group (everything)\n"); + printf("Press 'Esc' to quit\n"); + printf("\n"); + + /* + Start all the sounds! + */ + for (count = 0; count < 5; count++) + { + result = system->playSound(FMOD_CHANNEL_FREE, sound[count], true, &channel[count]); + ERRCHECK(result); + if (count < 2) + { + result = channel[count]->setChannelGroup(groupA); + } + else + { + result = channel[count]->setChannelGroup(groupB); + } + ERRCHECK(result); + result = channel[count]->setPaused(false); + ERRCHECK(result); + } + + /* + Create the DSP effects we want to apply to our submixes. + */ + result = system->createDSPByType(FMOD_DSP_TYPE_SFXREVERB, &dspreverb); + ERRCHECK(result); + + result = system->createDSPByType(FMOD_DSP_TYPE_FLANGE, &dspflange); + ERRCHECK(result); + result = dspflange->setParameter(FMOD_DSP_FLANGE_RATE, 1.0f); + ERRCHECK(result); + + result = system->createDSPByType(FMOD_DSP_TYPE_LOWPASS, &dsplowpass); + ERRCHECK(result); + result = dsplowpass->setParameter(FMOD_DSP_LOWPASS_CUTOFF, 500.0f); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case 'a' : + case 'A' : + { + static bool mute = true; + + groupA->setMute(mute); + + mute = !mute; + break; + } + case 'b' : + case 'B' : + { + static bool mute = true; + + groupB->setMute(mute); + + mute = !mute; + break; + } + case 'r' : + case 'R' : + { + static bool reverb = true; + + if (reverb) + { + groupA->addDSP(dspreverb, 0); + } + else + { + dspreverb->remove(); + } + + reverb = !reverb; + break; + } + case 'f' : + case 'F' : + { + static bool flange = true; + + if (flange) + { + groupB->addDSP(dspflange, 0); + } + else + { + dspflange->remove(); + } + + flange = !flange; + break; + } + case 'l' : + case 'L' : + { + static bool lowpass = true; + + if (lowpass) + { + masterGroup->addDSP(dsplowpass, 0); + } + else + { + dsplowpass->remove(); + } + + lowpass = !lowpass; + break; + } + } + } + + system->update(); + + { + int channelsplaying = 0; + + system->getChannelsPlaying(&channelsplaying); + + printf("Channels Playing %2d\r", channelsplaying); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + for (count = 0; count < 5; count++) + { + result = sound[count]->release(); + ERRCHECK(result); + } + + result = dspreverb->release(); + ERRCHECK(result); + result = dspflange->release(); + ERRCHECK(result); + result = dsplowpass->release(); + ERRCHECK(result); + + result = groupA->release(); + ERRCHECK(result); + result = groupB->release(); + ERRCHECK(result); + + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/useplugins/Makefile b/CocosDenshion/third_party/fmod/examples/useplugins/Makefile new file mode 100644 index 0000000000..a943087296 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/useplugins/Makefile @@ -0,0 +1,11 @@ +useplugins_cpp: main.cpp + g++ -O3 -o useplugins main.cpp ../../api/lib/libfmodex.so -pthread + +useplugins_c: main.c + g++ -O3 -o useplugins main.c ../../api/lib/libfmodex.so -pthread + +run: + ./useplugins + +clean: + rm -f useplugins diff --git a/CocosDenshion/third_party/fmod/examples/useplugins/main.c b/CocosDenshion/third_party/fmod/examples/useplugins/main.c new file mode 100644 index 0000000000..d15c6ba7cb --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/useplugins/main.c @@ -0,0 +1,249 @@ +/*=============================================================================================== + Use Plugins Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to use FMODEXP.DLYLIB and its associated plugins. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system = 0; + FMOD_SOUND *sound = 0; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + int count; + int playing = FALSE; + int key; + unsigned int version; + int numoutputplugins = 0; + unsigned int handle = 0; + + /* + Global Settings + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + /* + Set the source directory for all of the FMOD plugins. + */ + result = FMOD_System_SetPluginPath(system, "../../api/plugins"); + ERRCHECK(result); + + /* + Display plugins + */ + { + int num; + char name[256]; + + printf("Codec plugins\n"); + printf("--------------\n"); + result = FMOD_System_GetNumPlugins(system, FMOD_PLUGINTYPE_CODEC, &num); + ERRCHECK(result); + for (count = 0; count < num; count++) + { + result = FMOD_System_GetPluginHandle(system, FMOD_PLUGINTYPE_CODEC, count, &handle); + ERRCHECK(result); + + result = FMOD_System_GetPluginInfo(system, handle, 0, name, 256, 0); + ERRCHECK(result); + + printf("%2d - %-30s", count + 1, name); + + if (count % 2) + { + printf("\n"); + } + } + printf("\n"); + if (count % 2) + { + printf("\n"); + } + + printf("DSP plugins\n"); + printf("--------------\n"); + result = FMOD_System_GetNumPlugins(system, FMOD_PLUGINTYPE_DSP, &num); + ERRCHECK(result); + for (count = 0; count < num; count++) + { + result = FMOD_System_GetPluginHandle(system, FMOD_PLUGINTYPE_DSP, count, &handle); + ERRCHECK(result); + + result = FMOD_System_GetPluginInfo(system, handle, 0, name, 256, 0); + ERRCHECK(result); + + printf("%2d - %-30s", count + 1, name); + + if (count % 2) + { + printf("\n"); + } + } + printf("\n"); + if (count % 2) + { + printf("\n"); + } + + printf("Output plugins\n"); + printf("--------------\n"); + result = FMOD_System_GetNumPlugins(system, FMOD_PLUGINTYPE_OUTPUT, &num); + ERRCHECK(result); + for (count = 0; count < num; count++) + { + result = FMOD_System_GetPluginHandle(system, FMOD_PLUGINTYPE_OUTPUT, count, &handle); + ERRCHECK(result); + + result = FMOD_System_GetPluginInfo(system, handle, 0, name, 256, 0); + ERRCHECK(result); + + printf("%2d - %-30s", count + 1, name); + + if (count % 2) + { + printf("\n"); + } + } + if (count % 2) + { + printf("\n"); + } + + numoutputplugins = num; + } + + /* + System initialization + */ + printf("-----------------------------------------------------------------------\n"); // print driver names + printf("Press a corresponding number for an OUTPUT PLUGIN to use or ESC to quit\n"); + + do + { + key = getch(); + } while (!(key == 27 || (key >= '1' && key <= '0' + numoutputplugins))); + + if (key == 27) + { + return 0; + } + + result = FMOD_System_GetPluginHandle(system, FMOD_PLUGINTYPE_OUTPUT, key - '1', &handle); + ERRCHECK(result); + + result = FMOD_System_SetOutputByPlugin(system, handle); + ERRCHECK(result); + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + result = FMOD_System_CreateSound(system, "../media/wave.mp3", FMOD_SOFTWARE | FMOD_CREATESTREAM, 0, &sound); + ERRCHECK(result); + + printf("Press a key to play sound to output device.\n"); + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, 0, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + unsigned int ms = 0; + unsigned int lenms = 0; + int paused = FALSE; + int channelsplaying = 0; + FMOD_SOUND *currentsound = 0; + + FMOD_System_Update(system); + + playing = FALSE; + + result = FMOD_Channel_IsPlaying(channel, &playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPaused(channel, &paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + FMOD_Channel_GetCurrentSound(channel, ¤tsound); + if (currentsound) + { + result = FMOD_Sound_GetLength(currentsound, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + + FMOD_System_GetChannelsPlaying(system, &channelsplaying); + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : Channels Playing %2d\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped", channelsplaying); + fflush(stdout); + + Sleep(5); + + if (kbhit()) + { + key = getch(); + if (key == 27) + { + break; + } + } + + } while (playing); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/useplugins/main.cpp b/CocosDenshion/third_party/fmod/examples/useplugins/main.cpp new file mode 100644 index 0000000000..959e56fc90 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/useplugins/main.cpp @@ -0,0 +1,249 @@ +/*=============================================================================================== + Use Plugins Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how to use FMODEXP.DYLIB and its associated plugins. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system = 0; + FMOD::Sound *sound = 0; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + int count; + bool playing = false; + int key; + unsigned int version; + int numoutputplugins = 0; + unsigned int handle = 0; + + /* + Global Settings + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + getch(); + return 0; + } + + /* + Set the source directory for all of the FMOD plugins. + */ + result = system->setPluginPath("../../api/plugins"); + ERRCHECK(result); + + /* + Display plugins + */ + { + int num; + char name[256]; + + printf("Codec plugins\n"); + printf("--------------\n"); + result = system->getNumPlugins(FMOD_PLUGINTYPE_CODEC, &num); + ERRCHECK(result); + for (count = 0; count < num; count++) + { + result = system->getPluginHandle(FMOD_PLUGINTYPE_CODEC, count, &handle); + ERRCHECK(result); + + result = system->getPluginInfo(handle, 0, name, 256, 0); + ERRCHECK(result); + + printf("%2d - %-30s", count + 1, name); + + if (count % 2) + { + printf("\n"); + } + } + printf("\n"); + if (count % 2) + { + printf("\n"); + } + + printf("DSP plugins\n"); + printf("--------------\n"); + result = system->getNumPlugins(FMOD_PLUGINTYPE_DSP, &num); + ERRCHECK(result); + for (count = 0; count < num; count++) + { + result = system->getPluginHandle(FMOD_PLUGINTYPE_DSP, count, &handle); + ERRCHECK(result); + + result = system->getPluginInfo(handle, 0, name, 256, 0); + ERRCHECK(result); + + printf("%2d - %-30s", count + 1, name); + + if (count % 2) + { + printf("\n"); + } + } + printf("\n"); + if (count % 2) + { + printf("\n"); + } + + printf("Output plugins\n"); + printf("--------------\n"); + result = system->getNumPlugins(FMOD_PLUGINTYPE_OUTPUT, &num); + ERRCHECK(result); + for (count = 0; count < num; count++) + { + result = system->getPluginHandle(FMOD_PLUGINTYPE_OUTPUT, count, &handle); + ERRCHECK(result); + + result = system->getPluginInfo(handle, 0, name, 256, 0); + ERRCHECK(result); + + printf("%2d - %-30s", count + 1, name); + + if (count % 2) + { + printf("\n"); + } + } + if (count % 2) + { + printf("\n"); + } + + numoutputplugins = num; + } + + /* + System initialization + */ + printf("-----------------------------------------------------------------------\n"); // print driver names + printf("Press a corresponding number for an OUTPUT PLUGIN to use or ESC to quit\n"); + + do + { + key = getch(); + } while (!(key == 27 || (key >= '1' && key <= '0' + numoutputplugins))); + + if (key == 27) + { + return 0; + } + + result = system->getPluginHandle(FMOD_PLUGINTYPE_OUTPUT, key - '1', &handle); + ERRCHECK(result); + + result = system->setOutputByPlugin(handle); + ERRCHECK(result); + + result = system->init(32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + result = system->createSound("../media/wave.mp3", FMOD_SOFTWARE | FMOD_CREATESTREAM, 0, &sound); + ERRCHECK(result); + + printf("Press a key to play sound to output device.\n"); + + result = system->playSound(FMOD_CHANNEL_FREE, sound, 0, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + unsigned int ms = 0; + unsigned int lenms = 0; + bool paused = false; + int channelsplaying = 0; + FMOD::Sound *currentsound = 0; + + system->update(); + + playing = false; + + result = channel->isPlaying(&playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + channel->getCurrentSound(¤tsound); + if (currentsound) + { + result = currentsound->getLength(&lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + } + + system->getChannelsPlaying(&channelsplaying); + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s : Channels Playing %2d\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped", channelsplaying); + fflush(stdout); + Sleep(5); + + if (kbhit()) + { + key = getch(); + if (key == 27) + { + break; + } + } + + } while (playing); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/usercreatedsound/Makefile b/CocosDenshion/third_party/fmod/examples/usercreatedsound/Makefile new file mode 100644 index 0000000000..91ff1ee470 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/usercreatedsound/Makefile @@ -0,0 +1,11 @@ +usercreatedsound_cpp: main.cpp + g++ -O3 -o usercreatedsound main.cpp ../../api/lib/libfmodex.so + +usercreatedsound_c: main.c + g++ -O3 -o usercreatedsound main.c ../../api/lib/libfmodex.so + +run: + ./usercreatedsound + +clean: + rm -f usercreatedsound diff --git a/CocosDenshion/third_party/fmod/examples/usercreatedsound/main.c b/CocosDenshion/third_party/fmod/examples/usercreatedsound/main.c new file mode 100644 index 0000000000..ddfe5474e9 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/usercreatedsound/main.c @@ -0,0 +1,215 @@ +/*=============================================================================================== + User Created Sound Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how create a sound with data filled by the user. + It shows a user created static sample, followed by a user created stream. + The former allocates all memory needed for the sound and is played back as a static sample, + while the latter streams the data in chunks as it plays, using far less memory. +===============================================================================================*/ +#include "../../api/inc/fmod.h" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +FMOD_RESULT F_CALLBACK pcmreadcallback(FMOD_SOUND *sound, void *data, unsigned int datalen) +{ + unsigned int count; + static float t1 = 0, t2 = 0; // time + static float v1 = 0, v2 = 0; // velocity + signed short *stereo16bitbuffer = (signed short *)data; + + for (count=0; count>2; count++) // >>2 = 16bit stereo (4 bytes per sample) + { + *stereo16bitbuffer++ = (signed short)(sin(t1) * 32767.0f); // left channel + *stereo16bitbuffer++ = (signed short)(sin(t2) * 32767.0f); // right channel + + t1 += 0.01f + v1; + t2 += 0.0142f + v2; + v1 += (float)(sin(t1) * 0.002f); + v2 += (float)(sin(t2) * 0.002f); + } + + return FMOD_OK; +} + + +FMOD_RESULT F_CALLBACK pcmsetposcallback(FMOD_SOUND *sound, int subsound, unsigned int position, FMOD_TIMEUNIT postype) +{ + /* + This is useful if the user calls FMOD_Sound_SetPosition and you want to seek your data accordingly. + */ + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD_SYSTEM *system; + FMOD_SOUND *sound; + FMOD_CHANNEL *channel = 0; + FMOD_RESULT result; + FMOD_MODE mode = FMOD_2D | FMOD_OPENUSER | FMOD_LOOP_NORMAL | FMOD_HARDWARE; + int key; + int channels = 2; + FMOD_CREATESOUNDEXINFO createsoundexinfo; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD_System_Create(&system); + ERRCHECK(result); + + result = FMOD_System_GetVersion(system, &version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = FMOD_System_Init(system, 32, FMOD_INIT_NORMAL, NULL); + ERRCHECK(result); + + printf("============================================================================\n"); + printf("User Created Sound Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("============================================================================\n"); + printf("Sound played here is generated in realtime. It will either play as a stream\n"); + printf("which means it is continually filled as it is playing, or it will play as a \n"); + printf("static sample, which means it is filled once as the sound is created, then \n"); + printf("when played it will just play that short loop of data. \n"); + printf("============================================================================\n"); + printf("\n"); + + do + { + printf("Press 1 to play as a runtime decoded stream. (will carry on infinitely)\n"); + printf("Press 2 to play as a static in memory sample. (loops a short block of data)\n"); + printf("Press Esc to quit.\n\n"); + key = getch(); + + } while (key != 27 && key != '1' && key != '2'); + + if (key == 27) + { + return 0; + } + else if (key == '1') + { + mode |= FMOD_CREATESTREAM; + } + + memset(&createsoundexinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + createsoundexinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); /* required. */ + createsoundexinfo.decodebuffersize = 44100; /* Chunk size of stream update in samples. This will be the amount of data passed to the user callback. */ + createsoundexinfo.length = 44100 * channels * sizeof(signed short) * 5; /* Length of PCM data in bytes of whole song (for Sound::getLength) */ + createsoundexinfo.numchannels = channels; /* Number of channels in the sound. */ + createsoundexinfo.defaultfrequency = 44100; /* Default playback rate of sound. */ + createsoundexinfo.format = FMOD_SOUND_FORMAT_PCM16; /* Data format of sound. */ + createsoundexinfo.pcmreadcallback = pcmreadcallback; /* User callback for reading. */ + createsoundexinfo.pcmsetposcallback = pcmsetposcallback; /* User callback for seeking. */ + + result = FMOD_System_CreateSound(system, 0, mode, &createsoundexinfo, &sound); + ERRCHECK(result); + + printf("Press space to pause, Esc to quit\n"); + printf("\n"); + + /* + Play the sound. + */ + + result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, sound, 0, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + int paused; + FMOD_Channel_GetPaused(channel, &paused); + FMOD_Channel_SetPaused(channel, !paused); + break; + } + } + } + + FMOD_System_Update(system); + + if (channel) + { + unsigned int ms; + unsigned int lenms; + int playing; + int paused; + + FMOD_Channel_IsPlaying(channel, &playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPaused(channel, &paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Channel_GetPosition(channel, &ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = FMOD_Sound_GetLength(sound, &lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + fflush(stdout); + } + + Sleep(10); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = FMOD_Sound_Release(sound); + ERRCHECK(result); + result = FMOD_System_Close(system); + ERRCHECK(result); + result = FMOD_System_Release(system); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/examples/usercreatedsound/main.cpp b/CocosDenshion/third_party/fmod/examples/usercreatedsound/main.cpp new file mode 100644 index 0000000000..d0acb53a25 --- /dev/null +++ b/CocosDenshion/third_party/fmod/examples/usercreatedsound/main.cpp @@ -0,0 +1,214 @@ +/*=============================================================================================== + User Created Sound Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + This example shows how create a sound with data filled by the user. + It shows a user created static sample, followed by a user created stream. + The former allocates all memory needed for the sound and is played back as a static sample, + while the latter streams the data in chunks as it plays, using far less memory. +===============================================================================================*/ +#include "../../api/inc/fmod.hpp" +#include "../../api/inc/fmod_errors.h" +#include "../common/wincompat.h" +#include +#include + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +FMOD_RESULT F_CALLBACK pcmreadcallback(FMOD_SOUND *sound, void *data, unsigned int datalen) +{ + unsigned int count; + static float t1 = 0, t2 = 0; // time + static float v1 = 0, v2 = 0; // velocity + signed short *stereo16bitbuffer = (signed short *)data; + + for (count=0; count>2; count++) // >>2 = 16bit stereo (4 bytes per sample) + { + *stereo16bitbuffer++ = (signed short)(sin(t1) * 32767.0f); // left channel + *stereo16bitbuffer++ = (signed short)(sin(t2) * 32767.0f); // right channel + + t1 += 0.01f + v1; + t2 += 0.0142f + v2; + v1 += (float)(sin(t1) * 0.002f); + v2 += (float)(sin(t2) * 0.002f); + } + + return FMOD_OK; +} + + +FMOD_RESULT F_CALLBACK pcmsetposcallback(FMOD_SOUND *sound, int subsound, unsigned int position, FMOD_TIMEUNIT postype) +{ + /* + This is useful if the user calls Sound::setPosition and you want to seek your data accordingly. + */ + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD::System *system; + FMOD::Sound *sound; + FMOD::Channel *channel = 0; + FMOD_RESULT result; + FMOD_MODE mode = FMOD_2D | FMOD_OPENUSER | FMOD_LOOP_NORMAL | FMOD_HARDWARE; + int key; + int channels = 2; + FMOD_CREATESOUNDEXINFO createsoundexinfo; + unsigned int version; + + /* + Create a System object and initialize. + */ + result = FMOD::System_Create(&system); + ERRCHECK(result); + + result = system->getVersion(&version); + ERRCHECK(result); + + if (version < FMOD_VERSION) + { + printf("Error! You are using an old version of FMOD %08x. This program requires %08x\n", version, FMOD_VERSION); + return 0; + } + + result = system->init(32, FMOD_INIT_NORMAL, 0); + ERRCHECK(result); + + printf("============================================================================\n"); + printf("User Created Sound Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("============================================================================\n"); + printf("Sound played here is generated in realtime. It will either play as a stream\n"); + printf("which means it is continually filled as it is playing, or it will play as a \n"); + printf("static sample, which means it is filled once as the sound is created, then \n"); + printf("when played it will just play that short loop of data. \n"); + printf("============================================================================\n"); + printf("\n"); + + do + { + printf("Press 1 to play as a runtime decoded stream. (will carry on infinitely)\n"); + printf("Press 2 to play as a static in memory sample. (loops a short block of data)\n"); + printf("Press Esc to quit.\n\n"); + key = getch(); + + } while (key != 27 && key != '1' && key != '2'); + + if (key == 27) + { + return 0; + } + else if (key == '1') + { + mode |= FMOD_CREATESTREAM; + } + + memset(&createsoundexinfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); + createsoundexinfo.cbsize = sizeof(FMOD_CREATESOUNDEXINFO); /* required. */ + createsoundexinfo.decodebuffersize = 44100; /* Chunk size of stream update in samples. This will be the amount of data passed to the user callback. */ + createsoundexinfo.length = 44100 * channels * sizeof(signed short) * 5; /* Length of PCM data in bytes of whole song (for Sound::getLength) */ + createsoundexinfo.numchannels = channels; /* Number of channels in the sound. */ + createsoundexinfo.defaultfrequency = 44100; /* Default playback rate of sound. */ + createsoundexinfo.format = FMOD_SOUND_FORMAT_PCM16; /* Data format of sound. */ + createsoundexinfo.pcmreadcallback = pcmreadcallback; /* User callback for reading. */ + createsoundexinfo.pcmsetposcallback = pcmsetposcallback; /* User callback for seeking. */ + + result = system->createSound(0, mode, &createsoundexinfo, &sound); + ERRCHECK(result); + + printf("Press space to pause, Esc to quit\n"); + printf("\n"); + + /* + Play the sound. + */ + + result = system->playSound(FMOD_CHANNEL_FREE, sound, 0, &channel); + ERRCHECK(result); + + /* + Main loop. + */ + do + { + if (kbhit()) + { + key = getch(); + + switch (key) + { + case ' ' : + { + bool paused; + channel->getPaused(&paused); + channel->setPaused(!paused); + break; + } + } + } + + system->update(); + + if (channel) + { + unsigned int ms; + unsigned int lenms; + bool playing; + bool paused; + + channel->isPlaying(&playing); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPaused(&paused); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = channel->getPosition(&ms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + result = sound->getLength(&lenms, FMOD_TIMEUNIT_MS); + if ((result != FMOD_OK) && (result != FMOD_ERR_INVALID_HANDLE) && (result != FMOD_ERR_CHANNEL_STOLEN)) + { + ERRCHECK(result); + } + + printf("Time %02d:%02d:%02d/%02d:%02d:%02d : %s\r", ms / 1000 / 60, ms / 1000 % 60, ms / 10 % 100, lenms / 1000 / 60, lenms / 1000 % 60, lenms / 10 % 100, paused ? "Paused " : playing ? "Playing" : "Stopped"); + fflush(stdout); + } + + Sleep(20); + + } while (key != 27); + + printf("\n"); + + /* + Shut down + */ + result = sound->release(); + ERRCHECK(result); + result = system->close(); + ERRCHECK(result); + result = system->release(); + ERRCHECK(result); + + return 0; +} + + diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/README.TXT b/CocosDenshion/third_party/fmod/fmoddesignerapi/README.TXT new file mode 100644 index 0000000000..f6dacfe968 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/README.TXT @@ -0,0 +1,57 @@ +---------------------------------------------------------------------------- + FMOD Designer 4.36.01 + Copyright (c) Firelight Technologies Pty, Ltd, + 2004-2011 +---------------------------------------------------------------------------- + + http://www.fmod.org + + +---------------------------------------------------------------------------- +Engine sounds by Greg Hill - Soundwave Concepts. +---------------------------------------------------------------------------- + + +---------------------------------------------------------------------------- +Platform specific issues. +---------------------------------------------------------------------------- + +Report all bugs to support@fmod.org. + + +---------------------------------------------------------------------------- +FMOD End User License Agreement +---------------------------------------------------------------------------- + +FMOD's names, sources, documentation and binaries contained within the +distributed archive are copyright © Firelight Technologies, Pty, Ltd. +1994-2011. + +The contents of the FMOD distribution archive may not be redistributed, +reproduced, modified, transmitted, broadcast, published or adapted in any +way, shape or form, without the prior written consent of the owner, +Firelight Technologies, be it by tangible or non tangible media. + +The fmod.dll file may be redistributed without the authors prior permission, +and must remain unmodified. The use of dll 'static linking' tools that aim +to hide the fmod library are forbidden. + +FMOD may not be used in a commercial product, or product that directly or +indirectly receives income with the aid of the FMOD sound library, without +a commercial license from Firelight Technologies. Releasing a product +without a commercial license in this instance is a breach of the FMOD EULA +and parties who violate this license will be prosecuted under the full +extent of the law. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event.h b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event.h new file mode 100644 index 0000000000..06125021d8 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event.h @@ -0,0 +1,1244 @@ +/*$ preserve start $*/ + +/* ============================================================================================ */ +/* FMOD Ex - Main C/C++ event/data driven system header file. */ +/* Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */ +/* */ +/* This header is the base header for all other FMOD EventSystem headers. If you are */ +/* programming in C use this exclusively, or if you are programming C++ use this in */ +/* conjunction with FMOD_EVENT.HPP */ +/* ============================================================================================ */ + +#ifndef __FMOD_EVENT_H__ +#define __FMOD_EVENT_H__ + +#ifndef _FMOD_H +#include "fmod.h" +#endif + +/* + FMOD EventSystem version number. Check this against FMOD::EventSystem::getVersion. + 0xaaaabbcc -> aaaa = major version number. bb = minor version number. cc = development version number. +*/ + +#define FMOD_EVENT_VERSION 0x00043601 + +/* + FMOD event types +*/ + +typedef struct FMOD_EVENTSYSTEM FMOD_EVENTSYSTEM; +typedef struct FMOD_EVENTPROJECT FMOD_EVENTPROJECT; +typedef struct FMOD_EVENTGROUP FMOD_EVENTGROUP; +typedef struct FMOD_EVENTCATEGORY FMOD_EVENTCATEGORY; +typedef struct FMOD_EVENT FMOD_EVENT; +typedef struct FMOD_EVENTPARAMETER FMOD_EVENTPARAMETER; +typedef struct FMOD_EVENTREVERB FMOD_EVENTREVERB; +typedef struct FMOD_EVENTQUEUE FMOD_EVENTQUEUE; +typedef struct FMOD_EVENTQUEUEENTRY FMOD_EVENTQUEUEENTRY; +typedef struct FMOD_MUSICPROMPT FMOD_MUSICPROMPT; +typedef struct FMOD_MUSICSYSTEM FMOD_MUSICSYSTEM; +typedef unsigned int FMOD_EVENT_INITFLAGS; +typedef unsigned int FMOD_EVENT_MODE; +typedef unsigned int FMOD_EVENT_STATE; +typedef unsigned int FMOD_MUSIC_ID; +typedef FMOD_MUSIC_ID FMOD_MUSIC_CUE_ID; +typedef FMOD_MUSIC_ID FMOD_MUSIC_PARAM_ID; + + +/* +[DEFINE] +[ + [NAME] + FMOD_EVENT_INITFLAGS + + [DESCRIPTION] + Initialization flags. Use them with EventSystem::init in the eventflags parameter to change various behaviour. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + EventSystem::init + EventSystem::getEventByGUID + FMOD_EVENT_SOUNDDEFINFO + FMOD_EVENT_CALLBACKTYPE +] +*/ +#define FMOD_EVENT_INIT_NORMAL 0x00000000 /* All platforms - Initialize normally */ +#define FMOD_EVENT_INIT_USER_ASSETMANAGER 0x00000001 /* All platforms - All wave data loading/freeing will be referred back to the programmer through the FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE/FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_RELEASE callback */ +#define FMOD_EVENT_INIT_FAIL_ON_MAXSTREAMS 0x00000002 /* All platforms - Events will fail if "Max streams" was reached when playing streamed banks, instead of going virtual. */ +#define FMOD_EVENT_INIT_DONTUSENAMES 0x00000004 /* All platforms - All event/eventgroup/eventparameter/eventcategory/eventreverb names will be discarded on load. Use getXXXByIndex to access them. This may potentially save a lot of memory at runtime. */ +#define FMOD_EVENT_INIT_UPPERCASE_FILENAMES 0x00000008 /* All platforms - All FSB filenames will be translated to upper case before being used. */ +#define FMOD_EVENT_INIT_LOWERCASE_FILENAMES 0x00000080 /* All platforms - All FSB filenames will be translated to lower case before being used. */ +#define FMOD_EVENT_INIT_SEARCH_PLUGINS 0x00000010 /* All platforms - Search the current directory for dsp/codec plugins on EventSystem::init. */ +#define FMOD_EVENT_INIT_USE_GUIDS 0x00000020 /* All platforms - Build an event GUID table when loading FEVs so that EventSystem::getEventByGUID can be used. */ +#define FMOD_EVENT_INIT_DETAILED_SOUNDDEF_INFO 0x00000040 /* All platforms - Pass an FMOD_EVENT_SOUNDDEFINFO struct to FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_SELECTINDEX callbacks rather than just the sound definition name (uses more memory for sound definition waveform names). */ +#define FMOD_EVENT_INIT_RESETPARAMSTOMINIMUM 0x00000100 /* All platforms - Reset parameters to minimum value when getting an event instance instead of using the INFO_ONLY event's values. */ +#define FMOD_EVENT_INIT_ELEVATION_AFFECTS_LISTENER_ANGLE 0x00000200 /* All platforms - The listener angle event parameters will be affected by elevation, and not just horizontal components. */ +#define FMOD_EVENT_INIT_DONTUSELOWMEM 0x00000400 /* All platforms - Instruct the event system to NOT use FMOD_LOWMEM when it opens .FSB files. Specify this flag if you need access to the names of individual subsounds in loaded .FSB files. Specifying this flag will make the event system use more memory. */ + +/* [DEFINE_END] */ + + +/* +[DEFINE] +[ + [NAME] + FMOD_EVENT_MODE + + [DESCRIPTION] + Event data loading bitfields. Bitwise OR them together for controlling how event data is loaded. + + [REMARKS] + FMOD_EVENT_NONBLOCKING_THREAD0-4. This flag extends FMOD_EVENT_NONBLOCKING to allow multiple asynchronous loads to happen on different threads at the same time.
+ FMOD_EVENT_NONBLOCKING by itself will always execute on thread 0 by default. Up to 5 simultaneous threads for loading at once are supported.
+ Only 1 flag should be specified at a time. If multiple flags are specified an FMOD_ERR_INVALID_PARAM error will be returned.
+ FMOD_EVENT_NONBLOCKING_THREAD0-4 can be specified without the FMOD_EVENT_NONBLOCKING flag being used (it automatically includes it) + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + EventGroup::loadEventData + EventGroup::getEvent + EventGroup::getEventByIndex +] +*/ +#define FMOD_EVENT_DEFAULT 0x00000000 /* FMOD_EVENT_DEFAULT specifies default loading behaviour i.e. event data for the whole group is NOT cached and the function that initiated the loading process will block until loading is complete. */ +#define FMOD_EVENT_NONBLOCKING 0x00000001 /* For loading event data asynchronously. FMOD will use a thread to load the data. Use Event::getState to find out when loading is complete. */ +#define FMOD_EVENT_ERROR_ON_DISKACCESS 0x00000002 /* For EventGroup::getEvent / EventGroup::getEventByIndex. If EventGroup::loadEventData has accidently been forgotten this flag will return an FMOD_ERR_FILE_UNWANTED if the getEvent function tries to load data. */ +#define FMOD_EVENT_INFOONLY 0x00000004 /* For EventGroup::getEvent / EventGroup::getEventByIndex. Don't allocate instances or load data, just get a handle to allow user to get information from the event. */ +#define FMOD_EVENT_USERDSP 0x00000008 /* For EventGroup::getEvent / EventGroup::getEventByIndex. Tells FMOD that you plan to add your own DSP effects to this event's ChannelGroup at runtime. Omitting this flag will yield a small memory gain. */ + +#define FMOD_EVENT_NONBLOCKING_THREAD0 (FMOD_EVENT_NONBLOCKING) /* FMOD_EVENT_NONBLOCKING, execute on thread 0. See remarks. (default) */ +#define FMOD_EVENT_NONBLOCKING_THREAD1 (FMOD_EVENT_NONBLOCKING | 0x00010000) /* FMOD_EVENT_NONBLOCKING, execute on thread 1. See remarks. */ +#define FMOD_EVENT_NONBLOCKING_THREAD2 (FMOD_EVENT_NONBLOCKING | 0x00020000) /* FMOD_EVENT_NONBLOCKING, execute on thread 2. See remarks. */ +#define FMOD_EVENT_NONBLOCKING_THREAD3 (FMOD_EVENT_NONBLOCKING | 0x00040000) /* FMOD_EVENT_NONBLOCKING, execute on thread 3. See remarks. */ +#define FMOD_EVENT_NONBLOCKING_THREAD4 (FMOD_EVENT_NONBLOCKING | 0x00080000) /* FMOD_EVENT_NONBLOCKING, execute on thread 4. See remarks. */ +/* [DEFINE_END] */ + + +/* +[DEFINE] +[ + [NAME] + FMOD_EVENT_STATE + + [DESCRIPTION] + These values describe what state an event is in. + + [REMARKS] + The flags below can be combined to set multiple states at once. Use bitwise AND operations to test for these. + An example of a combined flag set would be FMOD_EVENT_STATE_READY | FMOD_EVENT_STATE_PLAYING. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + Event::getState + FMOD_EVENT_MODE +] +*/ +#define FMOD_EVENT_STATE_READY 0x00000001 /* Event is ready to play. */ +#define FMOD_EVENT_STATE_LOADING 0x00000002 /* Loading in progress. */ +#define FMOD_EVENT_STATE_ERROR 0x00000004 /* Failed to open - file not found, out of memory etc. See return value of Event::getState for what happened. */ +#define FMOD_EVENT_STATE_PLAYING 0x00000008 /* Event has been started. This will still be true even if there are no sounds active. Event::stop must be called or the event must stop itself using a 'one shot and stop event' parameter mode. */ +#define FMOD_EVENT_STATE_CHANNELSACTIVE 0x00000010 /* Event has active voices. Use this if you want to detect if sounds are playing in the event or not. */ +#define FMOD_EVENT_STATE_INFOONLY 0x00000020 /* Event was loaded with the FMOD_EVENT_INFOONLY flag. */ +#define FMOD_EVENT_STATE_STARVING 0x00000040 /* Event is streaming but not being fed data in time, so may be stuttering. */ +/* [DEFINE_END] */ + + +/* +[ENUM] +[ + [DESCRIPTION] + Property indices for Event::getPropertyByIndex. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + Event::getPropertyByIndex +] +*/ +typedef enum +{ + FMOD_EVENTPROPERTY_NAME = 0, /* Type : char * - (Readonly) Name of event. */ + FMOD_EVENTPROPERTY_VOLUME, /* Type : float - Relative volume of event. */ + FMOD_EVENTPROPERTY_VOLUMERANDOMIZATION, /* Type : float - Random deviation in volume of event. */ + FMOD_EVENTPROPERTY_PITCH, /* Type : float - Relative pitch of event in raw underlying units. */ + FMOD_EVENTPROPERTY_PITCH_OCTAVES, /* Type : float - Relative pitch of event in octaves. */ + FMOD_EVENTPROPERTY_PITCH_SEMITONES, /* Type : float - Relative pitch of event in semitones. */ + FMOD_EVENTPROPERTY_PITCH_TONES, /* Type : float - Relative pitch of event in tones. */ + FMOD_EVENTPROPERTY_PITCHRANDOMIZATION, /* Type : float - Random deviation in pitch of event in raw underlying units. */ + FMOD_EVENTPROPERTY_PITCHRANDOMIZATION_OCTAVES, /* Type : float - Random deviation in pitch of event in octaves. */ + FMOD_EVENTPROPERTY_PITCHRANDOMIZATION_SEMITONES, /* Type : float - Random deviation in pitch of event in semitones. */ + FMOD_EVENTPROPERTY_PITCHRANDOMIZATION_TONES, /* Type : float - Random deviation in pitch of event in tones. */ + FMOD_EVENTPROPERTY_PRIORITY, /* Type : int - Playback priority of event. */ + FMOD_EVENTPROPERTY_MAX_PLAYBACKS, /* Type : int - (Readonly) Maximum simultaneous playbacks of event. */ + FMOD_EVENTPROPERTY_MAX_PLAYBACKS_BEHAVIOR, /* Type : int - 1 = steal oldest, 2 = steal newest, 3 = steal quietest, 4 = just fail, 5 = just fail if quietest. */ + FMOD_EVENTPROPERTY_MODE, /* Type : FMOD_MODE - Either FMOD_3D or FMOD_2D. */ + FMOD_EVENTPROPERTY_3D_IGNORE_GEOMETRY, /* Type : int - Ignore geometry for that event. 1 = yes, 0 = no. */ + FMOD_EVENTPROPERTY_3D_ROLLOFF, /* Type : FMOD_MODE - Either FMOD_3D_INVERSEROLLOFF, FMOD_3D_LINEARROLLOFF, FMOD_3D_LINEARSQUAREROLLOFF, or none for custom rolloff. */ + FMOD_EVENTPROPERTY_3D_MINDISTANCE, /* Type : float - Minimum 3d distance of event. */ + FMOD_EVENTPROPERTY_3D_MAXDISTANCE, /* Type : float - Maximum 3d distance of event. Means different things depending on EVENTPROPERTY_3D_ROLLOFF. If event has custom rolloff, setting FMOD_EVENTPROPERTY_3D_MAXDISTANCE will scale the range of all distance parameters in this event e.g. set this property to 2.0 to double the range of all distance parameters, set it to 0.5 to halve the range of all distance parameters. */ + FMOD_EVENTPROPERTY_3D_POSITION, /* Type : FMOD_MODE - Either FMOD_3D_HEADRELATIVE or FMOD_3D_WORLDRELATIVE. */ + FMOD_EVENTPROPERTY_3D_CONEINSIDEANGLE, /* Type : float - Event cone inside angle. 0 to 360. */ + FMOD_EVENTPROPERTY_3D_CONEOUTSIDEANGLE, /* Type : float - Event cone outside angle. 0 to 360. */ + FMOD_EVENTPROPERTY_3D_CONEOUTSIDEVOLUME, /* Type : float - Event cone outside volume. 0 to 1.0. */ + FMOD_EVENTPROPERTY_3D_DOPPLERSCALE, /* Type : float - Doppler scale where 0 = no doppler, 1.0 = normal doppler, 2.0 = double doppler etc. */ + FMOD_EVENTPROPERTY_3D_SPEAKERSPREAD, /* Type : float - Angle of spread for stereo/mutlichannel source. 0 to 360. */ + FMOD_EVENTPROPERTY_3D_PANLEVEL, /* Type : float - 0 = sound pans according to speaker levels, 1 = sound pans according to 3D position. */ + FMOD_EVENTPROPERTY_SPEAKER_L, /* Type : float - 2D event volume for front left speaker. */ + FMOD_EVENTPROPERTY_SPEAKER_C, /* Type : float - 2D event volume for front center speaker. */ + FMOD_EVENTPROPERTY_SPEAKER_R, /* Type : float - 2D event volume for front right speaker. */ + FMOD_EVENTPROPERTY_SPEAKER_LS, /* Type : float - 2D event volume for side left speaker. */ + FMOD_EVENTPROPERTY_SPEAKER_RS, /* Type : float - 2D event volume for side right speaker. */ + FMOD_EVENTPROPERTY_SPEAKER_LR, /* Type : float - 2D event volume for back left speaker. */ + FMOD_EVENTPROPERTY_SPEAKER_RR, /* Type : float - 2D event volume for back right speaker. */ + FMOD_EVENTPROPERTY_SPEAKER_LFE, /* Type : float - 2D event volume for low frequency speaker. */ + FMOD_EVENTPROPERTY_REVERBWETLEVEL, /* Type : float - Reverb gain for this event where 0 = full reverb, -60 = no reverb. */ + FMOD_EVENTPROPERTY_ONESHOT, /* Type : int - Oneshot event - stops when no channels playing. 1 = yes, it's a oneshot 0 = no. it's not a oneshot. */ + FMOD_EVENTPROPERTY_FADEIN, /* Type : int - Time in milliseconds over which to fade this event in when programmer starts it. 0 = no fade in. Cannot be set while the event is playing. */ + FMOD_EVENTPROPERTY_FADEOUT, /* Type : int - Time in milliseconds over which to fade this event out when programmer stops it. 0 = no fade out. Cannot be set while the event is playing. */ + FMOD_EVENTPROPERTY_REVERBDRYLEVEL, /* Type : float - Dry reverb gain for this event where 0 = full dry, -60 = no dry. */ + FMOD_EVENTPROPERTY_TIMEOFFSET, /* Type : float - Time offset of sound start in seconds. */ + FMOD_EVENTPROPERTY_SPAWNINTENSITY, /* Type : float - Multiplier for spawn frequency of all sounds in this event. */ + FMOD_EVENTPROPERTY_SPAWNINTENSITY_RANDOMIZATION, /* Type : float - Random deviation in spawn intensity of event. */ + FMOD_EVENTPROPERTY_WII_CONTROLLERSPEAKERS, /* Type : int - Wii only. Use FMOD_WII_CONTROLLER flags defined in fmodwii.h to set which Wii Controller Speaker(s) to play this event on. */ + FMOD_EVENTPROPERTY_3D_POSRANDOMIZATION_MIN, /* Type : unsigned int - Minimum radius of random deviation in the 3D position of event. */ + FMOD_EVENTPROPERTY_3D_POSRANDOMIZATION_MAX, /* Type : unsigned int - Maximum radius of random deviation in the 3D position of event. */ + FMOD_EVENTPROPERTY_EVENTTYPE, /* Type : int - (Readonly) 0 = simple event, 1 = complex event */ + FMOD_EVENTPROPERTY_STEAL_PRIORITY, /* Type : int - 0 to 10000. How important this event is in relation to other events in the project. This event will never steal an event with a higher steal priority than this. */ + FMOD_EVENTPROPERTY_EFFECTS_AFFECT_REVERB, /* Type : int - 0 = default (no), 1 = yes. Alternate routing for reverb path of an event so it goes from the layer dsp unit instead of the channel. */ + FMOD_EVENTPROPERTY_WILL_TERMINATE, /* Type : int - (Readonly) 0 = no, 1 = yes, 2 = unknown (current event state is too complex). Whether this event will terminate (stop playing) by itself. If called on an event instance with this_instance = true, the prediction is based on the current state of that instance. This means parameter values, keyoffs etc. come into play. */ + FMOD_EVENTPROPERTY_DSPCLOCKSTART_HI, /* Type : unsigned int - High 32 bits of a 64 bit DSP clock value, for a start time for any sound in this event. */ + FMOD_EVENTPROPERTY_DSPCLOCKSTART_LO, /* Type : unsigned int - Low 32 bits of a 64 bit DSP clock value, for a start time for any sound in this event. */ + FMOD_EVENTPROPERTY_3D_AUTO_DISTANCE_FILTERING, /* Type : int - 0 = default (no), 1 = yes. Whether to automaically apply the distance effect to sounds in this event. */ + FMOD_EVENTPROPERTY_3D_AUTO_DISTANCE_CENTRE_FREQ, /* Type : float - 10 to 22050. The centre frequency for the distance effect.*/ + FMOD_EVENTPROPERTY_USER_BASE /* User created events start from here onwards. */ +} FMOD_EVENT_PROPERTY; + + +/* +[ENUM] +[ + [DESCRIPTION] + Event property types. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + Event::getPropertyByIndex + Event::getPropertyInfo +] +*/ +typedef enum +{ + FMOD_EVENTPROPERTY_TYPE_INT = 0, /* Property is an int, unsigned int or other type of equivalent sizee e.g. FMOD_MODE. */ + FMOD_EVENTPROPERTY_TYPE_FLOAT, /* Property is a float. */ + FMOD_EVENTPROPERTY_TYPE_STRING /* Property is a char *. */ +} FMOD_EVENTPROPERTY_TYPE; + + +/* +[ENUM] +[ + [DESCRIPTION] + Pitch units for Event::setPitch and EventCategory::setPitch. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + Event::setPitch + EventCategory::setPitch +] +*/ +typedef enum +{ + FMOD_EVENT_PITCHUNITS_RAW = 0, /* Pitch is specified in raw underlying units. */ + FMOD_EVENT_PITCHUNITS_OCTAVES, /* Pitch is specified in units of octaves. */ + FMOD_EVENT_PITCHUNITS_SEMITONES, /* Pitch is specified in units of semitones. */ + FMOD_EVENT_PITCHUNITS_TONES /* Pitch is specified in units of tones. */ +} FMOD_EVENT_PITCHUNITS; + + +/* +[ENUM] +[ + [DESCRIPTION] + Flags to pass to EventGroup::loadEventData to determine what to load at the time of calling. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + EventGroup::loadEventData +] +*/ +typedef enum +{ + FMOD_EVENT_RESOURCE_STREAMS_AND_SAMPLES, /* Open all streams and load all banks into memory, under this group (recursive) */ + FMOD_EVENT_RESOURCE_STREAMS, /* Open all streams under this group (recursive). No samples are loaded. */ + FMOD_EVENT_RESOURCE_SAMPLES /* Load all banks into memory, under this group (recursive). No streams are opened. */ +} FMOD_EVENT_RESOURCE; + + +/* +[ENUM] +[ + [DESCRIPTION] + These callback types are used with FMOD_EVENT_CALLBACK. + + [REMARKS] + Note! Currently the user must call EventSystem::update for these callbacks to trigger!

+ + When the event callback is called, 'param1' and 'param2' mean different things depending on the type of callback. Here is an explanation of what these parameters + mean in what context :

 

+ + FMOD_EVENT_CALLBACKTYPE_SYNCPOINT +

+ param1 = (char *) name of sync point
+ param2 = (unsigned int) PCM offset of sync point.
+

+ An FMOD_EVENT_CALLBACKTYPE_SYNCPOINT callback is generated from 'markers' embedded in .wav files. + These can be created by placing 'markers' in the original source wavs using a tool such as Sound Forge or Cooledit. + The wavs are then compiled into .FSB files when compiling the audio data using the FMOD designer tool. + Callbacks will be automatically generated at the correct place in the timeline when these markers are encountered + which makes it useful for synchronization, lip syncing etc. +

 

+ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_START +

+ param1 = (char *) name of sound definition being started
+ param2 = (int) index of wave being started inside sound definition (ie for multi wave sound definitions)
+

+ An FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_START callback is generated each time a sound definition is played in an event. + This happens every time a sound definition starts due to the event parameter entering the region specified in the + layer created by the sound designer. + This also happens when sounds are randomly respawned using the random respawn feature in the sound definition + properties in FMOD designer. +

 

+ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_END +

+ param1 = (char *) name of sound definition being stopped
+ param2 = (int) index of wave being stopped inside sound definition (ie for multi wave sound definitions)
+

+ An FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_END callback is generated when a one-shot sound definition inside an event ends, + or when a looping sound definition stops due to the event parameter leaving the region specified in the layer created + by the sound designer. +

 

+ + FMOD_EVENT_CALLBACKTYPE_STOLEN +

+ param1 = 0
+ param2 = 0
+

+ An FMOD_EVENT_CALLBACKTYPE_STOLEN callback is generated when a getEventXXX call needs to steal an event instance that is in use because + the event's "Max playbacks" has been exceeded. This callback is called before the event is stolen and before the event + is stopped (if it is playing). An FMOD_EVENT_CALLBACKTYPE_EVENTFINISHED callback will be generated when the stolen event is stopped i.e. after + the FMOD_EVENT_CALLBACKTYPE_STOLEN. If the callback function returns FMOD_ERR_EVENT_FAILED, the event will not + be stolen, and the returned value will be passed back as the return value of the getEventXXX call that triggered the steal attempt. +

 

+ + FMOD_EVENT_CALLBACKTYPE_EVENTFINISHED +

+ param1 = 0
+ param2 = 0
+

+ An FMOD_EVENT_CALLBACKTYPE_EVENTFINISHED callback is generated whenever an event is stopped for any reason including when the user + calls Event::stop(). +

 

+ + FMOD_EVENT_CALLBACKTYPE_NET_MODIFIED +

+ param1 = (FMOD_EVENT_PROPERTY) which property was modified
+ param2 = (float) the new property value
+

+ An FMOD_EVENT_CALLBACKTYPE_NET_MODIFIED callback is generated when someone has connected to your running application with + FMOD Designer and changed a property within this event, for example volume or pitch. +

 

+ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE +

+ param1 = (char *) name of sound definition
+ param2 [in] = (int *) pointer to index of sound definition entry
+ param2 [out] = (FMOD::Sound **) pointer to a valid lower level API FMOD Sound handle
+

+ An FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE callback is generated when a "programmer" sound needs to be loaded. +

 

+ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_RELEASE +

+ param1 = (char *) name of sound definition
+ param2 = (FMOD::Sound *) the FMOD sound handle that was previously created in FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE
+

+ An FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_RELEASE callback is generated when a "programmer" sound needs to be unloaded. +

 

+ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_INFO +

+ param1 = (char *) name of sound definition
+ param2 = (FMOD::Sound *) the FMOD sound handle that FMOD will use for this sound definition
+

+ An FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_INFO callback is generated when a sound definition is loaded. It can be used to find + information about the specific sound that will be played. +

 

+ + FMOD_EVENT_CALLBACKTYPE_EVENTSTARTED +

+ param1 = 0
+ param2 = 0
+

+ An FMOD_EVENT_CALLBACKTYPE_EVENTSTARTED callback is generated whenever an event is started. This callback will be called before any sounds in the event have begun to play. +

 

+ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_SELECTINDEX +

+ param1 = (char *) name of sound definition if FMOD_EVENT_INIT_DETAILED_SOUNDDEF_INFO was not specified
+ param1 = (FMOD_EVENT_SOUNDDEFINFO *) sound definition info struct if FMOD_EVENT_INIT_DETAILED_SOUNDDEF_INFO was specified
+ param2 [in] = (int *) pointer to number of entries in this sound definition
+ *param2 [out] = (int) index of sound definition entry to select
+

+ An FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_SELECTINDEX callback is generated when a sound definition entry needs to be chosen from a "ProgrammerSelected" sound definition. +

 

+ + FMOD_EVENT_CALLBACKTYPE_OCCLUSION +

+ param1 = (float *) pointer to a floating point direct value that can be read and modified after the geometry engine has calculated it for this event's channel.
+ param2 = (float *) pointer to a floating point reverb value that can be read and modified after the geometry engine has calculated it for this event's channel.
+

+ An FMOD_EVENT_CALLBACKTYPE_OCCLUSION callback is generated whenever an channel has its occlusion updated via the geometry system. +

 

+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + Event::setCallback + FMOD_EVENT_CALLBACK + FMOD_EVENT_SOUNDDEFINFO + FMOD_EVENT_INITFLAGS + EventSystem::update +] +*/ +typedef enum +{ + FMOD_EVENT_CALLBACKTYPE_SYNCPOINT, /* Called when a syncpoint is encountered. Can be from wav file markers. */ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_START, /* Called when a sound definition inside an event is triggered. */ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_END, /* Called when a sound definition inside an event ends or is stopped. */ + FMOD_EVENT_CALLBACKTYPE_STOLEN, /* Called when a getEventXXX call steals an event instance that is in use. */ + FMOD_EVENT_CALLBACKTYPE_EVENTFINISHED, /* Called when an event is stopped for any reason. */ + FMOD_EVENT_CALLBACKTYPE_NET_MODIFIED, /* Called when a property of the event has been modified by a network-connected host. */ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE, /* Called when a programmer sound definition entry is loaded. */ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_RELEASE, /* Called when a programmer sound definition entry is unloaded. */ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_INFO, /* Called when a sound definition entry is loaded. */ + FMOD_EVENT_CALLBACKTYPE_EVENTSTARTED, /* Called when an event is started. */ + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_SELECTINDEX, /* Called when a sound definition entry needs to be chosen from a "ProgrammerSelected" sound definition. */ + FMOD_EVENT_CALLBACKTYPE_OCCLUSION /* Called when an event's channel is occluded with the geometry engine. */ +} FMOD_EVENT_CALLBACKTYPE; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure containing realtime information about a wavebank. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + EventSystem::getInfo + FMOD_EVENT_SYSTEMINFO +] +*/ +typedef struct FMOD_EVENT_WAVEBANKINFO +{ + char name[256]; /* [out] Name of this wave bank. */ + int streamrefcnt; /* [out] Number of stream references to this wave bank made by events in this event system. */ + int samplerefcnt; /* [out] Number of sample references to this wave bank made by events in this event system. */ + int numstreams; /* [out] Number of times this wave bank has been opened for streaming. */ + int maxstreams; /* [out] Maximum number of times this wave bank will be opened for streaming. */ + int streamsinuse; /* [out] Number of streams currently in use. */ + unsigned int streammemory; /* [out] Amount of memory (in bytes) used by streams. */ + unsigned int samplememory; /* [out] Amount of memory (in bytes) used by samples. */ + int type; /* [out] 0 = stream from disk, 1 = load into memory, 2 = decompress into memory. */ +} FMOD_EVENT_WAVEBANKINFO; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure containing realtime information about an event system. + + [REMARKS] + On entry, numplayingevents should be set to the number of elements in the playingevents array. If the actual + number of playing events is greater than numplayingevents then the playingevents array will be filled with + numplayingevents entries and numplayingevents will be set to the actual number of playing events on exit. + In short, if numplayingevents on exit > numplayingevents on entry then the playingevents array wasn't large + enough and some events were unable to be added to the array. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + EventSystem::getInfo + EventProject::getInfo + FMOD_EVENT_WAVEBANKINFO +] +*/ +typedef struct FMOD_EVENT_SYSTEMINFO +{ +#ifdef __cplusplus + FMOD_EVENT_SYSTEMINFO() : numevents(0), numinstances(0), maxwavebanks(0), wavebankinfo(0), numplayingevents(0), playingevents(0) {} +#endif + + int numevents; /* [out] Total number of events in all event groups in this event system. */ + int numinstances; /* [out] Total number of event instances in all event groups in this event system. */ + int maxwavebanks; /* [in/out] Out, number of wavebanks loaded by the EventSystem. In. Maximum size of array of wavebankinfo structures supplied by user. Optional. */ + FMOD_EVENT_WAVEBANKINFO *wavebankinfo; /* [in] Pointer to array FMOD_EVENT_WAVEBANKINFO structures (max size defined by maxwavebanks). FMOD will fill these in with detailed information on each wave bank. Optional. */ + int numplayingevents; /* [in/out] On entry, maximum number of entries in playingevents array. On exit, actual number of entries in playingevents array, or if playingevents is null, then it is just the number of currently playing events. Optional. */ + FMOD_EVENT **playingevents; /* [in/out] Pointer to an array that will be filled with the event handles of all playing events. Optional. Specify 0 if not needed. Must be used in conjunction with numplayingevents. */ + int numloadsqueued[5]; /* [out] Current number of sound banks queued for loading due to using FMOD_EVENT_NONBLOCKING flag. Note there are 5 because there are 5 possible loading threads. Add all values together for total. */ +} FMOD_EVENT_SYSTEMINFO; + + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure containing realtime information about an event project. + + [REMARKS] + On entry, numplayingevents should be set to the number of elements in the playingevents array. If the actual + number of playing events is greater than numplayingevents then the playingevents array will be filled with + numplayingevents entries and numplayingevents will be set to the actual number of playing events on exit. + In short, if numplayingevents on exit > numplayingevents on entry then the playingevents array wasn't large + enough and some events were unable to be added to the array. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + EventProject::getInfo + EventSystem::getInfo + FMOD_EVENT_WAVEBANKINFO +] +*/ +typedef struct FMOD_EVENT_PROJECTINFO +{ +#ifdef __cplusplus + FMOD_EVENT_PROJECTINFO() : index(0), numevents(0), numinstances(0), maxwavebanks(0), wavebankinfo(0), numplayingevents(0), playingevents(0) {} +#endif + + int index; /* [out] Index of the project. */ + char name[256]; /* [out] Name of the project. */ + int numevents; /* [out] Total number of events in all event groups in this event project. */ + int numinstances; /* [out] Total number of event instances in all event groups in this event project. */ + int maxwavebanks; /* [in/out] Out, number of wavebanks loaded by the EventProject. In. Maximum size of array of wavebankinfo structures supplied by user. Optional. */ + FMOD_EVENT_WAVEBANKINFO *wavebankinfo; /* [in] Pointer to array FMOD_EVENT_WAVEBANKINFO structures (max size defined by maxwavebanks). FMOD will fill these in with detailed information on each wave bank. Optional. */ + int numplayingevents; /* [in/out] On entry, maximum number of entries in playingevents array. On exit, actual number of entries in playingevents array, or if playingevents is null, then it is just the number of currently playing events. Optional. */ + FMOD_EVENT **playingevents; /* [in/out] Pointer to an array that will be filled with the event handles of all playing events. Optional. Specify 0 if not needed. Must be used in conjunction with numplayingevents. */ + +} FMOD_EVENT_PROJECTINFO; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure containing extended information about an event. + + [REMARKS] + This structure is optional! Specify 0 or NULL in Event::getInfo if you don't need it!
+ This structure has members that need to be initialized before Event::getInfo is called. Always initialize this structure before calling Event::getInfo! + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + Event::getInfo + FMOD_GUID +] +*/ +typedef struct FMOD_EVENT_INFO +{ +#ifdef __cplusplus + FMOD_EVENT_INFO() : memoryused(0), positionms(0), lengthms(0), channelsplaying(0), instancesactive(0), maxwavebanks(0), wavebankinfo(0), projectid(0), systemid(0), audibility(0), numinstances(0), instances(0), guid(0) {} +#endif + + int memoryused; /* This member has been deprecated. */ + int positionms; /* [out] Time passed in playback of this event instance in milliseconds. */ + int lengthms; /* [out] Length in milliseconds of this event. Note: lengthms will be -1 if the length of the event can't be determined i.e. if it has looping sounds. */ + int channelsplaying; /* [out] Number of channels currently playing in this event instance. */ + int instancesactive; /* [out] Number of event instances currently in use. */ + int maxwavebanks; /* [in/out] Out, number of wavebanks refered to by this event. In. Maximum size of array of wavebankinfo structures supplied by user. Optional. */ + FMOD_EVENT_WAVEBANKINFO *wavebankinfo; /* [in] Pointer to array FMOD_EVENT_WAVEBANKINFO structures (max size defined by maxwavebanks). FMOD will fill these in with detailed information on each wave bank. Optional. */ + unsigned int projectid; /* [out] The runtime 'EventProject' wide unique identifier for this event. */ + unsigned int systemid; /* [out] The runtime 'EventSystem' wide unique identifier for this event. This is calculated when single or multiple projects are loaded. */ + float audibility; /* [out] current audibility of event. */ + int numinstances; /* [in/out] On entry, maximum number of entries in instances array. On exit, actual number of entries in instances array, or if instances is null, then it is just the number of instances of this event. Optional. */ + FMOD_EVENT **instances; /* [in/out] Pointer to an array that will be filled with the current reference-counted event handles of all instances of this event. Optional. Specify 0 if not needed. Must be used in conjunction with numinstances. Note: Due to reference counting, the event instance handles returned here may be different between subsequent calls to this function. If you use these event handles, make sure your code is prepared for them to be invalid! */ + FMOD_GUID *guid; /* [out] Pointer to a structure that will be filled with the event's GUID. Optional. Specify 0 if not needed. */ + +} FMOD_EVENT_INFO; + + +/* +[ENUM] +[ + [DESCRIPTION] + Sound definition entry types for FMOD_EVENT_SOUNDDEFINFO. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_EVENT_SOUNDDEFINFO + FMOD_EVENT_CALLBACK + FMOD_EVENT_CALLBACKTYPE +] +*/ +typedef enum +{ + FMOD_EVENT_SOUNDDEF_ENTRYTYPE_WAVETABLE, /* Waveform. */ + FMOD_EVENT_SOUNDDEF_ENTRYTYPE_OSCILLATOR, /* Oscillator. */ + FMOD_EVENT_SOUNDDEF_ENTRYTYPE_NULL, /* "Don't play" entry. */ + FMOD_EVENT_SOUNDDEF_ENTRYTYPE_PROGRAMMER /* Programmer sound. */ +} FMOD_EVENT_SOUNDDEF_ENTRYTYPE; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure containing information about a sound definition. + + [REMARKS] + This structure is passed as the param1 argument of all + FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_SELECTINDEX callbacks if + FMOD_EVENT_INIT_DETAILED_SOUNDDEF_INFO was passed to EventSystem::init. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_EVENT_CALLBACK + FMOD_EVENT_CALLBACKTYPE + EventSystem::init + FMOD_EVENT_INITFLAGS + FMOD_EVENT_SOUNDDEF_ENTRYTYPE +] +*/ +typedef struct FMOD_EVENT_SOUNDDEFINFO +{ +#ifdef __cplusplus + FMOD_EVENT_SOUNDDEFINFO() : name(0), numentries(0), entrynames(0), entrytypes(0) {} +#endif + + char *name; /* The name of the sound definition. */ + int numentries; /* The number of entries in the sound definition. */ + const char **entrynames; /* The names of the entries in the sound definition (an array of size numentries). Note that entrynames[i] will be null if entrytypes[i] is not FMOD_EVENT_SOUNDDEF_ENTRYTYPE_WAVETABLE. */ + FMOD_EVENT_SOUNDDEF_ENTRYTYPE *entrytypes; /* The types of the entries in the sound definition (an array of size numentries). */ + +} FMOD_EVENT_SOUNDDEFINFO; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Use this structure with EventSystem::load when more control is needed over loading. + + [REMARKS] + This structure is optional! Specify 0 or NULL in EventSystem::load if you don't need it!
+
+ Members marked with [in] mean the user sets the value before passing it to the function.
+ Members marked with [out] mean FMOD sets the value to be used after the function exits.
+ Use sounddefentrylimit to limit the number of sound definition entries - and therefore the amount of wave data - loaded for each sound definition. This feature allows the programmer to implement a "low detail" setting at runtime without needing a seperate "low detail" set of assets. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + EventSystem::load +] +*/ +typedef struct FMOD_EVENT_LOADINFO +{ +#ifdef __cplusplus + FMOD_EVENT_LOADINFO() : size(0), encryptionkey(0), sounddefentrylimit(0), loadfrommemory_length(0), override_category_vals(0), sizeof_instancepool_simple(0) {} +#endif + + unsigned int size; /* [in] Size of this structure. This is used so the structure can be expanded in the future and still work on older versions of FMOD Ex. */ + char *encryptionkey; /* [in] Optional. Specify 0 to ignore. Key, or 'password' to decrypt a bank. A sound designer may have encrypted the audio data to protect their sound data from 'rippers'. */ + float sounddefentrylimit; /* [in] Optional. Specify 0 to ignore. A value between 0 -> 1 that is multiplied with the number of sound definition entries in each sound definition in the project being loaded in order to programmatically reduce the number of sound definition entries used at runtime. */ + unsigned int loadfrommemory_length; /* [in] Optional. Specify 0 to ignore. Length of memory buffer pointed to by name_or_data parameter passed to EventSystem::load. If this field is non-zero then the name_or_data parameter passed to EventSystem::load will be interpreted as a pointer to a memory buffer containing the .fev data to load. If this field is zero the name_or_data parameter is interpreted as the filename of the .fev file to load. */ + FMOD_BOOL override_category_vals; /* [in] Optional. If this member is set to true, newly-loaded categories will impart their properties (volume, pitch etc.) to existing categories of the same name. */ + unsigned int sizeof_instancepool_simple; /* [in] Optional. Specify 0 to ignore. If this value is non-zero, FMOD will create an instance pool for simple events with "sizeof_instancepool_simple" entries. Note: Event instance pools currently work for simple events only. Complex events will behave as normal and not be pooled. */ + +} FMOD_EVENT_LOADINFO; + + +typedef FMOD_RESULT (F_CALLBACK *FMOD_EVENT_CALLBACK) (FMOD_EVENT *event, FMOD_EVENT_CALLBACKTYPE type, void *param1, void *param2, void *userdata); + + +/* +[ENUM] +[ + [DESCRIPTION] + These callback types are used with FMOD_EVENTQUEUE_CALLBACK. + + [REMARKS] + Note! Currently the user must call EventSystem::update for these callbacks to trigger!

+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + EventQueue::setCallback + FMOD_EVENTQUEUE_CALLBACK + EventSystem::update +] +*/ +typedef enum +{ + FMOD_EVENTQUEUE_CALLBACKTYPE_PREPARE, /* Called when an entry is being prepared for playback */ + FMOD_EVENTQUEUE_CALLBACKTYPE_ABOUTTOPLAY, /* Called when an entry is about to play */ + FMOD_EVENTQUEUE_CALLBACKTYPE_FINISHED, /* Called when an entry has finished playing */ + FMOD_EVENTQUEUE_CALLBACKTYPE_EXPIRED /* Called when an entry has expired before being played. See EventQueueEntry::setExpiryTime */ + +} FMOD_EVENTQUEUE_CALLBACKTYPE; + + +typedef FMOD_RESULT (F_CALLBACK *FMOD_EVENTQUEUE_CALLBACK)(FMOD_EVENTQUEUE_CALLBACKTYPE type, FMOD_EVENTQUEUE *queue, FMOD_EVENTQUEUEENTRY *entry, void *callbackuserdata); + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure containing realtime information about the music system. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + MusicSystem::getInfo +] +*/ +typedef struct FMOD_MUSIC_INFO +{ + FMOD_BOOL starving; /* [out] True if any streams in the music system are starving. */ + FMOD_BOOL all_samples_loaded; /* [out] True if all non-streaming samples in the music system are loaded, false otherwise. */ +} FMOD_MUSIC_INFO; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure used to hold information about music system entites. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_MUSIC_ITERATOR +] +*/ +typedef struct FMOD_MUSIC_ENTITY +{ + const char* name; /* The name of the music entity as a null terminated string. */ + FMOD_MUSIC_ID id; /* The ID of the music entity. */ +} FMOD_MUSIC_ENTITY; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure used to enumerate entities in the music system. + + [REMARKS] + The music system provides methods to initialize and advance iterators. Iterator members should never need to be set manually. + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_MUSIC_ENTITY + MusicSystem::getCues + MusicSystem::getParameters +] +*/ +typedef struct FMOD_MUSIC_ITERATOR +{ + const FMOD_MUSIC_ENTITY* value; /* The music entity the iterator points to. A null value indicates an invalid iterator. */ + const char* filter; /* The string used to filter music entities. */ +} FMOD_MUSIC_ITERATOR; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure containing information about a music sample, for use with + FMOD_MUSIC_CALLBACKTYPE_SEGMENT_CREATE and FMOD_MUSIC_CALLBACKTYPE_SEGMENT_RELEASE. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_MUSIC_CALLBACK + FMOD_MUSIC_CALLBACKTYPE +] +*/ +typedef struct FMOD_MUSIC_SAMPLE_INFO +{ + unsigned int segment_id; /* The ID of the parent segment. */ + unsigned int index; /* The index of the sample within the parent segment. */ + const char *filename; /* The filename of the sample.
Note: If the sample was built by a version of FMOD Designer before 4.29.09, this field will be 0. */ +} FMOD_MUSIC_SAMPLE_INFO; + + +/* +[STRUCTURE] +[ + [DESCRIPTION] + Structure containing information about a music segment, for use with + FMOD_MUSIC_CALLBACKTYPE_CHANNEL_CREATED and FMOD_MUSIC_CALLBACKTYPE_CHANNEL_DESTROYED. + + [REMARKS] + + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + FMOD_MUSIC_CALLBACK + FMOD_MUSIC_CALLBACKTYPE +] +*/ +typedef struct FMOD_MUSIC_SEGMENT_INFO +{ + unsigned int segment_id; /* The ID of the segment. */ + unsigned int theme_id; /* The ID of the parent theme. */ +} FMOD_MUSIC_SEGMENT_INFO; + + +/* +[ENUM] +[ + [DESCRIPTION] + These callback types are used with FMOD_MUSIC_CALLBACK. + + [REMARKS] + Note! Currently the user must call EventSystem::update for these callbacks to trigger!
+ + [PLATFORMS] + Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android + + [SEE_ALSO] + MusicSystem::setCallback + FMOD_MUSIC_CALLBACK + EventSystem::update +] +*/ +typedef enum +{ + FMOD_MUSIC_CALLBACKTYPE_SEGMENT_START, /* Called when a segment is started. */ + FMOD_MUSIC_CALLBACKTYPE_SEGMENT_END, /* Called when a segment ends. */ + FMOD_MUSIC_CALLBACKTYPE_SAMPLE_CREATE, /* Called when a segment needs a sound created. */ + FMOD_MUSIC_CALLBACKTYPE_SAMPLE_RELEASE, /* Called when a segment is finished with a sound. */ + FMOD_MUSIC_CALLBACKTYPE_CHANNEL_CREATED, /* Called when a channel is created to play a segment. */ + FMOD_MUSIC_CALLBACKTYPE_CHANNEL_DESTROYED, /* Called when a segment channel is destroyed. */ + FMOD_MUSIC_CALLBACKTYPE_RESET, /* Called when the system is reset */ + FMOD_MUSIC_CALLBACKTYPE_BEAT /* Called each time a beat is passed (based on segment tempo and time signature) */ +} FMOD_MUSIC_CALLBACKTYPE; + + +typedef FMOD_RESULT (F_CALLBACK *FMOD_MUSIC_CALLBACK) (FMOD_MUSIC_CALLBACKTYPE type, void *param1, void *param2, void *userdata); + + +/* ========================================================================================== */ +/* FUNCTION PROTOTYPES */ +/* ========================================================================================== */ + +#ifdef __cplusplus +extern "C" +{ +#endif + +/* + FMOD EventSystem factory functions. Use this to create an FMOD EventSystem Instance. Below you will see FMOD_EventSystem_Init/Release to get started. +*/ + +FMOD_RESULT F_API FMOD_EventSystem_Create(FMOD_EVENTSYSTEM **eventsystem); + +/*$ preserve end $*/ + +/* + 'EventSystem' API +*/ + +/* + Initialization / system functions. +*/ + +FMOD_RESULT F_API FMOD_EventSystem_Init (FMOD_EVENTSYSTEM *eventsystem, int maxchannels, FMOD_INITFLAGS flags, void *extradriverdata, FMOD_EVENT_INITFLAGS eventflags); +FMOD_RESULT F_API FMOD_EventSystem_Release (FMOD_EVENTSYSTEM *eventsystem); +FMOD_RESULT F_API FMOD_EventSystem_Update (FMOD_EVENTSYSTEM *eventsystem); +FMOD_RESULT F_API FMOD_EventSystem_SetMediaPath (FMOD_EVENTSYSTEM *eventsystem, const char *path); +FMOD_RESULT F_API FMOD_EventSystem_SetPluginPath (FMOD_EVENTSYSTEM *eventsystem, const char *path); +FMOD_RESULT F_API FMOD_EventSystem_GetVersion (FMOD_EVENTSYSTEM *eventsystem, unsigned int *version); +FMOD_RESULT F_API FMOD_EventSystem_GetInfo (FMOD_EVENTSYSTEM *eventsystem, FMOD_EVENT_SYSTEMINFO *info); +FMOD_RESULT F_API FMOD_EventSystem_GetSystemObject (FMOD_EVENTSYSTEM *eventsystem, FMOD_SYSTEM **system); +FMOD_RESULT F_API FMOD_EventSystem_GetMusicSystem (FMOD_EVENTSYSTEM *eventsystem, FMOD_MUSICSYSTEM **musicsystem); +FMOD_RESULT F_API FMOD_EventSystem_SetLanguage (FMOD_EVENTSYSTEM *eventsystem, const char *language); +FMOD_RESULT F_API FMOD_EventSystem_GetLanguage (FMOD_EVENTSYSTEM *eventsystem, char *language); + +/* + FEV load/unload. +*/ + +FMOD_RESULT F_API FMOD_EventSystem_Load (FMOD_EVENTSYSTEM *eventsystem, const char *name_or_data, FMOD_EVENT_LOADINFO *loadinfo, FMOD_EVENTPROJECT **project); +FMOD_RESULT F_API FMOD_EventSystem_Unload (FMOD_EVENTSYSTEM *eventsystem); + +/* + Event,EventGroup,EventCategory Retrieval. +*/ + +FMOD_RESULT F_API FMOD_EventSystem_GetProject (FMOD_EVENTSYSTEM *eventsystem, const char *name, FMOD_EVENTPROJECT **project); +FMOD_RESULT F_API FMOD_EventSystem_GetProjectByIndex (FMOD_EVENTSYSTEM *eventsystem, int index, FMOD_EVENTPROJECT **project); +FMOD_RESULT F_API FMOD_EventSystem_GetNumProjects (FMOD_EVENTSYSTEM *eventsystem, int *numprojects); +FMOD_RESULT F_API FMOD_EventSystem_GetCategory (FMOD_EVENTSYSTEM *eventsystem, const char *name, FMOD_EVENTCATEGORY **category); +FMOD_RESULT F_API FMOD_EventSystem_GetCategoryByIndex(FMOD_EVENTSYSTEM *eventsystem, int index, FMOD_EVENTCATEGORY **category); +FMOD_RESULT F_API FMOD_EventSystem_GetMusicCategory (FMOD_EVENTSYSTEM *eventsystem, FMOD_EVENTCATEGORY **category); +FMOD_RESULT F_API FMOD_EventSystem_GetNumCategories (FMOD_EVENTSYSTEM *eventsystem, int *numcategories); +FMOD_RESULT F_API FMOD_EventSystem_GetGroup (FMOD_EVENTSYSTEM *eventsystem, const char *name, FMOD_BOOL cacheevents, FMOD_EVENTGROUP **group); +FMOD_RESULT F_API FMOD_EventSystem_GetEvent (FMOD_EVENTSYSTEM *eventsystem, const char *name, FMOD_EVENT_MODE mode, FMOD_EVENT **event); +FMOD_RESULT F_API FMOD_EventSystem_GetEventBySystemID(FMOD_EVENTSYSTEM *eventsystem, unsigned int systemid, FMOD_EVENT_MODE mode, FMOD_EVENT **event); +FMOD_RESULT F_API FMOD_EventSystem_GetEventByGUID (FMOD_EVENTSYSTEM *eventsystem, const FMOD_GUID *guid, FMOD_EVENT_MODE mode, FMOD_EVENT **event); +FMOD_RESULT F_API FMOD_EventSystem_GetEventByGUIDString(FMOD_EVENTSYSTEM *eventsystem, const char *guid, FMOD_EVENT_MODE mode, FMOD_EVENT **event); +FMOD_RESULT F_API FMOD_EventSystem_GetNumEvents (FMOD_EVENTSYSTEM *eventsystem, int *numevents); + +/* + Reverb interfaces. +*/ + +FMOD_RESULT F_API FMOD_EventSystem_SetReverbProperties(FMOD_EVENTSYSTEM *eventsystem, const FMOD_REVERB_PROPERTIES *props); +FMOD_RESULT F_API FMOD_EventSystem_GetReverbProperties(FMOD_EVENTSYSTEM *eventsystem, FMOD_REVERB_PROPERTIES *props); + +FMOD_RESULT F_API FMOD_EventSystem_GetReverbPreset (FMOD_EVENTSYSTEM *eventsystem, const char *name, FMOD_REVERB_PROPERTIES *props, int *index); +FMOD_RESULT F_API FMOD_EventSystem_GetReverbPresetByIndex(FMOD_EVENTSYSTEM *eventsystem, const int index, FMOD_REVERB_PROPERTIES *props, char **name); +FMOD_RESULT F_API FMOD_EventSystem_GetNumReverbPresets(FMOD_EVENTSYSTEM *eventsystem, int *numpresets); + +FMOD_RESULT F_API FMOD_EventSystem_CreateReverb (FMOD_EVENTSYSTEM *eventsystem, FMOD_EVENTREVERB **reverb); +FMOD_RESULT F_API FMOD_EventSystem_SetReverbAmbientProperties(FMOD_EVENTSYSTEM *eventsystem, FMOD_REVERB_PROPERTIES *props); +FMOD_RESULT F_API FMOD_EventSystem_GetReverbAmbientProperties(FMOD_EVENTSYSTEM *eventsystem, FMOD_REVERB_PROPERTIES *props); + +/* + Event queue interfaces. +*/ + +FMOD_RESULT F_API FMOD_EventSystem_CreateEventQueue (FMOD_EVENTSYSTEM *eventsystem, FMOD_EVENTQUEUE **queue); +FMOD_RESULT F_API FMOD_EventSystem_CreateEventQueueEntry(FMOD_EVENTSYSTEM *eventsystem, FMOD_EVENT *event, FMOD_EVENTQUEUEENTRY **entry); + +/* + 3D Listener interface. +*/ + +FMOD_RESULT F_API FMOD_EventSystem_Set3DNumListeners (FMOD_EVENTSYSTEM *eventsystem, int numlisteners); +FMOD_RESULT F_API FMOD_EventSystem_Get3DNumListeners (FMOD_EVENTSYSTEM *eventsystem, int *numlisteners); +FMOD_RESULT F_API FMOD_EventSystem_Set3DListenerAttributes(FMOD_EVENTSYSTEM *eventsystem, int listener, const FMOD_VECTOR *pos, const FMOD_VECTOR *vel, const FMOD_VECTOR *forward, const FMOD_VECTOR *up); +FMOD_RESULT F_API FMOD_EventSystem_Get3DListenerAttributes(FMOD_EVENTSYSTEM *eventsystem, int listener, FMOD_VECTOR *pos, FMOD_VECTOR *vel, FMOD_VECTOR *forward, FMOD_VECTOR *up); + +/* + Get/set user data +*/ + +FMOD_RESULT F_API FMOD_EventSystem_SetUserData (FMOD_EVENTSYSTEM *eventsystem, void *userdata); +FMOD_RESULT F_API FMOD_EventSystem_GetUserData (FMOD_EVENTSYSTEM *eventsystem, void **userdata); + +/* + Pre-loading FSB files (from disk or from memory, use FMOD_OPENMEMORY_POINT to point to pre-loaded memory). +*/ + +FMOD_RESULT F_API FMOD_EventSystem_PreloadFSB (FMOD_EVENTSYSTEM *eventsystem, const char *filename, int streaminstance, FMOD_SOUND *sound); +FMOD_RESULT F_API FMOD_EventSystem_UnloadFSB (FMOD_EVENTSYSTEM *eventsystem, const char *filename, int streaminstance); + +FMOD_RESULT F_API FMOD_EventSystem_GetMemoryInfo (FMOD_EVENTSYSTEM *eventsystem, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'EventProject' API +*/ + +FMOD_RESULT F_API FMOD_EventProject_Release (FMOD_EVENTPROJECT *eventproject); +FMOD_RESULT F_API FMOD_EventProject_GetInfo (FMOD_EVENTPROJECT *eventproject, FMOD_EVENT_PROJECTINFO *info); +FMOD_RESULT F_API FMOD_EventProject_GetGroup (FMOD_EVENTPROJECT *eventproject, const char *name, FMOD_BOOL cacheevents, FMOD_EVENTGROUP **group); +FMOD_RESULT F_API FMOD_EventProject_GetGroupByIndex (FMOD_EVENTPROJECT *eventproject, int index, FMOD_BOOL cacheevents, FMOD_EVENTGROUP **group); +FMOD_RESULT F_API FMOD_EventProject_GetNumGroups (FMOD_EVENTPROJECT *eventproject, int *numgroups); +FMOD_RESULT F_API FMOD_EventProject_GetEvent (FMOD_EVENTPROJECT *eventproject, const char *name, FMOD_EVENT_MODE mode, FMOD_EVENT **event); +FMOD_RESULT F_API FMOD_EventProject_GetEventByProjectID(FMOD_EVENTPROJECT *eventproject, unsigned int projectid, FMOD_EVENT_MODE mode, FMOD_EVENT **event); +FMOD_RESULT F_API FMOD_EventProject_GetNumEvents (FMOD_EVENTPROJECT *eventproject, int *numevents); +FMOD_RESULT F_API FMOD_EventProject_LoadSampleData (FMOD_EVENTPROJECT *eventproject, int *eventid_array, int sizeof_eventid_array, char **groupname_array, int sizeof_groupname_array, FMOD_EVENT_MODE eventmode); +FMOD_RESULT F_API FMOD_EventProject_StopAllEvents (FMOD_EVENTPROJECT *eventproject, FMOD_BOOL immediate); +FMOD_RESULT F_API FMOD_EventProject_CancelAllLoads (FMOD_EVENTPROJECT *eventproject); +FMOD_RESULT F_API FMOD_EventProject_SetUserData (FMOD_EVENTPROJECT *eventproject, void *userdata); +FMOD_RESULT F_API FMOD_EventProject_GetUserData (FMOD_EVENTPROJECT *eventproject, void **userdata); + +FMOD_RESULT F_API FMOD_EventProject_GetMemoryInfo (FMOD_EVENTPROJECT *eventproject, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'EventGroup' API +*/ + +FMOD_RESULT F_API FMOD_EventGroup_GetInfo (FMOD_EVENTGROUP *eventgroup, int *index, char **name); +FMOD_RESULT F_API FMOD_EventGroup_LoadEventData (FMOD_EVENTGROUP *eventgroup, FMOD_EVENT_RESOURCE resource, FMOD_EVENT_MODE mode); +FMOD_RESULT F_API FMOD_EventGroup_FreeEventData (FMOD_EVENTGROUP *eventgroup, FMOD_EVENT *event, FMOD_BOOL waituntilready); +FMOD_RESULT F_API FMOD_EventGroup_GetGroup (FMOD_EVENTGROUP *eventgroup, const char *name, FMOD_BOOL cacheevents, FMOD_EVENTGROUP **group); +FMOD_RESULT F_API FMOD_EventGroup_GetGroupByIndex (FMOD_EVENTGROUP *eventgroup, int index, FMOD_BOOL cacheevents, FMOD_EVENTGROUP **group); +FMOD_RESULT F_API FMOD_EventGroup_GetParentGroup (FMOD_EVENTGROUP *eventgroup, FMOD_EVENTGROUP **group); +FMOD_RESULT F_API FMOD_EventGroup_GetParentProject (FMOD_EVENTGROUP *eventgroup, FMOD_EVENTPROJECT **project); +FMOD_RESULT F_API FMOD_EventGroup_GetNumGroups (FMOD_EVENTGROUP *eventgroup, int *numgroups); +FMOD_RESULT F_API FMOD_EventGroup_GetEvent (FMOD_EVENTGROUP *eventgroup, const char *name, FMOD_EVENT_MODE mode, FMOD_EVENT **event); +FMOD_RESULT F_API FMOD_EventGroup_GetEventByIndex (FMOD_EVENTGROUP *eventgroup, int index, FMOD_EVENT_MODE mode, FMOD_EVENT **event); +FMOD_RESULT F_API FMOD_EventGroup_GetNumEvents (FMOD_EVENTGROUP *eventgroup, int *numevents); +FMOD_RESULT F_API FMOD_EventGroup_GetProperty (FMOD_EVENTGROUP *eventgroup, const char *propertyname, void *value); +FMOD_RESULT F_API FMOD_EventGroup_GetPropertyByIndex (FMOD_EVENTGROUP *eventgroup, int propertyindex, void *value); +FMOD_RESULT F_API FMOD_EventGroup_GetNumProperties (FMOD_EVENTGROUP *eventgroup, int *numproperties); +FMOD_RESULT F_API FMOD_EventGroup_GetState (FMOD_EVENTGROUP *eventgroup, FMOD_EVENT_STATE *state); +FMOD_RESULT F_API FMOD_EventGroup_SetUserData (FMOD_EVENTGROUP *eventgroup, void *userdata); +FMOD_RESULT F_API FMOD_EventGroup_GetUserData (FMOD_EVENTGROUP *eventgroup, void **userdata); + +FMOD_RESULT F_API FMOD_EventGroup_GetMemoryInfo (FMOD_EVENTGROUP *eventgroup, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'EventCategory' API +*/ + +FMOD_RESULT F_API FMOD_EventCategory_GetInfo (FMOD_EVENTCATEGORY *eventcategory, int *index, char **name); +FMOD_RESULT F_API FMOD_EventCategory_GetCategory (FMOD_EVENTCATEGORY *eventcategory, const char *name, FMOD_EVENTCATEGORY **category); +FMOD_RESULT F_API FMOD_EventCategory_GetCategoryByIndex(FMOD_EVENTCATEGORY *eventcategory, int index, FMOD_EVENTCATEGORY **category); +FMOD_RESULT F_API FMOD_EventCategory_GetNumCategories(FMOD_EVENTCATEGORY *eventcategory, int *numcategories); +FMOD_RESULT F_API FMOD_EventCategory_GetEventByIndex (FMOD_EVENTCATEGORY *eventcategory, int index, FMOD_EVENT_MODE mode, FMOD_EVENT **event); +FMOD_RESULT F_API FMOD_EventCategory_GetNumEvents (FMOD_EVENTCATEGORY *eventcategory, int *numevents); +FMOD_RESULT F_API FMOD_EventCategory_GetParentCategory(FMOD_EVENTCATEGORY *eventcategory, FMOD_EVENTCATEGORY **category); + +FMOD_RESULT F_API FMOD_EventCategory_StopAllEvents (FMOD_EVENTCATEGORY *eventcategory); +FMOD_RESULT F_API FMOD_EventCategory_SetVolume (FMOD_EVENTCATEGORY *eventcategory, float volume); +FMOD_RESULT F_API FMOD_EventCategory_GetVolume (FMOD_EVENTCATEGORY *eventcategory, float *volume); +FMOD_RESULT F_API FMOD_EventCategory_SetPitch (FMOD_EVENTCATEGORY *eventcategory, float pitch, FMOD_EVENT_PITCHUNITS units); +FMOD_RESULT F_API FMOD_EventCategory_GetPitch (FMOD_EVENTCATEGORY *eventcategory, float *pitch, FMOD_EVENT_PITCHUNITS units); +FMOD_RESULT F_API FMOD_EventCategory_SetPaused (FMOD_EVENTCATEGORY *eventcategory, FMOD_BOOL paused); +FMOD_RESULT F_API FMOD_EventCategory_GetPaused (FMOD_EVENTCATEGORY *eventcategory, FMOD_BOOL *paused); +FMOD_RESULT F_API FMOD_EventCategory_SetMute (FMOD_EVENTCATEGORY *eventcategory, FMOD_BOOL mute); +FMOD_RESULT F_API FMOD_EventCategory_GetMute (FMOD_EVENTCATEGORY *eventcategory, FMOD_BOOL *mute); +FMOD_RESULT F_API FMOD_EventCategory_GetChannelGroup (FMOD_EVENTCATEGORY *eventcategory, FMOD_CHANNELGROUP **channelgroup); +FMOD_RESULT F_API FMOD_EventCategory_SetUserData (FMOD_EVENTCATEGORY *eventcategory, void *userdata); +FMOD_RESULT F_API FMOD_EventCategory_GetUserData (FMOD_EVENTCATEGORY *eventcategory, void **userdata); + +FMOD_RESULT F_API FMOD_EventCategory_GetMemoryInfo (FMOD_EVENTCATEGORY *eventcategory, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'Event' API +*/ + +FMOD_RESULT F_API FMOD_Event_Release (FMOD_EVENT *event, FMOD_BOOL freeeventdata, FMOD_BOOL waituntilready); + +FMOD_RESULT F_API FMOD_Event_Start (FMOD_EVENT *event); +FMOD_RESULT F_API FMOD_Event_Stop (FMOD_EVENT *event, FMOD_BOOL immediate); + +FMOD_RESULT F_API FMOD_Event_GetInfo (FMOD_EVENT *event, int *index, char **name, FMOD_EVENT_INFO *info); +FMOD_RESULT F_API FMOD_Event_GetState (FMOD_EVENT *event, FMOD_EVENT_STATE *state); +FMOD_RESULT F_API FMOD_Event_GetParentGroup (FMOD_EVENT *event, FMOD_EVENTGROUP **group); +FMOD_RESULT F_API FMOD_Event_GetChannelGroup (FMOD_EVENT *event, FMOD_CHANNELGROUP **channelgroup); +FMOD_RESULT F_API FMOD_Event_SetCallback (FMOD_EVENT *event, FMOD_EVENT_CALLBACK callback, void *userdata); + +FMOD_RESULT F_API FMOD_Event_GetParameter (FMOD_EVENT *event, const char *name, FMOD_EVENTPARAMETER **parameter); +FMOD_RESULT F_API FMOD_Event_GetParameterByIndex (FMOD_EVENT *event, int index, FMOD_EVENTPARAMETER **parameter); +FMOD_RESULT F_API FMOD_Event_GetNumParameters (FMOD_EVENT *event, int *numparameters); +FMOD_RESULT F_API FMOD_Event_GetProperty (FMOD_EVENT *event, const char *propertyname, void *value, FMOD_BOOL this_instance); +FMOD_RESULT F_API FMOD_Event_GetPropertyByIndex (FMOD_EVENT *event, int propertyindex, void *value, FMOD_BOOL this_instance); +FMOD_RESULT F_API FMOD_Event_SetProperty (FMOD_EVENT *event, const char *propertyname, void *value, FMOD_BOOL this_instance); +FMOD_RESULT F_API FMOD_Event_SetPropertyByIndex (FMOD_EVENT *event, int propertyindex, void *value, FMOD_BOOL this_instance); +FMOD_RESULT F_API FMOD_Event_GetNumProperties (FMOD_EVENT *event, int *numproperties); +FMOD_RESULT F_API FMOD_Event_GetPropertyInfo (FMOD_EVENT *event, int *propertyindex, char **propertyname, FMOD_EVENTPROPERTY_TYPE *type); +FMOD_RESULT F_API FMOD_Event_GetCategory (FMOD_EVENT *event, FMOD_EVENTCATEGORY **category); + +FMOD_RESULT F_API FMOD_Event_SetVolume (FMOD_EVENT *event, float volume); +FMOD_RESULT F_API FMOD_Event_GetVolume (FMOD_EVENT *event, float *volume); +FMOD_RESULT F_API FMOD_Event_SetPitch (FMOD_EVENT *event, float pitch, FMOD_EVENT_PITCHUNITS units); +FMOD_RESULT F_API FMOD_Event_GetPitch (FMOD_EVENT *event, float *pitch, FMOD_EVENT_PITCHUNITS units); +FMOD_RESULT F_API FMOD_Event_SetPaused (FMOD_EVENT *event, FMOD_BOOL paused); +FMOD_RESULT F_API FMOD_Event_GetPaused (FMOD_EVENT *event, FMOD_BOOL *paused); +FMOD_RESULT F_API FMOD_Event_SetMute (FMOD_EVENT *event, FMOD_BOOL mute); +FMOD_RESULT F_API FMOD_Event_GetMute (FMOD_EVENT *event, FMOD_BOOL *mute); +FMOD_RESULT F_API FMOD_Event_Set3DAttributes (FMOD_EVENT *event, const FMOD_VECTOR *position, const FMOD_VECTOR *velocity, const FMOD_VECTOR *orientation); +FMOD_RESULT F_API FMOD_Event_Get3DAttributes (FMOD_EVENT *event, FMOD_VECTOR *position, FMOD_VECTOR *velocity, FMOD_VECTOR *orientation); +FMOD_RESULT F_API FMOD_Event_Set3DOcclusion (FMOD_EVENT *event, float directocclusion, float reverbocclusion); +FMOD_RESULT F_API FMOD_Event_Get3DOcclusion (FMOD_EVENT *event, float *directocclusion, float *reverbocclusion); +FMOD_RESULT F_API FMOD_Event_SetReverbProperties (FMOD_EVENT *event, const FMOD_REVERB_CHANNELPROPERTIES *props); +FMOD_RESULT F_API FMOD_Event_GetReverbProperties (FMOD_EVENT *event, FMOD_REVERB_CHANNELPROPERTIES *props); +FMOD_RESULT F_API FMOD_Event_SetUserData (FMOD_EVENT *event, void *userdata); +FMOD_RESULT F_API FMOD_Event_GetUserData (FMOD_EVENT *event, void **userdata); + +FMOD_RESULT F_API FMOD_Event_GetMemoryInfo (FMOD_EVENT *event, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'EventParameter' API +*/ + +FMOD_RESULT F_API FMOD_EventParameter_GetInfo (FMOD_EVENTPARAMETER *eventparameter, int *index, char **name); +FMOD_RESULT F_API FMOD_EventParameter_GetRange (FMOD_EVENTPARAMETER *eventparameter, float *rangemin, float *rangemax); +FMOD_RESULT F_API FMOD_EventParameter_SetValue (FMOD_EVENTPARAMETER *eventparameter, float value); +FMOD_RESULT F_API FMOD_EventParameter_GetValue (FMOD_EVENTPARAMETER *eventparameter, float *value); +FMOD_RESULT F_API FMOD_EventParameter_SetVelocity (FMOD_EVENTPARAMETER *eventparameter, float value); +FMOD_RESULT F_API FMOD_EventParameter_GetVelocity (FMOD_EVENTPARAMETER *eventparameter, float *value); +FMOD_RESULT F_API FMOD_EventParameter_SetSeekSpeed (FMOD_EVENTPARAMETER *eventparameter, float value); +FMOD_RESULT F_API FMOD_EventParameter_GetSeekSpeed (FMOD_EVENTPARAMETER *eventparameter, float *value); +FMOD_RESULT F_API FMOD_EventParameter_SetUserData (FMOD_EVENTPARAMETER *eventparameter, void *userdata); +FMOD_RESULT F_API FMOD_EventParameter_GetUserData (FMOD_EVENTPARAMETER *eventparameter, void **userdata); +FMOD_RESULT F_API FMOD_EventParameter_KeyOff (FMOD_EVENTPARAMETER *eventparameter); + +FMOD_RESULT F_API FMOD_EventParameter_GetMemoryInfo (FMOD_EVENTPARAMETER *eventparameter, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'EventReverb' API +*/ + +FMOD_RESULT F_API FMOD_EventReverb_Release (FMOD_EVENTREVERB *eventreverb); +FMOD_RESULT F_API FMOD_EventReverb_Set3DAttributes (FMOD_EVENTREVERB *eventreverb, const FMOD_VECTOR *position, float mindistance, float maxdistance); +FMOD_RESULT F_API FMOD_EventReverb_Get3DAttributes (FMOD_EVENTREVERB *eventreverb, FMOD_VECTOR *position, float *mindistance, float *maxdistance); +FMOD_RESULT F_API FMOD_EventReverb_SetProperties (FMOD_EVENTREVERB *eventreverb, const FMOD_REVERB_PROPERTIES *props); +FMOD_RESULT F_API FMOD_EventReverb_GetProperties (FMOD_EVENTREVERB *eventreverb, FMOD_REVERB_PROPERTIES *props); +FMOD_RESULT F_API FMOD_EventReverb_SetActive (FMOD_EVENTREVERB *eventreverb, FMOD_BOOL active); +FMOD_RESULT F_API FMOD_EventReverb_GetActive (FMOD_EVENTREVERB *eventreverb, FMOD_BOOL *active); +FMOD_RESULT F_API FMOD_EventReverb_SetUserData (FMOD_EVENTREVERB *eventreverb, void *userdata); +FMOD_RESULT F_API FMOD_EventReverb_GetUserData (FMOD_EVENTREVERB *eventreverb, void **userdata); + +FMOD_RESULT F_API FMOD_EventReverb_GetMemoryInfo (FMOD_EVENTREVERB *eventreverb, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'EventQueue' API +*/ + +FMOD_RESULT F_API FMOD_EventQueue_Release (FMOD_EVENTQUEUE *eventqueue); +FMOD_RESULT F_API FMOD_EventQueue_Add (FMOD_EVENTQUEUE *eventqueue, FMOD_EVENTQUEUEENTRY *entry, FMOD_BOOL allow_duplicates); +FMOD_RESULT F_API FMOD_EventQueue_Remove (FMOD_EVENTQUEUE *eventqueue, FMOD_EVENTQUEUEENTRY *entry); +FMOD_RESULT F_API FMOD_EventQueue_RemoveHead (FMOD_EVENTQUEUE *eventqueue); +FMOD_RESULT F_API FMOD_EventQueue_Clear (FMOD_EVENTQUEUE *eventqueue, FMOD_BOOL stopallevents); +FMOD_RESULT F_API FMOD_EventQueue_FindFirstEntry (FMOD_EVENTQUEUE *eventqueue, FMOD_EVENTQUEUEENTRY **entry); +FMOD_RESULT F_API FMOD_EventQueue_FindNextEntry (FMOD_EVENTQUEUE *eventqueue, FMOD_EVENTQUEUEENTRY **entry); +FMOD_RESULT F_API FMOD_EventQueue_SetPaused (FMOD_EVENTQUEUE *eventqueue, FMOD_BOOL paused); +FMOD_RESULT F_API FMOD_EventQueue_GetPaused (FMOD_EVENTQUEUE *eventqueue, FMOD_BOOL *paused); +FMOD_RESULT F_API FMOD_EventQueue_IncludeDuckingCategory(FMOD_EVENTQUEUE *eventqueue, FMOD_EVENTCATEGORY *category, float ducked_volume, float unducked_volume, unsigned int duck_time, unsigned int unduck_time); +FMOD_RESULT F_API FMOD_EventQueue_ExcludeDuckingCategory(FMOD_EVENTQUEUE *eventqueue, FMOD_EVENTCATEGORY *category); +FMOD_RESULT F_API FMOD_EventQueue_SetCallback (FMOD_EVENTQUEUE *eventqueue, FMOD_EVENTQUEUE_CALLBACK callback, void *callbackuserdata); +FMOD_RESULT F_API FMOD_EventQueue_SetUserData (FMOD_EVENTQUEUE *eventqueue, void *userdata); +FMOD_RESULT F_API FMOD_EventQueue_GetUserData (FMOD_EVENTQUEUE *eventqueue, void **userdata); +FMOD_RESULT F_API FMOD_EventQueue_Dump (FMOD_EVENTQUEUE *eventqueue); + +FMOD_RESULT F_API FMOD_EventQueue_GetMemoryInfo (FMOD_EVENTQUEUE *eventqueue, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'EventQueueEntry' API +*/ + +FMOD_RESULT F_API FMOD_EventQueueEntry_Release (FMOD_EVENTQUEUEENTRY *eventqueueentry); +FMOD_RESULT F_API FMOD_EventQueueEntry_GetInfoOnlyEvent(FMOD_EVENTQUEUEENTRY *eventqueueentry, FMOD_EVENT **infoonlyevent); +FMOD_RESULT F_API FMOD_EventQueueEntry_GetRealEvent (FMOD_EVENTQUEUEENTRY *eventqueueentry, FMOD_EVENT **realevent); +FMOD_RESULT F_API FMOD_EventQueueEntry_SetPriority (FMOD_EVENTQUEUEENTRY *eventqueueentry, unsigned char priority); +FMOD_RESULT F_API FMOD_EventQueueEntry_GetPriority (FMOD_EVENTQUEUEENTRY *eventqueueentry, unsigned char *priority); +FMOD_RESULT F_API FMOD_EventQueueEntry_SetExpiryTime (FMOD_EVENTQUEUEENTRY *eventqueueentry, unsigned int expirytime); +FMOD_RESULT F_API FMOD_EventQueueEntry_GetExpiryTime (FMOD_EVENTQUEUEENTRY *eventqueueentry, unsigned int *expirytime); +FMOD_RESULT F_API FMOD_EventQueueEntry_SetDelayTime (FMOD_EVENTQUEUEENTRY *eventqueueentry, unsigned int delay); +FMOD_RESULT F_API FMOD_EventQueueEntry_GetDelayTime (FMOD_EVENTQUEUEENTRY *eventqueueentry, unsigned int *delay); +FMOD_RESULT F_API FMOD_EventQueueEntry_SetInterrupt (FMOD_EVENTQUEUEENTRY *eventqueueentry, FMOD_BOOL interrupt); +FMOD_RESULT F_API FMOD_EventQueueEntry_GetInterrupt (FMOD_EVENTQUEUEENTRY *eventqueueentry, FMOD_BOOL *interrupt); +FMOD_RESULT F_API FMOD_EventQueueEntry_SetCrossfadeTime(FMOD_EVENTQUEUEENTRY *eventqueueentry, int crossfade); +FMOD_RESULT F_API FMOD_EventQueueEntry_GetCrossfadeTime(FMOD_EVENTQUEUEENTRY *eventqueueentry, int *crossfade); +FMOD_RESULT F_API FMOD_EventQueueEntry_SetUserData (FMOD_EVENTQUEUEENTRY *eventqueueentry, void *userdata); +FMOD_RESULT F_API FMOD_EventQueueEntry_GetUserData (FMOD_EVENTQUEUEENTRY *eventqueueentry, void **userdata); + +FMOD_RESULT F_API FMOD_EventQueueEntry_GetMemoryInfo (FMOD_EVENTQUEUEENTRY *eventqueueentry, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'MusicSystem' API +*/ + +FMOD_RESULT F_API FMOD_MusicSystem_Reset (FMOD_MUSICSYSTEM *musicsystem); +FMOD_RESULT F_API FMOD_MusicSystem_SetVolume (FMOD_MUSICSYSTEM *musicsystem, float volume); +FMOD_RESULT F_API FMOD_MusicSystem_GetVolume (FMOD_MUSICSYSTEM *musicsystem, float *volume); +FMOD_RESULT F_API FMOD_MusicSystem_SetReverbProperties(FMOD_MUSICSYSTEM *musicsystem, const FMOD_REVERB_CHANNELPROPERTIES *props); +FMOD_RESULT F_API FMOD_MusicSystem_GetReverbProperties(FMOD_MUSICSYSTEM *musicsystem, FMOD_REVERB_CHANNELPROPERTIES *props); +FMOD_RESULT F_API FMOD_MusicSystem_SetPaused (FMOD_MUSICSYSTEM *musicsystem, FMOD_BOOL paused); +FMOD_RESULT F_API FMOD_MusicSystem_GetPaused (FMOD_MUSICSYSTEM *musicsystem, FMOD_BOOL *paused); +FMOD_RESULT F_API FMOD_MusicSystem_SetMute (FMOD_MUSICSYSTEM *musicsystem, FMOD_BOOL mute); +FMOD_RESULT F_API FMOD_MusicSystem_GetMute (FMOD_MUSICSYSTEM *musicsystem, FMOD_BOOL *mute); +FMOD_RESULT F_API FMOD_MusicSystem_GetInfo (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_INFO *info); +FMOD_RESULT F_API FMOD_MusicSystem_PromptCue (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_CUE_ID id); +FMOD_RESULT F_API FMOD_MusicSystem_PrepareCue (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_CUE_ID id, FMOD_MUSICPROMPT **prompt); +FMOD_RESULT F_API FMOD_MusicSystem_GetParameterValue (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_PARAM_ID id, float *parameter); +FMOD_RESULT F_API FMOD_MusicSystem_SetParameterValue (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_PARAM_ID id, float parameter); + +FMOD_RESULT F_API FMOD_MusicSystem_GetCues (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_ITERATOR *it, const char *filter); +FMOD_RESULT F_API FMOD_MusicSystem_GetNextCue (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_ITERATOR *it); +FMOD_RESULT F_API FMOD_MusicSystem_GetParameters (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_ITERATOR *it, const char *filter); +FMOD_RESULT F_API FMOD_MusicSystem_GetNextParameter (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_ITERATOR *it); + +FMOD_RESULT F_API FMOD_MusicSystem_LoadSoundData (FMOD_MUSICSYSTEM *musicsystem, FMOD_EVENT_RESOURCE resource, FMOD_EVENT_MODE mode); +FMOD_RESULT F_API FMOD_MusicSystem_FreeSoundData (FMOD_MUSICSYSTEM *musicsystem, FMOD_BOOL waituntilready); + +FMOD_RESULT F_API FMOD_MusicSystem_SetCallback (FMOD_MUSICSYSTEM *musicsystem, FMOD_MUSIC_CALLBACK callback, void *userdata); + +FMOD_RESULT F_API FMOD_MusicSystem_GetMemoryInfo (FMOD_MUSICSYSTEM *musicsystem, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + +/* + 'MusicPrompt' API +*/ + +FMOD_RESULT F_API FMOD_MusicPrompt_Release (FMOD_MUSICPROMPT *musicprompt); +FMOD_RESULT F_API FMOD_MusicPrompt_Begin (FMOD_MUSICPROMPT *musicprompt); +FMOD_RESULT F_API FMOD_MusicPrompt_End (FMOD_MUSICPROMPT *musicprompt); +FMOD_RESULT F_API FMOD_MusicPrompt_IsActive (FMOD_MUSICPROMPT *musicprompt, FMOD_BOOL *active); + +FMOD_RESULT F_API FMOD_MusicPrompt_GetMemoryInfo (FMOD_MUSICPROMPT *musicprompt, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); +/*$ preserve start $*/ + +#ifdef __cplusplus +} +#endif + + +#endif + +/*$ preserve end $*/ diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event.hpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event.hpp new file mode 100644 index 0000000000..b419d6df39 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event.hpp @@ -0,0 +1,395 @@ +/* + fmod_event.hpp - Data-driven event classes + Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. + + This header is the base header for all other FMOD EventSystem headers. If you are programming in C use FMOD_EVENT.H +*/ + +#ifndef __FMOD_EVENT_HPP__ +#define __FMOD_EVENT_HPP__ + +#ifndef _FMOD_HPP +#include "fmod.hpp" +#endif +#ifndef __FMOD_EVENT_H__ +#include "fmod_event.h" +#endif + +namespace FMOD +{ + class EventSystem; + class EventCategory; + class EventProject; + class EventGroup; + class Event; + class EventParameter; + class EventReverb; + class EventQueue; + class EventQueueEntry; + class MusicSystem; + class MusicPrompt; + + /* + FMOD EventSystem factory functions. + */ + inline FMOD_RESULT EventSystem_Create(EventSystem **eventsystem) { return FMOD_EventSystem_Create((FMOD_EVENTSYSTEM **)eventsystem); } + + /* + 'EventSystem' API + */ + class EventSystem + { + public : + + // Initialization / system functions. + FMOD_RESULT F_API init (int maxchannels, FMOD_INITFLAGS flags, void *extradriverdata, FMOD_EVENT_INITFLAGS eventflags = FMOD_EVENT_INIT_NORMAL); + FMOD_RESULT F_API release (); + FMOD_RESULT F_API update (); + FMOD_RESULT F_API setMediaPath (const char *path); + FMOD_RESULT F_API setPluginPath (const char *path); + FMOD_RESULT F_API getVersion (unsigned int *version); + FMOD_RESULT F_API getInfo (FMOD_EVENT_SYSTEMINFO *info); + FMOD_RESULT F_API getSystemObject (System **system); + FMOD_RESULT F_API getMusicSystem (MusicSystem **musicsystem); + FMOD_RESULT F_API setLanguage (const char *language); + FMOD_RESULT F_API getLanguage (char *language); + + // FEV load/unload. + FMOD_RESULT F_API load (const char *name_or_data, FMOD_EVENT_LOADINFO *loadinfo, EventProject **project); + FMOD_RESULT F_API unload (); + + // Event,EventGroup,EventCategory Retrieval. + FMOD_RESULT F_API getProject (const char *name, EventProject **project); + FMOD_RESULT F_API getProjectByIndex (int index, EventProject **project); + FMOD_RESULT F_API getNumProjects (int *numprojects); + FMOD_RESULT F_API getCategory (const char *name, EventCategory **category); + FMOD_RESULT F_API getCategoryByIndex (int index, EventCategory **category); + FMOD_RESULT F_API getMusicCategory (EventCategory **category); + FMOD_RESULT F_API getNumCategories (int *numcategories); + FMOD_RESULT F_API getGroup (const char *name, bool cacheevents, EventGroup **group); + FMOD_RESULT F_API getEvent (const char *name, FMOD_EVENT_MODE mode, Event **event); + FMOD_RESULT F_API getEventBySystemID (unsigned int systemid, FMOD_EVENT_MODE mode, Event **event); + FMOD_RESULT F_API getEventByGUID (const FMOD_GUID *guid, FMOD_EVENT_MODE mode, Event **event); + FMOD_RESULT F_API getEventByGUIDString (const char *guid, FMOD_EVENT_MODE mode, Event **event); + FMOD_RESULT F_API getNumEvents (int *numevents); + + // Reverb interfaces. + FMOD_RESULT F_API setReverbProperties (const FMOD_REVERB_PROPERTIES *props); + FMOD_RESULT F_API getReverbProperties (FMOD_REVERB_PROPERTIES *props); + + FMOD_RESULT F_API getReverbPreset (const char *name, FMOD_REVERB_PROPERTIES *props, int *index = 0); + FMOD_RESULT F_API getReverbPresetByIndex (const int index, FMOD_REVERB_PROPERTIES *props, char **name = 0); + FMOD_RESULT F_API getNumReverbPresets (int *numpresets); + + FMOD_RESULT F_API createReverb (EventReverb **reverb); + FMOD_RESULT F_API setReverbAmbientProperties(FMOD_REVERB_PROPERTIES *props); + FMOD_RESULT F_API getReverbAmbientProperties(FMOD_REVERB_PROPERTIES *props); + + // Event queue interfaces. + FMOD_RESULT F_API createEventQueue (EventQueue **queue); + FMOD_RESULT F_API createEventQueueEntry (Event *event, EventQueueEntry **entry); + + // 3D Listener interface. + FMOD_RESULT F_API set3DNumListeners (int numlisteners); + FMOD_RESULT F_API get3DNumListeners (int *numlisteners); + FMOD_RESULT F_API set3DListenerAttributes (int listener, const FMOD_VECTOR *pos, const FMOD_VECTOR *vel, const FMOD_VECTOR *forward, const FMOD_VECTOR *up); + FMOD_RESULT F_API get3DListenerAttributes (int listener, FMOD_VECTOR *pos, FMOD_VECTOR *vel, FMOD_VECTOR *forward, FMOD_VECTOR *up); + + // Get/set user data + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + // Pre-loading FSB files (from disk or from memory, use FMOD_OPENMEMORY_POINT to point to pre-loaded memory). + FMOD_RESULT F_API preloadFSB (const char *filename, int streaminstance, Sound *sound); + FMOD_RESULT F_API unloadFSB (const char *filename, int streaminstance); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + /* + 'EventProject' API + */ + class EventProject + { + public : + + virtual FMOD_RESULT F_API release () = 0; + virtual FMOD_RESULT F_API getInfo (FMOD_EVENT_PROJECTINFO *info) = 0; + virtual FMOD_RESULT F_API getGroup (const char *name, bool cacheevents, EventGroup **group) = 0; + virtual FMOD_RESULT F_API getGroupByIndex (int index, bool cacheevents, EventGroup **group) = 0; + virtual FMOD_RESULT F_API getNumGroups (int *numgroups) = 0; + virtual FMOD_RESULT F_API getEvent (const char *name, FMOD_EVENT_MODE mode, Event **event) = 0; + virtual FMOD_RESULT F_API getEventByProjectID(unsigned int projectid, FMOD_EVENT_MODE mode, Event **event) = 0; + virtual FMOD_RESULT F_API getNumEvents (int *numevents) = 0; + virtual FMOD_RESULT F_API loadSampleData (int *eventid_array, int sizeof_eventid_array, char **groupname_array, int sizeof_groupname_array, FMOD_EVENT_MODE eventmode) = 0; + virtual FMOD_RESULT F_API stopAllEvents (bool immediate = false) = 0; + virtual FMOD_RESULT F_API cancelAllLoads () = 0; + virtual FMOD_RESULT F_API setUserData (void *userdata) = 0; + virtual FMOD_RESULT F_API getUserData (void **userdata) = 0; + + virtual FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details) = 0; + virtual ~EventProject(){}; + }; + + /* + 'EventGroup' API + */ + class EventGroup + { + public : + + virtual FMOD_RESULT F_API getInfo (int *index, char **name) = 0; + virtual FMOD_RESULT F_API loadEventData (FMOD_EVENT_RESOURCE resource = FMOD_EVENT_RESOURCE_STREAMS_AND_SAMPLES, FMOD_EVENT_MODE mode = FMOD_EVENT_DEFAULT) = 0; + virtual FMOD_RESULT F_API freeEventData (Event *event = 0, bool waituntilready = true) = 0; + virtual FMOD_RESULT F_API getGroup (const char *name, bool cacheevents, EventGroup **group) = 0; + virtual FMOD_RESULT F_API getGroupByIndex (int index, bool cacheevents, EventGroup **group) = 0; + virtual FMOD_RESULT F_API getParentGroup (EventGroup **group) = 0; + virtual FMOD_RESULT F_API getParentProject (EventProject **project) = 0; + virtual FMOD_RESULT F_API getNumGroups (int *numgroups) = 0; + virtual FMOD_RESULT F_API getEvent (const char *name, FMOD_EVENT_MODE mode, Event **event) = 0; + virtual FMOD_RESULT F_API getEventByIndex (int index, FMOD_EVENT_MODE mode, Event **event) = 0; + virtual FMOD_RESULT F_API getNumEvents (int *numevents) = 0; + virtual FMOD_RESULT F_API getProperty (const char *propertyname, void *value) = 0; + virtual FMOD_RESULT F_API getPropertyByIndex (int propertyindex, void *value) = 0; + virtual FMOD_RESULT F_API getNumProperties (int *numproperties) = 0; + virtual FMOD_RESULT F_API getState (FMOD_EVENT_STATE *state) = 0; + virtual FMOD_RESULT F_API setUserData (void *userdata) = 0; + virtual FMOD_RESULT F_API getUserData (void **userdata) = 0; + + virtual FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details) = 0; + virtual ~EventGroup(){}; + }; + + /* + 'EventCategory' API + */ + class EventCategory + { + public : + + virtual FMOD_RESULT F_API getInfo (int *index, char **name) = 0; + virtual FMOD_RESULT F_API getCategory (const char *name, EventCategory **category) = 0; + virtual FMOD_RESULT F_API getCategoryByIndex (int index, EventCategory **category) = 0; + virtual FMOD_RESULT F_API getNumCategories (int *numcategories) = 0; + virtual FMOD_RESULT F_API getEventByIndex (int index, FMOD_EVENT_MODE mode, Event **event) = 0; + virtual FMOD_RESULT F_API getNumEvents (int *numevents) = 0; + virtual FMOD_RESULT F_API getParentCategory (EventCategory **category) = 0; + + virtual FMOD_RESULT F_API stopAllEvents () = 0; + virtual FMOD_RESULT F_API setVolume (float volume) = 0; + virtual FMOD_RESULT F_API getVolume (float *volume) = 0; + virtual FMOD_RESULT F_API setPitch (float pitch, FMOD_EVENT_PITCHUNITS units = FMOD_EVENT_PITCHUNITS_RAW) = 0; + virtual FMOD_RESULT F_API getPitch (float *pitch, FMOD_EVENT_PITCHUNITS units = FMOD_EVENT_PITCHUNITS_RAW) = 0; + virtual FMOD_RESULT F_API setPaused (bool paused) = 0; + virtual FMOD_RESULT F_API getPaused (bool *paused) = 0; + virtual FMOD_RESULT F_API setMute (bool mute) = 0; + virtual FMOD_RESULT F_API getMute (bool *mute) = 0; + virtual FMOD_RESULT F_API getChannelGroup (ChannelGroup **channelgroup) = 0; + virtual FMOD_RESULT F_API setUserData (void *userdata) = 0; + virtual FMOD_RESULT F_API getUserData (void **userdata) = 0; + + virtual FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details) = 0; + virtual ~EventCategory(){}; + }; + + /* + 'Event' API + */ + class Event + { + public : + + FMOD_RESULT F_API release (bool freeeventdata = false, bool waituntilready = true); + + FMOD_RESULT F_API start (); + FMOD_RESULT F_API stop (bool immediate = false); + + FMOD_RESULT F_API getInfo (int *index, char **name, FMOD_EVENT_INFO *info); + FMOD_RESULT F_API getState (FMOD_EVENT_STATE *state); + FMOD_RESULT F_API getParentGroup (EventGroup **group); + FMOD_RESULT F_API getChannelGroup (ChannelGroup **channelgroup); + FMOD_RESULT F_API setCallback (FMOD_EVENT_CALLBACK callback, void *userdata); + + FMOD_RESULT F_API getParameter (const char *name, EventParameter **parameter); + FMOD_RESULT F_API getParameterByIndex (int index, EventParameter **parameter); + FMOD_RESULT F_API getNumParameters (int *numparameters); + FMOD_RESULT F_API getProperty (const char *propertyname, void *value, bool this_instance = false); + FMOD_RESULT F_API getPropertyByIndex (int propertyindex, void *value, bool this_instance = false); + FMOD_RESULT F_API setProperty (const char *propertyname, void *value, bool this_instance = false); + FMOD_RESULT F_API setPropertyByIndex (int propertyindex, void *value, bool this_instance = false); + FMOD_RESULT F_API getNumProperties (int *numproperties); + FMOD_RESULT F_API getPropertyInfo (int *propertyindex, char **propertyname, FMOD_EVENTPROPERTY_TYPE *type = 0); + FMOD_RESULT F_API getCategory (EventCategory **category); + + FMOD_RESULT F_API setVolume (float volume); + FMOD_RESULT F_API getVolume (float *volume); + FMOD_RESULT F_API setPitch (float pitch, FMOD_EVENT_PITCHUNITS units = FMOD_EVENT_PITCHUNITS_RAW); + FMOD_RESULT F_API getPitch (float *pitch, FMOD_EVENT_PITCHUNITS units = FMOD_EVENT_PITCHUNITS_RAW); + FMOD_RESULT F_API setPaused (bool paused); + FMOD_RESULT F_API getPaused (bool *paused); + FMOD_RESULT F_API setMute (bool mute); + FMOD_RESULT F_API getMute (bool *mute); + FMOD_RESULT F_API set3DAttributes (const FMOD_VECTOR *position, const FMOD_VECTOR *velocity, const FMOD_VECTOR *orientation = 0); + FMOD_RESULT F_API get3DAttributes (FMOD_VECTOR *position, FMOD_VECTOR *velocity, FMOD_VECTOR *orientation = 0); + FMOD_RESULT F_API set3DOcclusion (float directocclusion, float reverbocclusion); + FMOD_RESULT F_API get3DOcclusion (float *directocclusion, float *reverbocclusion); + FMOD_RESULT F_API setReverbProperties (const FMOD_REVERB_CHANNELPROPERTIES *props); + FMOD_RESULT F_API getReverbProperties (FMOD_REVERB_CHANNELPROPERTIES *props); + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + /* + 'EventParameter' API + */ + class EventParameter + { + public : + + FMOD_RESULT F_API getInfo (int *index, char **name); + FMOD_RESULT F_API getRange (float *rangemin, float *rangemax); + FMOD_RESULT F_API setValue (float value); + FMOD_RESULT F_API getValue (float *value); + FMOD_RESULT F_API setVelocity (float value); + FMOD_RESULT F_API getVelocity (float *value); + FMOD_RESULT F_API setSeekSpeed (float value); + FMOD_RESULT F_API getSeekSpeed (float *value); + FMOD_RESULT F_API setUserData (void *userdata); + FMOD_RESULT F_API getUserData (void **userdata); + FMOD_RESULT F_API keyOff (); + + FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details); + }; + + /* + 'EventReverb ' API + */ + class EventReverb + { + public : + + virtual FMOD_RESULT F_API release () = 0; + virtual FMOD_RESULT F_API set3DAttributes (const FMOD_VECTOR *position, float mindistance, float maxdistance) = 0; + virtual FMOD_RESULT F_API get3DAttributes (FMOD_VECTOR *position, float *mindistance,float *maxdistance) = 0; + virtual FMOD_RESULT F_API setProperties (const FMOD_REVERB_PROPERTIES *props) = 0; + virtual FMOD_RESULT F_API getProperties (FMOD_REVERB_PROPERTIES *props) = 0; + virtual FMOD_RESULT F_API setActive (bool active) = 0; + virtual FMOD_RESULT F_API getActive (bool *active) = 0; + virtual FMOD_RESULT F_API setUserData (void *userdata) = 0; + virtual FMOD_RESULT F_API getUserData (void **userdata) = 0; + + virtual FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details) = 0; + virtual ~EventReverb(){}; + }; + + /* + 'EventQueue' API + */ + class EventQueue + { + public : + + virtual FMOD_RESULT F_API release () = 0; + virtual FMOD_RESULT F_API add (EventQueueEntry *entry, bool allow_duplicates = true) = 0; + virtual FMOD_RESULT F_API remove (EventQueueEntry *entry) = 0; + virtual FMOD_RESULT F_API removeHead () = 0; + virtual FMOD_RESULT F_API clear (bool stopallevents = true) = 0; + virtual FMOD_RESULT F_API findFirstEntry (EventQueueEntry **entry) = 0; + virtual FMOD_RESULT F_API findNextEntry (EventQueueEntry **entry) = 0; + virtual FMOD_RESULT F_API setPaused (bool paused) = 0; + virtual FMOD_RESULT F_API getPaused (bool *paused) = 0; + virtual FMOD_RESULT F_API includeDuckingCategory (EventCategory *category, float ducked_volume, float unducked_volume, unsigned int duck_time, unsigned int unduck_time) = 0; + virtual FMOD_RESULT F_API excludeDuckingCategory (EventCategory *category) = 0; + virtual FMOD_RESULT F_API setCallback (FMOD_EVENTQUEUE_CALLBACK callback, void *callbackuserdata) = 0; + virtual FMOD_RESULT F_API setUserData (void *userdata) = 0; + virtual FMOD_RESULT F_API getUserData (void **userdata) = 0; + virtual FMOD_RESULT F_API dump () = 0; + + virtual FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details) = 0; + virtual ~EventQueue(){}; + }; + + /* + 'EventQueueEntry' API + */ + class EventQueueEntry + { + public : + + virtual FMOD_RESULT F_API release () = 0; + virtual FMOD_RESULT F_API getInfoOnlyEvent (Event **infoonlyevent) = 0; + virtual FMOD_RESULT F_API getRealEvent (Event **realevent) = 0; + virtual FMOD_RESULT F_API setPriority (unsigned char priority) = 0; + virtual FMOD_RESULT F_API getPriority (unsigned char *priority) = 0; + virtual FMOD_RESULT F_API setExpiryTime (unsigned int expirytime) = 0; + virtual FMOD_RESULT F_API getExpiryTime (unsigned int *expirytime) = 0; + virtual FMOD_RESULT F_API setDelayTime (unsigned int delay) = 0; + virtual FMOD_RESULT F_API getDelayTime (unsigned int *delay) = 0; + virtual FMOD_RESULT F_API setInterrupt (bool interrupt) = 0; + virtual FMOD_RESULT F_API getInterrupt (bool *interrupt) = 0; + virtual FMOD_RESULT F_API setCrossfadeTime (int crossfade) = 0; + virtual FMOD_RESULT F_API getCrossfadeTime (int *crossfade) = 0; + virtual FMOD_RESULT F_API setUserData (void *userdata) = 0; + virtual FMOD_RESULT F_API getUserData (void **userdata) = 0; + + virtual FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details) = 0; + virtual ~EventQueueEntry(){}; + }; + + /* + 'MusicSystem' API + */ + class MusicSystem + { + public : + + virtual FMOD_RESULT F_API reset () = 0; + virtual FMOD_RESULT F_API setVolume (float volume) = 0; + virtual FMOD_RESULT F_API getVolume (float *volume) = 0; + virtual FMOD_RESULT F_API setReverbProperties(const FMOD_REVERB_CHANNELPROPERTIES *props) = 0; + virtual FMOD_RESULT F_API getReverbProperties(FMOD_REVERB_CHANNELPROPERTIES *props) = 0; + virtual FMOD_RESULT F_API setPaused (bool paused) = 0; + virtual FMOD_RESULT F_API getPaused (bool *paused) = 0; + virtual FMOD_RESULT F_API setMute (bool mute) = 0; + virtual FMOD_RESULT F_API getMute (bool *mute) = 0; + virtual FMOD_RESULT F_API getInfo (FMOD_MUSIC_INFO *info) = 0; + virtual FMOD_RESULT F_API promptCue (FMOD_MUSIC_CUE_ID id) = 0; + virtual FMOD_RESULT F_API prepareCue (FMOD_MUSIC_CUE_ID id, MusicPrompt **prompt) = 0; + virtual FMOD_RESULT F_API getParameterValue (FMOD_MUSIC_PARAM_ID id, float *parameter) = 0; + virtual FMOD_RESULT F_API setParameterValue (FMOD_MUSIC_PARAM_ID id, float parameter) = 0; + + virtual FMOD_RESULT F_API getCues (FMOD_MUSIC_ITERATOR *it, const char *filter = 0) = 0; + virtual FMOD_RESULT F_API getNextCue (FMOD_MUSIC_ITERATOR *it) = 0; + virtual FMOD_RESULT F_API getParameters (FMOD_MUSIC_ITERATOR *it, const char *filter = 0) = 0; + virtual FMOD_RESULT F_API getNextParameter (FMOD_MUSIC_ITERATOR *it) = 0; + + virtual FMOD_RESULT F_API loadSoundData (FMOD_EVENT_RESOURCE resource = FMOD_EVENT_RESOURCE_SAMPLES, FMOD_EVENT_MODE mode = FMOD_EVENT_DEFAULT) = 0; + virtual FMOD_RESULT F_API freeSoundData (bool waituntilready = true) = 0; + + virtual FMOD_RESULT F_API setCallback (FMOD_MUSIC_CALLBACK callback, void *userdata) = 0; + + virtual FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details) = 0; + virtual ~MusicSystem(){}; + }; + + /* + 'MusicPrompt' API + */ + class MusicPrompt + { + public : + + virtual FMOD_RESULT F_API release () = 0; + virtual FMOD_RESULT F_API begin () = 0; + virtual FMOD_RESULT F_API end () = 0; + virtual FMOD_RESULT F_API isActive (bool *active) = 0; + + virtual FMOD_RESULT F_API getMemoryInfo (unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details) = 0; + virtual ~MusicPrompt(){}; + }; +} + + +#endif diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event_net.h b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event_net.h new file mode 100644 index 0000000000..d912355338 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event_net.h @@ -0,0 +1,42 @@ +/* ============================================================================================ */ +/* FMOD Ex - Main C/C++ Network event system header file. */ +/* Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */ +/* */ +/* This header is the base header for all other FMOD NetEventSystem headers. If you are */ +/* programming in C use this exclusively, or if you are programming C++ use this in */ +/* conjunction with FMOD_EVENT_NET.HPP */ +/* ============================================================================================ */ + +#ifndef __FMOD_EVENT_NET_H__ +#define __FMOD_EVENT_NET_H__ + +#ifndef __FMOD_EVENT_H__ +#include "fmod_event.h" +#endif + +/* + FMOD NetEventSystem version number. Check this against NetEventSystem_GetVersion. + 0xaaaabbcc -> aaaa = major version number. bb = minor version number. cc = development version number. +*/ +#define FMOD_EVENT_NET_VERSION 0x00043601 + +/* + Default port that the target (game) will listen on +*/ +#define FMOD_EVENT_NET_PORT 17997 + +#ifdef __cplusplus +extern "C" +{ +#endif + +FMOD_RESULT F_API FMOD_NetEventSystem_Init (FMOD_EVENTSYSTEM *eventsystem, unsigned short port); +FMOD_RESULT F_API FMOD_NetEventSystem_Update (); +FMOD_RESULT F_API FMOD_NetEventSystem_Shutdown (); +FMOD_RESULT F_API FMOD_NetEventSystem_GetVersion (unsigned int *version); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event_net.hpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event_net.hpp new file mode 100644 index 0000000000..77a7ac16b0 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/inc/fmod_event_net.hpp @@ -0,0 +1,26 @@ +/* ============================================================================================ */ +/* FMOD Ex - Main C/C++ Network event system header file. */ +/* Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */ +/* */ +/* Use this header to enable network tweaking and auditioning in realtime from FMOD Designer. */ +/* If you are programming in C use FMOD_EVENT_NET.H */ +/* ============================================================================================ */ + +#ifndef __FMOD_EVENT_NET_HPP__ +#define __FMOD_EVENT_NET_HPP__ + +#ifndef __FMOD_EVENT_NET_H__ +#include "fmod_event_net.h" +#endif + +namespace FMOD +{ + class EventSystem; + + FMOD_RESULT F_API NetEventSystem_Init (EventSystem *eventsystem, unsigned short port = FMOD_EVENT_NET_PORT); + FMOD_RESULT F_API NetEventSystem_Update (); + FMOD_RESULT F_API NetEventSystem_Shutdown (); + FMOD_RESULT F_API NetEventSystem_GetVersion (unsigned int *version); +} + +#endif diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/api/lib/libfmodevent-4.36.01.so.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/lib/libfmodevent-4.36.01.so.REMOVED.git-id new file mode 100644 index 0000000000..f4fa4d5f22 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/lib/libfmodevent-4.36.01.so.REMOVED.git-id @@ -0,0 +1 @@ +5de969cbd3cf8dd7afcf9ed3b5c9176e6ab4a0b8 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/api/lib/libfmodeventL-4.36.01.so.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/lib/libfmodeventL-4.36.01.so.REMOVED.git-id new file mode 100644 index 0000000000..75bee35a5e --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/api/lib/libfmodeventL-4.36.01.so.REMOVED.git-id @@ -0,0 +1 @@ +b10592ed23696425641c66cba34a2ce7d3dd6918 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/RUN_BUILD_MEDIA_FILES.txt b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/RUN_BUILD_MEDIA_FILES.txt new file mode 100644 index 0000000000..9ee542f148 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/RUN_BUILD_MEDIA_FILES.txt @@ -0,0 +1 @@ +Run the build_media_files.sh shell script (in the media directory ./media) to build the media files required for these examples. diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/effects/Makefile b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/effects/Makefile new file mode 100644 index 0000000000..9dcba5c86d --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/effects/Makefile @@ -0,0 +1,8 @@ +all: main.cpp + g++ -O3 -o effects -I../../../api/inc main.cpp ../../api/lib/libfmodevent.so -Wl,-rpath ../../../api/lib + +run: + ./effects + +clean: + rm -f effects diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/effects/main.cpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/effects/main.cpp new file mode 100644 index 0000000000..e9cc23b802 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/effects/main.cpp @@ -0,0 +1,99 @@ +/*=============================================================================================== + Effects Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + Demonstrates basic usage of event effects +===============================================================================================*/ +#include "../../../examples/common/wincompat.h" + +#include "../../api/inc/fmod_event.hpp" +#include "../../../api/inc/fmod_errors.h" + +const float UPDATE_INTERVAL = 100.0f; + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::EventSystem *eventsystem; + FMOD::Event *event; + FMOD::EventParameter *param00; + FMOD_RESULT result; + int key; + float param00_val, param00_min, param00_max, param00_increment; + + printf("======================================================================\n"); + printf("Effects Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==============================-------=================================\n"); + printf("This demonstrates the use of FMOD event effects. It simply plays an\n"); + printf("event with effects applied and allows the user to adjust the parameters.\n"); + printf("======================================================================\n\n"); + + ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem)); + ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL)); + ERRCHECK(result = eventsystem->setMediaPath("../media/")); + ERRCHECK(result = eventsystem->load("examples.fev", 0, 0)); + ERRCHECK(result = eventsystem->getEvent("examples/FeatureDemonstration/Effects/PropertyAutomationEffectEnvelope", FMOD_EVENT_DEFAULT, &event)); + ERRCHECK(result = event->getParameter("param00", ¶m00)); + ERRCHECK(result = param00->getRange(¶m00_min, ¶m00_max)); + ERRCHECK(result = param00->setValue(0.0f)); + ERRCHECK(result = event->start()); + + printf("======================================================================\n"); + printf("Press '<' or ',' to decrease param00\n"); + printf("Press '>' or '.' to increase param00\n"); + printf("Press ESC to quit\n"); + printf("======================================================================\n"); + + param00_increment = (param00_max - param00_min) / UPDATE_INTERVAL; + ERRCHECK(result = param00->getValue(¶m00_val)); + + key = 0; + do + { + if (_kbhit()) + { + key = _getch(); + + if (key == '<' || key == ',') + { + param00_val -= param00_increment; + if (param00_val < param00_min) + { + param00_val = param00_min; + } + + ERRCHECK(result = param00->setValue(param00_val)); + } + else if (key == '>' || key == '.') + { + param00_val += param00_increment; + if (param00_val > param00_max) + { + param00_val = param00_max; + } + + ERRCHECK(result = param00->setValue(param00_val)); + } + } + + ERRCHECK(result = eventsystem->update()); + Sleep(15); + + printf("param00 = %.4f \r", param00_val); + fflush(stdout); + + } while (key != 27); + + ERRCHECK(result = eventsystem->release()); + return 0; +} diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/examples.fdp.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/examples.fdp.REMOVED.git-id new file mode 100644 index 0000000000..252d47f4fc --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/examples.fdp.REMOVED.git-id @@ -0,0 +1 @@ +43792cb1642846d4b3d83b8720e43c2e4b7730b5 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/info_only/Makefile b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/info_only/Makefile new file mode 100644 index 0000000000..0426f8d042 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/info_only/Makefile @@ -0,0 +1,8 @@ +all: main.cpp + g++ -O3 -o info_only -I../../../api/inc main.cpp ../../api/lib/libfmodevent.so -Wl,-rpath ../../../api/lib + +run: + ./info_only + +clean: + rm -f info_only diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/info_only/main.cpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/info_only/main.cpp new file mode 100644 index 0000000000..5a8813a9c5 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/info_only/main.cpp @@ -0,0 +1,210 @@ +/*=============================================================================================== + Info-only Event Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + Demonstrates usage and functionality of info-only events +===============================================================================================*/ +#include "../../../examples/common/wincompat.h" + +#include "../../api/inc/fmod_event.hpp" +#include "../../../api/inc/fmod_errors.h" + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::EventSystem *eventsystem; + FMOD::EventGroup *eventgroup; + FMOD::Event *event = 0; + FMOD_RESULT result; + int key; + + printf("======================================================================\n"); + printf("Info-only Event Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==============================-------=================================\n"); + printf("This demonstrates usage and functionality of info-only events.\n"); + printf("======================================================================\n\n"); + + ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem)); + ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL)); + ERRCHECK(result = eventsystem->setMediaPath("../media/")); + ERRCHECK(result = eventsystem->load("examples.fev", 0, 0)); + ERRCHECK(result = eventsystem->getGroup("examples/FeatureDemonstration/Basics", false, &eventgroup)); + + printf("======================================================================\n"); + printf("Press 'i' to get an info-only event\n"); + printf("Press 'e' to get an event instance\n"); + printf("Press 'u' to unload all event data\n"); + printf("Press '1' - '0' to set event volume between 10%% - 100%%\n"); + printf("Press Space to start/stop the current event\n"); + printf("Press ESC to quit\n"); + printf("======================================================================\n"); + + bool state_changed = true; + + key = 0; + do + { + if (_kbhit()) + { + + key = _getch(); + + if (key == 'i') + { + /* Get an info-only event. + Notes: + - This is the parent from which all instances of the + specified event are derived. + - This call will not allocate memory for event instances or + load sample data. + - The resulting event cannot be played, it simply allows + querying and setting of event properties. + - Any properties which are set on the info-only event will be + copied to all instances which are retrieved from then on. + */ + ERRCHECK(result = eventgroup->getEvent("BasicEventWithLooping", FMOD_EVENT_INFOONLY, &event)); + printf("getEvent(FMOD_EVENT_INFOONLY) succeeded\n"); + state_changed = true; + } + else if (key == 'e') + { + /* Get an event instance. + Notes: + - This call will allocate memory for event instances and + load sample data if required. + - The resulting event can be played. + - Any properties which have been set on the info-only event + will be copied to this instance. + */ + ERRCHECK(result = eventgroup->getEvent("BasicEventWithLooping", FMOD_EVENT_DEFAULT, &event)); + printf("getEvent(FMOD_EVENT_DEFAULT) succeeded\n"); + state_changed = true; + } + else if (key == ' ') + { + if (event) + { + FMOD_EVENT_STATE state; + + result = event->getState(&state); + if (result != FMOD_ERR_INVALID_HANDLE) + { + ERRCHECK(result); + } + + if (state & FMOD_EVENT_STATE_PLAYING) + { + /* Attempt to stop the event. + - This will fail if the event is info-only. + */ + result = event->stop(); + if(result == FMOD_OK) + { + printf("event->stop() succeeded\n"); + state_changed = true; + } + else + { + printf("event->stop() returned an error:\n\t(%d) %s\n", result, FMOD_ErrorString(result)); + } + } + else + { + /* Attempt to start the event. + - This will fail if the event is info-only. + */ + result = event->start(); + if (result == FMOD_OK) + { + printf("event->start() succeeded\n"); + state_changed = true; + } + else + { + printf("event->start() returned an error:\n\t(%d) %s\n", result, FMOD_ErrorString(result)); + } + } + } + } + else if (key >= '0' && key <= '9') + { + /* Attempt to set the event's volume. + - This will succeed on both info-only events and instances. + - Volume set on the info-only event will be copied to + all instances retrieved from now on. + - Volume set on an instance will only apply to that instance. + */ + float volume = (float)(key - '0'); + + if (volume == 0) + { + volume = 10.0f; + } + + volume /= 10.0f; + + result = event->setVolume(volume); + if (result == FMOD_OK) + { + printf("event->setVolume() succeeded\n"); + state_changed = true; + } + else + { + printf("event->setVolume() returned an error:\n\t(%d) %s\n", result, FMOD_ErrorString(result)); + } + } + else if (key == 'u') + { + ERRCHECK(result = eventgroup->freeEventData()); + printf("Event data unloaded\n"); + state_changed = true; + } + + } + + if (state_changed) + { + int memory_current, memory_max; + ERRCHECK(result = FMOD::Memory_GetStats(&memory_current, &memory_max)); + + printf("Memory usage: current = %10d, max = %10d\n", memory_current, memory_max); + + if (event) + { + /* Attempt to get the event's volume. + - This will succeed on both info-only events and instances. + */ + float volume; + + result = event->getVolume(&volume); + if (result != FMOD_ERR_INVALID_HANDLE) + { + ERRCHECK(result); + printf("Volume: %.2f\n", volume); + } + } + + state_changed = false; + } + + ERRCHECK(result = eventsystem->update()); + fflush(stdout); + Sleep(15); + + } while (key != 27); + + ERRCHECK(result = eventgroup->freeEventData()); + ERRCHECK(result = eventsystem->release()); + return 0; +} diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/load_data/Makefile b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/load_data/Makefile new file mode 100644 index 0000000000..19f0f08447 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/load_data/Makefile @@ -0,0 +1,8 @@ +all: main.cpp + g++ -O3 -o load_data -I../../../api/inc main.cpp ../../api/lib/libfmodevent.so -Wl,-rpath ../../../api/lib + +run: + ./load_data + +clean: + rm -f load_data diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/load_data/main.cpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/load_data/main.cpp new file mode 100644 index 0000000000..352711db79 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/load_data/main.cpp @@ -0,0 +1,115 @@ +/*=============================================================================================== + Load Event Data Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + Demonstrates basic loading and unloading of event data per event +===============================================================================================*/ +#include "../../../examples/common/wincompat.h" + +#include "../../api/inc/fmod_event.hpp" +#include "../../../api/inc/fmod_errors.h" + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::EventSystem *eventsystem; + FMOD::EventGroup *eventgroup; + FMOD::Event *event = 0; + FMOD_RESULT result; + int key; + + printf("======================================================================\n"); + printf("Load Event Data Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==============================-------=================================\n"); + printf("This demonstrates loading and unloading of event data per event and\n"); + printf("per group.\n"); + printf("======================================================================\n\n"); + + ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem)); + ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL)); + ERRCHECK(result = eventsystem->setMediaPath("../media/")); + ERRCHECK(result = eventsystem->load("examples.fev", 0, 0)); + ERRCHECK(result = eventsystem->getGroup("examples/FeatureDemonstration/Basics", false, &eventgroup)); + + printf("======================================================================\n"); + printf("Press 'e' to load event data\n"); + printf("Press 'E' to unload event data\n"); + printf("Press 'g' to load group data\n"); + printf("Press 'G' to unload group data\n"); + printf("Press ESC to quit\n"); + printf("======================================================================\n"); + + bool memory_changed = true; + + key = 0; + do + { + if (_kbhit()) + { + + key = _getch(); + + if (key == 'e') + { + ERRCHECK(result = eventgroup->getEvent("SimpleEvent", FMOD_EVENT_DEFAULT, &event)); + printf("Event data loaded\n"); + memory_changed = true; + } + else if (key == 'E') + { + if (event) + { + result = eventgroup->freeEventData(event); + if (result != FMOD_ERR_INVALID_HANDLE) + { + ERRCHECK(result); + printf("Event data unloaded\n"); + memory_changed = true; + } + event = 0; + } + } + else if (key == 'g') + { + ERRCHECK(result = eventgroup->loadEventData()); + printf("Event group data loaded\n"); + memory_changed = true; + } + else if (key == 'G') + { + ERRCHECK(result = eventgroup->freeEventData()); + printf("Event group data unloaded\n"); + memory_changed = true; + } + + } + + if (memory_changed) + { + int memory_current, memory_max; + ERRCHECK(result = FMOD::Memory_GetStats(&memory_current, &memory_max)); + + printf("Memory usage: current = %10d, max = %10d\n", memory_current, memory_max); + memory_changed = false; + } + + ERRCHECK(result = eventsystem->update()); + fflush(stdout); + Sleep(15); + + } while (key != 27); + + ERRCHECK(result = eventgroup->freeEventData()); + ERRCHECK(result = eventsystem->release()); + return 0; +} diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/max_playbacks/Makefile b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/max_playbacks/Makefile new file mode 100644 index 0000000000..1017a1819a --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/max_playbacks/Makefile @@ -0,0 +1,8 @@ +all: main.cpp + g++ -O3 -o max_playbacks -I../../../api/inc main.cpp ../../api/lib/libfmodevent.so -Wl,-rpath ../../../api/lib + +run: + ./max_playbacks + +clean: + rm -f max_playbacks diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/max_playbacks/main.cpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/max_playbacks/main.cpp new file mode 100644 index 0000000000..ed846e37d6 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/max_playbacks/main.cpp @@ -0,0 +1,262 @@ +/*============================================================================= + Max Playbacks Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + Demonstrates basic usage of event max playbacks behaviour. +=============================================================================*/ +#include "../../../examples/common/wincompat.h" + +#include "../../api/inc/fmod_event.hpp" +#include "../../../api/inc/fmod_errors.h" + +const char *MEDIA_PATH = "../media/"; + +static float g_distance = 2.0f; +static float g_sound = 0.0f; + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +void setupEvent(FMOD::Event *event) +{ + FMOD_RESULT result; + FMOD::EventParameter *param; + FMOD_VECTOR pos = {0, 0, g_distance}; + + ERRCHECK(result = event->set3DAttributes(&pos, 0, 0)); + ERRCHECK(result = event->getParameter("sound", ¶m)); + ERRCHECK(result = param->setValue(g_sound)); +} + + +void stopAllEvents(FMOD::EventGroup *eventgroup) +{ + ERRCHECK(eventgroup->freeEventData()); +} + + +int main(int argc, char *argv[]) +{ + FMOD_RESULT result; + FMOD::EventSystem *eventsystem; + FMOD::EventGroup *eventgroup; + FMOD::Event *event; + int key; + + enum + { + StealOldest, + StealNewest, + StealQuietest, + JustFail, + JustFailIfQuietest + } event_behaviour = StealOldest; + + ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem)); + ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL)); + ERRCHECK(result = eventsystem->setMediaPath((char *)MEDIA_PATH)); + ERRCHECK(result = eventsystem->load("examples.fev", 0, 0)); + ERRCHECK(result = eventsystem->getGroup("examples/FeatureDemonstration/MaxPlayback", FMOD_EVENT_DEFAULT, &eventgroup)); + ERRCHECK(result); + + printf("======================================================================\n"); + printf("Max Playbacks Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("----------------------------------------------------------------------\n"); + printf("Press '1' to select 'Steal oldest' behaviour\n"); + printf("Press '2' to select 'Steal newest' behaviour\n"); + printf("Press '3' to select 'Steal quietest' behaviour\n"); + printf("Press '4' to select 'Just fail' behaviour\n"); + printf("Press '5' to select 'Just fail if quietest' behaviour\n"); + printf("Press Space to start an event\n"); + printf("Press 's' to stop all events\n"); + printf("Press '>' to increase event distance\n"); + printf("Press '<' to decrease event distance\n"); + printf("Press ESC to quit\n"); + printf("======================================================================\n"); + + key = 0; + do + { + if (_kbhit()) + { + key = _getch(); + + switch(key) + { + case '1' : // 'Steal oldest' + event_behaviour = StealOldest; + stopAllEvents(eventgroup); + break; + + case '2' : // 'Steal newest' + event_behaviour = StealNewest; + stopAllEvents(eventgroup); + break; + + case '3' : // 'Steal quietest' + event_behaviour = StealQuietest; + stopAllEvents(eventgroup); + break; + + case '4' : // 'Just fail' + event_behaviour = JustFail; + stopAllEvents(eventgroup); + break; + + case '5' : // 'Just fail if quietest' + event_behaviour = JustFailIfQuietest; + stopAllEvents(eventgroup); + break; + + case ' ' : // Play an event + const char *name; + + switch(event_behaviour) + { + case StealOldest : + name = "MaxPlay-StealOldest"; + break; + + case StealNewest : + name = "MaxPlay-StealNewest"; + break; + + case StealQuietest : + name = "MaxPlay-StealQuietest"; + break; + + case JustFail : + name = "MaxPlay-JustFail"; + break; + + case JustFailIfQuietest : + name = "MaxPlay-JustFailIfQuietest"; + break; + } + + // Clear the line + printf("%79s\r", " "); + + if (event_behaviour == JustFailIfQuietest) + { + /* The 'Just fail if quietest' behaviour calculates the expected + volume of the event based on the properties of the info-only + event, so we have to get the info-only event first and set it + up appropriately. + */ + + // get the info-only event to set up for volume calculation + ERRCHECK(result = eventgroup->getEvent(name, FMOD_EVENT_INFOONLY, &event)); + + /* set the desired properties on the info-only event + Notes: + - distances below the event's 3D Min Distance all give the + same volume; in this case, getEvent will just fail + - we could set other volume-affecting properties here as + well (e.g. orientation if the event has a falloff cone) + */ + setupEvent(event); + + // attempt to get a real event instance + result = eventgroup->getEvent(name, FMOD_EVENT_DEFAULT, &event); + if (result == FMOD_OK) + { + printf("getEvent(\"%s\") succeeded\n", name); + + /* we don't need to set the position of the instance, + as it is copied from the info-only event, but we + do need to set the parameter value. + */ + FMOD::EventParameter *param; + ERRCHECK(result = event->getParameter("sound", ¶m)); + ERRCHECK(result = param->setValue(g_sound)); + ERRCHECK(result = event->start()); + } + else + { + printf("getEvent(\"%s\") failed\n", name); + } + } + else + { + result = eventgroup->getEvent(name, FMOD_EVENT_DEFAULT, &event); + if (result == FMOD_OK) + { + printf("getEvent(\"%s\") succeeded\n", name); + setupEvent(event); + ERRCHECK(result = event->start()); + } + else + { + printf("getEvent(\"%s\") failed\n", name); + } + } + + ++g_sound; + if(g_sound > 3) + { + g_sound = 0; + } + + break; + + case 's' : + stopAllEvents(eventgroup); + break; + + case '>' : case '.' : + g_distance += 0.1f; + break; + + case '<' : case ',' : + g_distance -= 0.1f; + g_distance = (g_distance < 0.0f) ? 0.0f : g_distance; + break; + } + + const char *name; + + switch(event_behaviour) + { + case StealOldest: + name = "Steal oldest"; + break; + + case StealNewest: + name = "Steal newest"; + break; + + case StealQuietest: + name = "Steal quietest"; + break; + + case JustFail: + name = "Just fail"; + break; + + case JustFailIfQuietest: + name = "Just fail if quietest"; + break; + } + + printf("Sound = %1.0f, Distance = %4.1f, Behaviour = %-25s\r", g_sound, g_distance, name); + } + + ERRCHECK(result = eventsystem->update()); + fflush(stdout); + Sleep(10); + + } while (key != 27); + + ERRCHECK(result = eventsystem->unload()); + ERRCHECK(result = eventsystem->release()); + return 0; +} diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/2011_cycle_sustain01.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/2011_cycle_sustain01.ogg.REMOVED.git-id new file mode 100644 index 0000000000..97e8ab0f63 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/2011_cycle_sustain01.ogg.REMOVED.git-id @@ -0,0 +1 @@ +e2a2e733a0126fee306b208822686d0081e66acc \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/2011_cycle_sustain02.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/2011_cycle_sustain02.ogg.REMOVED.git-id new file mode 100644 index 0000000000..8d0cf95680 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/2011_cycle_sustain02.ogg.REMOVED.git-id @@ -0,0 +1 @@ +f8dde9268e949e35010a8c8b6801359dfca04819 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_still01.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_still01.ogg.REMOVED.git-id new file mode 100644 index 0000000000..b71a0bdeec --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_still01.ogg.REMOVED.git-id @@ -0,0 +1 @@ +b312cb01e5ded13da239f4d3f752a608c41b557d \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_still02.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_still02.ogg.REMOVED.git-id new file mode 100644 index 0000000000..90132ecc68 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_still02.ogg.REMOVED.git-id @@ -0,0 +1 @@ +aea098b6eb1177eb8852cbc7f444851870e9fe85 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake01.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake01.ogg.REMOVED.git-id new file mode 100644 index 0000000000..84c1f794b6 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake01.ogg.REMOVED.git-id @@ -0,0 +1 @@ +0c9d11aaf531a28b090a228d98ef2302dae28ef2 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake02.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake02.ogg.REMOVED.git-id new file mode 100644 index 0000000000..238ba6d26e --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake02.ogg.REMOVED.git-id @@ -0,0 +1 @@ +bae6f9e68daba1c6b4097453e2844cb684e24746 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake03.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake03.ogg.REMOVED.git-id new file mode 100644 index 0000000000..7f8cdff633 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/bow_wake03.ogg.REMOVED.git-id @@ -0,0 +1 @@ +43d5e62c789f1035a0a986cb215e9d932b4ac85b \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/buzz01.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/buzz01.ogg.REMOVED.git-id new file mode 100644 index 0000000000..136db2f2fc --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/buzz01.ogg.REMOVED.git-id @@ -0,0 +1 @@ +e2c58ac1956cfee7aecc8033e9fec00bf8e2497c \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/buzz02.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/buzz02.ogg.REMOVED.git-id new file mode 100644 index 0000000000..b269cb1913 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/buzz02.ogg.REMOVED.git-id @@ -0,0 +1 @@ +09f1efffb52749cf3c82ea1c24bf065f7056551c \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak01.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak01.ogg.REMOVED.git-id new file mode 100644 index 0000000000..f7e32bc4bd --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak01.ogg.REMOVED.git-id @@ -0,0 +1 @@ +916e693027521346650e90bd6952793588fa0195 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak02.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak02.ogg.REMOVED.git-id new file mode 100644 index 0000000000..de28399f7a --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak02.ogg.REMOVED.git-id @@ -0,0 +1 @@ +26761bd8578998bf074c69128737cb46a679c70d \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak03.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak03.ogg.REMOVED.git-id new file mode 100644 index 0000000000..746450b9a2 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak03.ogg.REMOVED.git-id @@ -0,0 +1 @@ +5ad73b03237f48954731570111e2f05c1fde8d62 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak05.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak05.ogg.REMOVED.git-id new file mode 100644 index 0000000000..ccdaa46c8b --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak05.ogg.REMOVED.git-id @@ -0,0 +1 @@ +13ed499abdbb01ecf2e6a4bdc61808be040c3a75 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak06.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak06.ogg.REMOVED.git-id new file mode 100644 index 0000000000..61e1f792a4 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak06.ogg.REMOVED.git-id @@ -0,0 +1 @@ +6d10c587d407edd29d1397b29a004c778e0371e6 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak07.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak07.ogg.REMOVED.git-id new file mode 100644 index 0000000000..79c12c63cc --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/cables_creak07.ogg.REMOVED.git-id @@ -0,0 +1 @@ +45d681f35f416ac35de5f7c01813059a79f7589d \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component01.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component01.ogg.REMOVED.git-id new file mode 100644 index 0000000000..fb746ce3b3 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component01.ogg.REMOVED.git-id @@ -0,0 +1 @@ +90a0062c3dca0a154495d1c333a6849b69ea8864 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component02.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component02.ogg.REMOVED.git-id new file mode 100644 index 0000000000..9946062b14 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component02.ogg.REMOVED.git-id @@ -0,0 +1 @@ +e044d58c9cb09d6720fb0a1bc7bf25d3cb8ce995 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component03.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component03.ogg.REMOVED.git-id new file mode 100644 index 0000000000..c753e19a28 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component03.ogg.REMOVED.git-id @@ -0,0 +1 @@ +6f134247f16790f043e40e57e348417f8727be8e \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component04.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component04.ogg.REMOVED.git-id new file mode 100644 index 0000000000..e44be4527d --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component04.ogg.REMOVED.git-id @@ -0,0 +1 @@ +ec4c28d9c4161ea0133757690cdaddfa3f977846 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component06.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component06.ogg.REMOVED.git-id new file mode 100644 index 0000000000..488a802e6e --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component06.ogg.REMOVED.git-id @@ -0,0 +1 @@ +4aaf6cb5a1b9047d51d6b621c9f9d58437840b36 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component07.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component07.ogg.REMOVED.git-id new file mode 100644 index 0000000000..89dc7f66a6 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_component07.ogg.REMOVED.git-id @@ -0,0 +1 @@ +b27ac42c00b2c3d4f293f7a86bf8e1ecea87b083 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_load.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_load.ogg.REMOVED.git-id new file mode 100644 index 0000000000..a52be6939e --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/engine_load.ogg.REMOVED.git-id @@ -0,0 +1 @@ +7f7e29bd67f11dc5adc0015187b6a1241a47581a \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/metal_creak_light_12.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/metal_creak_light_12.ogg.REMOVED.git-id new file mode 100644 index 0000000000..a7e3d7a741 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/metal_creak_light_12.ogg.REMOVED.git-id @@ -0,0 +1 @@ +a39f23108be827f9115b3b10f29f3e527f23d88b \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/metal_screech03.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/metal_screech03.ogg.REMOVED.git-id new file mode 100644 index 0000000000..f91b87255a --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/Submarine/metal_screech03.ogg.REMOVED.git-id @@ -0,0 +1 @@ +24fd1ca5c0103f010336d1393b1e74ccc55a6544 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/crickets.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/crickets.ogg.REMOVED.git-id new file mode 100644 index 0000000000..ec6b1d0cc8 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/2011/crickets.ogg.REMOVED.git-id @@ -0,0 +1 @@ +dac17685c736c9d8c4179ea8dfe981a1dfa80c0d \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/build_media_files.sh b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/build_media_files.sh new file mode 100644 index 0000000000..f49824093d --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/build_media_files.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +cd ../../../tools/fsbanklib +./example +cp *.fsb ../../fmoddesignerapi/examples/media diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/car/Readme Copyright.txt b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/car/Readme Copyright.txt new file mode 100644 index 0000000000..2166a501ba --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/car/Readme Copyright.txt @@ -0,0 +1,3 @@ +The contents of this folder are protected by international copyright laws and are for evaluation purposes only. These files remain the property of Soundwave Concepts. + +(c) 2005 Greg Hill - Soundwave Concepts \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/examples.fev b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/examples.fev new file mode 100644 index 0000000000000000000000000000000000000000..bd25a10a897d53384e41b7665f5c129158d86925 GIT binary patch literal 55134 zcmeHw37Atw*7ofM1w;|t6(uYxDA+8DB9in*BiJm`AmSiRx;sq=(n*`7*<6SUqX+^b zZn%Ie4vGtIjHvB8@}cN_;yRA#=;)y1!nlt6_r6uPZdKArI%!bn|DQR}bMCEMbVII-5d`);9!v5z8tcUNWijQOnu{@l(4el(JcD z0^7%CyB=TP>zT5vW6WYRqm9u}*zXNgR(XRngpt_T(&u_S*W+K$y-X?^ArcMyy!HOz zG)YFg)_WsSUl@s)2L}gO7tLSa81Yx*9A8Q@I!kDTGX)W-r2;yUI>0X0NuPh+`^3Un z$%ccgUb-*$piL>QTuo&8p;lk_mAB-Ej{(V;)e!* zd)epfy4{?pcnmZQ28Qn5R$BxCt5%IO(;#XFt#9ZETh=aVD6Q6Y<@KwUj_gym@S(qc z7k*~%H+3UqO);EQL*x7CFYD26vidCgsLdd>HTo#kRKUKPw}HAIU|mKbMW{tS1eqoL`!B|A@N%@RK-A!a0j)?q{;Cy zU=D!!^ejNd0NX^<5SS*$$BV1Tq$M4JbcPuzl?$4oyRSH9)xn39U4PG{55HO6y^m5C zMFL_tlC}9f|I3acT+k6RF`lGM5ie>*Ng|R^Z7!^CcxwBehkrI_bkp@q?*6bKfCZzh z3Pl29I3{m6i%A<#&s+^VJBDzyL!9rmfa95)dJxUHz@-gBmxM87>8ZE5QJghruJ!L{ zI-zaZbLLqcP9N7QPPQyQf@6ht1XG>^q%$Izj${<)oHpn0?|${ouvM}5?%waB5jQ0| zCPo_49{KC8ROLV*9f|6#EzdtclzI>|cjV1?&U3ehGuLYBZFyS5nPj$pw`=8}lHiCDX1U(Ya zu`B_2R$ep7j^AWGRNli%QgKu-ygXXP7FG zKL(^4zfH{Npzh?Rfl3L`+%#t2;6zX0z|A2+_a@oCgki&3DA_I`tFS|Y2|2kmPQ7;D z13%0gebX7Wf2utE#vT8^nUG;pHfl_%t2{KT!5fLVD*W8FphX-rDzmCiO0yALX;%9D z?xKLTWz`eKmn~a<_f6}g-v2bS=I>-=G9rap%L3luwC3jI4Je~65olHwy)-+4y*UwB zrs&9{*3BlJ*%O$iySVmOy@j;t+^FO$I-_@}eKQs@DySkiciO#MF{$bgJxAQXVC25B zgU;Qa%&k;K-cz@JJ4mXg$5V(jK;_Fbo2VyQ?&uNJ)RXxn%RNAHWzWf7LknYk_MF^j zENm4gTg}}}4bEywXCXy8!?AQEH$U4{ym3x=bNjOE{IhoyPyaCKcGs?OB&&yE;udfs zD=z=Pj?^}RwK81-FxH>zdH8KVG`u+C-VYy}dB<^~cN2{r1I?~*BxNMZ7Flum|8=Cc zNfwUe&@=LnFK)ZzU&j|-ch;i!H{5ad@I+(BK(i|xDQBJk_DJO@S|WbiWhaJK&IGq^ zc=N6k&pfO6p)SJ?E-&ob^Otg@T&?}rk-OZHoRk%C9mhGdE3mZgnALyVII;Mux??6a zb-2Mh?x*s&c`XJS#?CKsx24vKI+&6TwWu7xyM3Oii+LBtJPFBS-tAf~b{I&J4QH;^ z`H_P>A6}IGu122qL$J2hI}9$-l)0tigcU}KOo$_wkE>4VbJDRF-0Hq)-$OiOx=$CL zV!IL+L*0;dyZ@QOhueKK;-L-mdVjLz#80%5g)}RM6Ip)=$I2RbR6RMhV?iT!@)!)6 zJCJ(R9!4QH;^@o2dR$hxURrokf}*_t}d8r1zLdnG0Ec>}lO z)yo}73JY<+XjktTu}%Vah`GVY4MpVzdZq_(_{9B0lx&~=riWv_2|djVc$WGTMCXu6 zAunN6IUGe>?%V&+n{T^rMJi4R`8Hv6=*PZrn^PHvX<`Q(A3 z`Pl?UzToO}uDs*ThI4mo;k6M@hv8+dn4;9!u&G!m4*QhIggCNApPhJ!o7>iTSIu(T zl;D~pK=$^Kq4z9*|H_e9emG;sBd5OjX`-oPpkbq$5BR^XYu3MdF^2B!`fMBPkt^PJ zzxevBtT}hL%HNylc`5A5nv=FVl8Rc%=VQ8N@{Fg4o_fnZo{#5OCvy!uXfNRKJ^Hn; zIK(}2&EAJi@BhOQU;n4LMhy(|Ri*S1k7fYmz%QL=#9(h(Dvq=Z1s?@`bM*x`ZYj+z zy#Jz~|1tQQ3+vJ~T)xb3GP;4bcOt#0z&Rui7fwM!LJc|c%x3Bb*&Ngey38EqWtnB& zHM|>#t|p=~fk~Hd56Nshfv@m!lUf1mJX&3db4CxcX~sUl!`fJrC-1(w=#n-wKD^<^ zPp}uQnj~e$aAFm5hmvpo5L`v_Oxk#QnXitCW=ut^^5xkyW3H8%8KoX+%;=Ij(ZmE! zY>B{n^IbBR=H~MbZqA##yQE2FZY3KeiIW_=E1twzM;`d@H$=&(jZ26Jw_DDLmQkJX9d6kz1OaO^0}{vU9x5Mc^hK` zS0rmVMKzy7kSUB5Zz$$!XkDDiCh*;(eE3UtsyFUAO$_Ih&2C7Y7I)5f@_JA1D7x$C z-_3L@6Lhp5-`?HbwD)F*N^!1UbeEIYd-531qsQjCmls{-aPDP|-ukwC;J~d8mE!FB z@OCGU?ce&~GIyuI8i#Xl>&)*5dCJ-?cc>KS>P5#uLj^I<4%g?PNj|u!rKTEO7;xMr zXR8T%A)c9aR$g;ZGwXED$U2jk7B{m_r&e2MpIvSpJ_O+YF}EJIb?`Pct{sTAD^r$K zdHq#FoMRp}MyNBhDbMIa>@ov@9}Ro8qM~@*=%%ulpB#GKqqqf#?*cKF!a@*hm5-2 zYz9?{0hM{>`>xE@Yw1LKmTE{Gk#tFXN|{ccS)VdZo>gv>>at8tW74Sw1S5{oDW1OB zlH=%HGE+sSIYUw}0?%rO1TpZ3Q*tjt8Fc-Q=zZ)0lLa5x}ny-ZWeGF2WQ`K05pTTF%^s$S$QA>V_17GM3nsarG}M1 zG~ZL&^lI9zlG@rMnsKUroogLyExdor&`oE1K|`&Q*KS)Pu69#PwX9No?MTS!1?0Uf z?_Cv`JaU1hHkst`*$0HYYv7`qi)aP33SL35+P`+QXscyC9=FrR^77Enjs+8j*uf}1 zYt@itk5zqo@}vDH_}z;xgI3BZC^P2>M=@8{aTESf9sbI;o23pVE zzG>)3AJvLrA)U#OOB-m}_)sdlS0*ibsPZ3zW!#xogD409qflm%ET>R9#Z!Zbs0)zBNrmC z2v`g(0hR(4nEI&!fHH0FDHn z0xSoP0w#iK2c_$15REYi&337q6Ge+&WSyFVR@sRI5n&v#0yrMXdI_d%HKWo-6M&}y zO*)ph^r|msaOyS@csdZlZ?S&Lq%3WB4%wDU2?=#-%Z}$BfpbuCJ zoCXxjDV$AUyHvkttPl!;MZjWU2~dF22FPQ9|KOpuG9ZANLvoP9Jm6QiT+oBPPH+W{#P0_ z+WzX^bJyvQYDD~8h4a8iNnypk`ZD&7N?R4pRJ2fhpD>%x(2Dp+58%&+l zXuw&Iqx`kN>wwn-Zvd_Wt_GSTezHil2XgC1(B1@$0Tr0_sg(=ce>3nF;H^L<)1*~1 zDrs*6t^wX|(~_RFd*UosjAOlFZ~ZX2U{cDE=np`KDAR3#1f~@Y%hm$#0IE<{bi7t{ zJl_di2fPb-H&D@=N-HO;DdQf{-3wd~ybpLkko6OkGvm zhvwbEq|0|nO4d!Iamn-m@Il~1zzx7e5Vmm1T-EMB;__kOM&Ki|NF2?&R6EK4s6nIK z)L-P@xkxT=TH7X7kJ61(++)BdU?xM<`dV#hd@3-Dr+$AweabMwS!xX;IAb^}7sPie z7Sk-!G`wmKt?yLSjgX1qC1oy7L~3g^l=t##>4>B#rdX2c2Iy);cG81dEVEE?tFxA* z%94seW;>%majSFYQaCP>OJVC;L|rJs193_Rb*9APKQ0mrFqsEJ0rECVT}kVn4$Bj3 zBtja4qCDMP7kNjRnG{hO4)Id{jPZ}y`rfGI@|?;?O9%C9l4T}! zVw!ra?wDFi``7Z~q-@&lVG(uBTSO_zdLykpf9p?=nYygF`1V#v$xfGKeVV#tCPmpP zm33Kewy5LvS0?F=ZDC#FCLylns8hAZpBX3L0aIBQ<7}LDpZZE$w+5V&Psz-*MM?^6 z=B^QA3MD9AIJKCWc3`KQ7=7HuDpnS9$Z@3m%#z7(%8(GxCxA(XqO&iniML+^;Is_>Dj<>$b z?+ZpNVd~1b9`F)K#_oj!fGj%96ia+>dl@t){rn6boC#*Tk}DSog&LeV z+6op{HbF4Qv-7#Mthm}6E(itd{W|{sin7yj%X3-=e1Xs`r@l8qzYlKwCMMzA4|!&N zb^d8}4&z@?xD|}2x6D{uYijxi7)CVU(l;Rh{NyyEhQM19Bqz9NmqrF}e zZmjPc7cFmrc0Ibn6u}kGcNp?y!~8+~gN?U3>YwSW6#rLK+23*FHc&l_xU9@l!T?9Y z+qQ(MSxOk_NO;GV;7uaoaO9ls5nT(C8N+QVR2&(tau51W+=Tuht>bx`k zp)iLCN11m)$0bsAmNHCt{@s?r(VU=k<8^nSY*2GO;>Vr$KuJw}I1@}M-Ef^sO59-g zHxN=tEzSsKXAhUE^Z-gB1N!yvUob6z4;NQP>b&8a$_O6$*Y(q3!k%*^hiO1YtU5l} zd;ZKR5s(q94h(jOqHJnC)^Q_y#FA`kJE z=W;NWX2+~O&E?v$*)eNhbGbGzJ7(?eF<`zjJ7(=~&IC)cW7Zz$V(Iein6=NjY`PZA zbvSdU)0QLLrWZ8A=hb0<^$cG$;>1gD(0`A~-H$W(pZ5k5=yHsn=9p0B$6!$H4FrrR z;nHh^+_z58qGN-z=T{6(K-yY#L@m5&$8Xq z9qwnry)sM9XE@xOST{5e;LIV)?r*|^eQ=#LdVIlY2!8~AeFGNf!Kl%XmVjq5r+fgt zkhu&!A}s}98!`g2lc9&GW#E0RT8PL}h90vn1N-2!S|dXbV#~pPF$X_Dc5Tt4+U4No z+q#78Wavq51$alz6C$#dp=Z4-z-}%rGWV^X2CsyS2RXn3vTBPlFJ1-SE*PWgapoLp z54J*{3)e|wwyJUNTq8~|1l{bZH~^@J3z(Wu$L4&{1qR9A@Nu%WJH3$6Go_5stjby5 z89t-_7--)w!U4egTjtd|oDce=BIL}JSNDqxz%$w_e_zO%-?UxA-H4v&s-S-)>W^Dz zo(JYl18@Ma0U0ps7BCR+19Jn;TukHu2^7>7nA8)IP|zE82Cn}B+3Ogs*grXFnIcje zvpNu}o>3XMNpmT93wM)0vP_hdQWbB&8?JX$p(zGqX-Ai^tDCB%G>bik20~sveO?Xb zc90OonX4ar9u{Wlj_agm!Cx6+_s9sX8$j9DST?rAsok;)oc&-60$tG(rw*&tp#HWE z4uDKJ^&opAIA&+TsfX5^zM+Uf!IW^gXaf>RHpw}5kd7TW5;^Hy-)3eHBH6MfqY zc}aa+?XAL}Ygb|`z&pe6@B+}k)E@@`t(_Ua_Ve$-6B$D8Z1}aeF9P3%Jq3Ff^=qGB z%zD}Hc?M>tzxMn>@Z5tzn2_R0gouA2s)e)`4r2F|B4JMaRWmka9d{1wgjC=;*i` z+^;dj0oh8?F>(*MZ{;&VK(_Sbl*2UPfcnI80#?DAKy6D*504Y0q z$d3`wJoW@A{FSnQ%ek|%&gY#u#~5F41OEwaaRAWYnel5~)_`Y4*8I8$-41@YvA>d8 z{kre`0sI#j^IK;8y4S1)|D1dr0GYR6_m?}sSBANckU78ZDR+WzFzh!QXFi*=RS~j! z<2udw7{LJPt2Q5w{1FU48r?2K0ot1nLjXTlNnmR-6rkO?5lm4R4uC8KXn#He#<^G* z&cT_(kZoEajLU$e_NenltLrLjLVSYO;0sn_?He)gK&}DfNxX#tP^&BjY5S}M^MS1w zr0sMq1oddWAZ@SfAZVR2k7e03-4U*bpnecE7iZ2z=E^={nBt~lW%ZoufUh#rh!WS@J{h^KUQ=_q8txQ%d5$E8C~SR=!_ z^oV;1>iP@jP~KQGZQ3*8E>_wTHx&uv0q60t#yFXlOG{#Gr)~0Pr z>7QlFrj6ej%FH!(3{sd!Dygk{1lT?|runpN+Nwu_tqN@CZ5@I0K6ZrTg|z~hE)7vfCE znKoq58aAvAc0OPt!CCxZG;qbIk-sjWH$oVVHPW>TlN z?MdJ~&Is6+>eLn<3eJ3^hqT10?d%38U+A8XbE2Ku%Tw4nQWpxF)13#T%M8_9WYv}~ z1ncAZH~?s`7Fo5ai$K048&+-WVz92uMqzF260rW94Xd_xDOk5a;RQImfVLFT?u4-= zg15{fb(Pr3on|hJ&jQ!|_J$0tm5xi>I1I|8Q?D!H>eA+ofXjT1AYEPBvQcmaj95&^ zrH$GMuI}imzsI>7(C)OtG6@5>tt}(7vEJzHGr_jTs5mW~w#_WC-EFLc(z0pe%m&+y znbxMQGY4$X8~#gMn>G(u_|F-GN?JA@Z)bz8qp^39mQCN_o&&ZAGF4LV{cyeA18c*J zaOMbP`p|`IV=R%og|%VtwEFl5wAG;NV|1?ceA#@|Ozfh4IUV$u!7dl$%n{iZk+eV7 zg`(3MgOybnu*^9j2)6l#X%mAlj!kKZ?hFvk&BXyg&!l0}$_7CAgB|BBFlklm!Nk{qF2VV5pxI9nMoS-lVS-%}Usc#2 zF^0PS;5yhaZ8|Qk>;Q1(8bek(F0JiAaLqKDn2t;Lk7L2L7u-RhVbXEw-fKJPPrdBVh%2{$z~W z2@%$eQ`>qxIA6|!Q=57MI4{Y9Q(O8paIOXC5}bPjZ6Qe`%z4=!JG3)>0rPPx8@-32 zKw@w_A$c%AE%zt0^p9a&&-)H_m{JQ@#(TMmRE$&lGpJNA0 z^_F91d3iI1K8Z+~jX=8$X->^p4ILv|QvOh2Ip~fCn!G)e@>WK$m4=m>cue6u zlHk~|6+`jmIQIdX4%BV&JcE!4 zr*7x-;NV)7kO`-5^A>Qd#oZtw6HYy;yZ{bI&_|J?H@ z`EQzM4ZWmrX!`>^|3n`C^XsIyk-zlGudqkSzoP^eUdM$FU~UPIaF(BM%D$$ z`Z-GS&Vr$}A8;SwzQAh!UeaIPH;gwv`+CE^px0G}oMid@22Ycdf|{!lZEHMvu$$xp3fVI*14n#4dME}wE=wb!5^su zl_-iQv~>;F1U2D}Xb(6eoFQ?kH-qs7aISd462nBJjJ5cNpAmySf zaIP7LGbfsSAQi!ir-nD9CJl%Den8S31SAc|x9a+ci+xEzPaI9ADY!lsXbMiGsZ2tX zSa}s_2H0{kuDluy6qK&=8k7%8ph>Kpn@Gw!iIs~eM|m@oPDkEgV7kf~1ANkA((u}} zU<0nj^9`KYlW2DKtZD>UuKga>>Oy2R)8H)R@o9`Hy(g|s>0w;ETcC+#K+^~suISU% z#obtpooQ*f_1Y2*_gNEZ60LR~XgHiwpG2$Wi4Y$+u%Zx!@(=Wkt}qXIEJ()L#^J>O zhZiQ+83R{Q3eH@cb88_8L{OSuI3IbcMa=??cQ=H@sJsw)Su-sFQ;VU@fhsGe9QODevCvUD?5a89mx(He?#&Uy zw8~*;$`Swfq;l9XbHpzT*d?h6J5#Rn-%yH^vX?GX|u6qk*6p&2g^F71Ih*HMuC^6vH&bw;VHeWSX3qaE3oGLoQOnpVXMZe-rtj zc>S_AMdNW50!Hc^B74enU2Yx{R0x?ax;WYx4PiD4R91O|GpujZmVTGE^m~+Yl}v>g zM)vYkD^!R~@xL8$3Slx!qtFLwOaGC!bbH#;57U-@gwhE>HijNzHzqjNE#ws=*K7h#wyF@5MKndj_)4UsWLT;9h`oR!7 z0O^B)1jqaA+}R4vL2xKdsZXNN1%<89G#5gT1Ts!JY9B@(>`0S2}ci@%uOYsi+mUe;)#rP|iTSNs1TB(kw&o-(a~L zNQVx_nO@@HPfZ^zzI1c1LJGYU80S!uq;}}XX-hvzTl#6*($7$;Y;YpdU4ilHA|qQH z{1Yt72Arf_z~(};w80JtNo}F8(w2Umw)7j6Ds{PnZ~=E(-G4zyYIQ$PTlz)X(l1eZ zJdhFQ#@PiV$OvN!okiT;$3++ml&87=QR`T;?Orl?$$N#Q$THfufkg==|1J^wwjs1= zR|$Owf|S*`kTW&i!3+WW;n>V-E3glM%v!!+5s8Lf-E3mI_axvMz%Xzr@J`_W06DAk zOM)(-8#oy_7kD-BA>dztKLTACa7utx!1IBtfg6CY0>1=y#(M8K;CNsJxEy#da4Yaj zpxmlW^;NV~rE)7aRjJ%=m8IevYX!d9)&8hY{`A(&uMI@%`tmz-eeJgaQWTo?Nr?t$ z^XiO3xq+KPtlXnD3-Kv5Y&UW1s;~S?NAp6lf7L>%{K7~oUik%)RHeR3PML9)1=2%fJl>`OIPNTzB7=svw}i9L7pNzO`ZpFh}Oxy1f1*I z3#%gK>VZ<6#ipdidlm^fVzW3$1PPtSeM>sRWML5H@Qy@6jvXzG2gUL?q{&hu&o#UU zG+5e*U|?`Ca2N~>nl|FdE9Np>NJ00QyQlf~LmT;2Bvq+Z2)2~Gg=tG;X-ij&(nOnx z8?xM7)G1!-;y>xqgCtWnDL|SwVQka#j7>|j@N<Zg!X*inj?0l&zJ>djs+|JhWg7+Z=PjpYXaj>AjYuFv` zRWnZ)>17u`;hx_+EYd3;ZR6-!lXs|-{^XV6?r(DE37h;lCg|w%*#{$#mNpsIx!$QO z+?3}&YRP*;ssEV+mbf>6cZIO++t1ANFm9MnczD`dBA+tWH0Fu?%O`jpne!f9?*4Z4 z$3o7tzCx$%_$OkgF1Bm%H8TEXdv$+5`n!FE{5K+Z4ej*aI+1?rkptYu@LlNh?;U-*w9j+=JF8W?>s?Y+joSc z|H2((1h3M$^Y6Vv&%o8^yGxcGDbh7vEzjfI<@n#}cFqfG9>K$-ccus$<_+4sQutzv z>r=;8cQnrQ=5>;z3>D_x2Mk>>QVZy{On{We_M2nr^jF9SiRtPqumeR5*9XD@Vgh> zKlTfX^m5PZ?r*=EA>{XYd4G>5QY+F|&OF$2Z>UnFw@o_5Q~AIYK|gXsFVCp^Cy2JM zd&1*c+)<9Dw8>jjo)o%0{gR9AvUQGm`d-n|PV?2`_JXD)_h8TB`Ckh;^ZQQseCM6) z&|LDn1%ie$T~i(s={wra^K^bv>dAax#j7I!`L^@i!`FUekJW{q&im{w^rY?AH4PT& zo;_!sL>^)DrAvpxo`QG9$hPj{v)hS!-#sbdzUie~DhCmf&teP1~~Gv4ZdJkW`USMK7NDd$0+$M(Ke*kQj* z8y%THe>l@~OM|SJG!^S*KVo`K4;dR3td_!{sZz%PM&;l9-cECfyk#(*~fHv(S=egoVOYw$t9$-w!* z4Zx3qdtqhW2RITq9k>j*4!9Zk4`6$&eR~7Tfg#{kz(;^@0(tM-6*w3;9ykklEwBmr zcVHXb5BC9%2hIXs3w#u~4frGQ&fmJyq<*J7*C~oQBQB+gC<%qCZ+!j(-!uJGj=Epbx+Bjk+XF8D0dhz<1xR z3jB~I;FFo-yuq4Ky??G0tgd`DqO@0quiif%ZxrM0vj%V2Ti>srrAaFA!dgwKk2^5@ z<-1kE50Q*;-sYO<$$SSQE zn~)Phbej39jj98<*v#D^Ew|a(3_Z^8(t(1BF0V~2LJJ~R%H!vnp@etWjSDqSt8)|?SSn*IVht$mJFs-DH#jO3Zm6?*)%daf2Az9bW2&nIjSsngvzyE@Zf&-r_eaWlYf?;*WgTc7J_i03HrbE44+-wwK7i z0U3oVs)b$9Ief4KFJX8WUo5vu_~9IR92>&kzf8J@`-1py6g1aWA-}0(v8&*{$p(a| z=qs*qKE$60b63&KkiUjXTNUaP-7bWWKa4-)VOJ~EWQd` z>6_hvZ=%o;qxgB_Vb0}v`;8Q*Qqc!pD%;gxDU*;tz!LU!p(|?Qq?!G#0_Cy-j19)s z_*o(IivKibT$kZhQsdGH3Kb_>u2CpDi!Q0acD276$8gjTCUeWgHm;E!A72Hd@lR8u zyg`41aDFH#GJ46esJE58I7N1^aX#_MB!mz+Wne|wlM1A`q8fyGT>dD0T8RW!!7%Yj zYWcTI#ufgd$hhL)4(Utr$4BO69I^b9BBz*-gsg%w(K>YF0y%*CY9`{R1hpZ&nCq03 z;#Fdo)JQ~lNxL>UkBBh_%ZPa)f-6;_h_#f3 zGW1dv%Sf!mPfR$4`8fAgib1)?S6f+Gz(KbXQJ#{(>DZNMdrB%}f~TI_$!n8z71d#H117Q*L?`o$c`W9Xu5x~;B_#>J<>DG8zF0!{hHLTo)3BlNe`T5d zIgDf!&_H}-p_pGSNJcPDeAFOi@i6frfl~1yfn@AbgR0Q%WQD>MmBPdPb1(YG84q>J zRW5#-H$BtuLDS{zqj#XYXdN?0!;8s^Wslib1#j+h&mi2%C#xgVj literal 0 HcmV?d00001 diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_1.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_1.ogg.REMOVED.git-id new file mode 100644 index 0000000000..c820803e7b --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_1.ogg.REMOVED.git-id @@ -0,0 +1 @@ +e0e59ea67518c7b05cabdf52a31d5d92c7eada49 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_2.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_2.ogg.REMOVED.git-id new file mode 100644 index 0000000000..f97d5fb08e --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_2.ogg.REMOVED.git-id @@ -0,0 +1 @@ +9dd7037ce15d071cdfe6de30460fc66289157101 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_3.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_3.ogg.REMOVED.git-id new file mode 100644 index 0000000000..518248edc4 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_3.ogg.REMOVED.git-id @@ -0,0 +1 @@ +9c585da7ae860970ce501f1520ddb98ae6527c6a \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_6channel.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_6channel.ogg.REMOVED.git-id new file mode 100644 index 0000000000..1fee08148e --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/interactive_music_6channel.ogg.REMOVED.git-id @@ -0,0 +1 @@ +0212f56337f732c62d8fab11552ae4c52a17c460 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/excited.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/excited.ogg.REMOVED.git-id new file mode 100644 index 0000000000..d0a62ddf6f --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/excited.ogg.REMOVED.git-id @@ -0,0 +1 @@ +1efc1a3905adf24cfdde46644640a93065027da5 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/relaxed.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/relaxed.ogg.REMOVED.git-id new file mode 100644 index 0000000000..c8b1304ac5 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/relaxed.ogg.REMOVED.git-id @@ -0,0 +1 @@ +f5ce0238c297f7ee359f8c9dadeeae96b1dd789b \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-01.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-01.ogg.REMOVED.git-id new file mode 100644 index 0000000000..1d6c4df561 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-01.ogg.REMOVED.git-id @@ -0,0 +1 @@ +34355c43c2a63766ed977879797d9701a956420e \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-02.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-02.ogg.REMOVED.git-id new file mode 100644 index 0000000000..88863d208f --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-02.ogg.REMOVED.git-id @@ -0,0 +1 @@ +598588a81b43a673d59bfcf8f5207d51c8a88f94 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-03.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-03.ogg.REMOVED.git-id new file mode 100644 index 0000000000..e0ef29c346 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-03.ogg.REMOVED.git-id @@ -0,0 +1 @@ +80cf3d5869aedcd008977e0ff632bdbb07d4edc9 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-fadeout.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-fadeout.ogg.REMOVED.git-id new file mode 100644 index 0000000000..086d78972e --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-idle-fadeout.ogg.REMOVED.git-id @@ -0,0 +1 @@ +6270ae17cbc368d71decdd6b1bf561e45fc8aaa5 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-race-finish.ogg.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-race-finish.ogg.REMOVED.git-id new file mode 100644 index 0000000000..d4fb1cc9c6 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/music/state-race-finish.ogg.REMOVED.git-id @@ -0,0 +1 @@ +fd9c8bcc912ab192ce616872c9ede9b054c5a73a \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/onefootstep.wav.REMOVED.git-id b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/onefootstep.wav.REMOVED.git-id new file mode 100644 index 0000000000..4a2ef96555 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/onefootstep.wav.REMOVED.git-id @@ -0,0 +1 @@ +4f9da84d59ae995355e22ad02808c196c7ebcadd \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/streaming_bank.txt b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/streaming_bank.txt new file mode 100644 index 0000000000..dd0dfc2921 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/streaming_bank.txt @@ -0,0 +1 @@ +interactive_music_6channel.ogg, quality=0, fsound_loop_normal diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/tutorial_bank.txt b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/tutorial_bank.txt new file mode 100644 index 0000000000..80f1184baa --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/media/tutorial_bank.txt @@ -0,0 +1,267 @@ +2011\2011_cycle_off.ogg, quality=0, fsound_loop_off +2011\2011_cycle_on.ogg, quality=0, fsound_loop_off +2011\2011_cycle_sustain01.ogg, quality=0, fsound_loop_normal +2011\2011_cycle_sustain02.ogg, quality=0, fsound_loop_normal +2011\2011_cycle_sustain_spawn_grain.ogg, quality=0, fsound_loop_off +2011\beep01.ogg, quality=0, fsound_loop_off +2011\bird_call01.ogg, quality=0, fsound_loop_off +2011\bird_call02.ogg, quality=0, fsound_loop_off +2011\bird_call03.ogg, quality=0, fsound_loop_off +2011\bird_call04.ogg, quality=0, fsound_loop_off +2011\bird_call05.ogg, quality=0, fsound_loop_off +2011\bird_call06.ogg, quality=0, fsound_loop_off +2011\bird_call07.ogg, quality=0, fsound_loop_off +2011\bird_call08.ogg, quality=0, fsound_loop_off +2011\bird_call09.ogg, quality=0, fsound_loop_off +2011\bird_call10.ogg, quality=0, fsound_loop_off +2011\bird_call11.ogg, quality=0, fsound_loop_off +2011\bird_call12.ogg, quality=0, fsound_loop_off +2011\bird_call13.ogg, quality=0, fsound_loop_off +2011\bird_call14.ogg, quality=0, fsound_loop_off +2011\bird_call15.ogg, quality=0, fsound_loop_off +2011\bird_call16.ogg, quality=0, fsound_loop_off +2011\bubble_burst01.ogg, quality=0, fsound_loop_off +2011\bubble_burst02.ogg, quality=0, fsound_loop_off +2011\bubble_burst03.ogg, quality=0, fsound_loop_off +2011\bubble_burst04.ogg, quality=0, fsound_loop_off +2011\bubble_burst05.ogg, quality=0, fsound_loop_off +2011\bubble_burst06.ogg, quality=0, fsound_loop_off +2011\bubbles_close01.ogg, quality=0, fsound_loop_off +2011\bubbles_close02.ogg, quality=0, fsound_loop_off +2011\bubbles_close03.ogg, quality=0, fsound_loop_off +2011\bubbles_close04.ogg, quality=0, fsound_loop_off +2011\bubbles_close05.ogg, quality=0, fsound_loop_off +2011\bubbles_close06.ogg, quality=0, fsound_loop_off +2011\bubbles_small01.ogg, quality=0, fsound_loop_off +2011\bubbles_small02.ogg, quality=0, fsound_loop_off +2011\bubbles_small03.ogg, quality=0, fsound_loop_off +2011\bubbles_small04.ogg, quality=0, fsound_loop_off +2011\bubbles_small05.ogg, quality=0, fsound_loop_off +2011\bubbles_small06.ogg, quality=0, fsound_loop_off +2011\cricket_single_cycle.ogg, quality=0, fsound_loop_off +2011\crickets.ogg, quality=0, fsound_loop_normal +2011\decending tone.ogg, quality=0, fsound_loop_off +2011\detonation01.ogg, quality=0, fsound_loop_off +2011\detonation02.ogg, quality=0, fsound_loop_off +2011\detonation03.ogg, quality=0, fsound_loop_off +2011\detonation04.ogg, quality=0, fsound_loop_off +2011\detonation05.ogg, quality=0, fsound_loop_off +2011\detonation06.ogg, quality=0, fsound_loop_off +2011\earth_debris01.ogg, quality=0, fsound_loop_off +2011\earth_debris02.ogg, quality=0, fsound_loop_off +2011\earth_debris03.ogg, quality=0, fsound_loop_off +2011\earth_debris04.ogg, quality=0, fsound_loop_off +2011\earth_debris05.ogg, quality=0, fsound_loop_off +2011\earth_debris06.ogg, quality=0, fsound_loop_off +2011\earth_debris07.ogg, quality=0, fsound_loop_off +2011\earth_debris08.ogg, quality=0, fsound_loop_off +2011\flame_burst_long01.ogg, quality=0, fsound_loop_off +2011\flame_burst_long02.ogg, quality=0, fsound_loop_off +2011\flame_burst_long03.ogg, quality=0, fsound_loop_off +2011\flame_burst_long04.ogg, quality=0, fsound_loop_off +2011\flame_burst_long05.ogg, quality=0, fsound_loop_off +2011\flame_burst_long06.ogg, quality=0, fsound_loop_off +2011\flame_burst_short01.ogg, quality=0, fsound_loop_off +2011\flame_burst_short02.ogg, quality=0, fsound_loop_off +2011\flame_burst_short03.ogg, quality=0, fsound_loop_off +2011\flame_burst_short04.ogg, quality=0, fsound_loop_off +2011\flame_burst_short05.ogg, quality=0, fsound_loop_off +2011\flame_burst_short06.ogg, quality=0, fsound_loop_off +2011\flame_burst_small01.ogg, quality=0, fsound_loop_off +2011\flame_burst_small02.ogg, quality=0, fsound_loop_off +2011\flame_burst_small03.ogg, quality=0, fsound_loop_off +2011\flame_burst_small04.ogg, quality=0, fsound_loop_off +2011\flame_burst_small05.ogg, quality=0, fsound_loop_off +2011\flame_burst_small06.ogg, quality=0, fsound_loop_off +2011\footsteps_concrete_01.ogg, quality=0, fsound_loop_off +2011\footsteps_concrete_02.ogg, quality=0, fsound_loop_off +2011\footsteps_concrete_03.ogg, quality=0, fsound_loop_off +2011\footsteps_concrete_04.ogg, quality=0, fsound_loop_off +2011\footsteps_concrete_05.ogg, quality=0, fsound_loop_off +2011\footsteps_concrete_06.ogg, quality=0, fsound_loop_off +2011\footsteps_concrete_07.ogg, quality=0, fsound_loop_off +2011\footsteps_concrete_08.ogg, quality=0, fsound_loop_off +2011\footsteps_leaves01.ogg, quality=0 +2011\footsteps_leaves02.ogg, quality=0 +2011\footsteps_leaves03.ogg, quality=0, fsound_loop_off +2011\footsteps_leaves04.ogg, quality=0, fsound_loop_off +2011\frog01.ogg, quality=0, fsound_loop_off +2011\frog02.ogg, quality=0, fsound_loop_off +2011\frog03.ogg, quality=0, fsound_loop_off +2011\frog04.ogg, quality=0, fsound_loop_off +2011\glass_shard_smash01.ogg, quality=0, fsound_loop_off +2011\glass_shard_smash02.ogg, quality=0, fsound_loop_off +2011\glass_shard_smash03.ogg, quality=0, fsound_loop_off +2011\glass_shard_smash04.ogg, quality=0, fsound_loop_off +2011\glass_shard_smash05.ogg, quality=0, fsound_loop_off +2011\glass_shard_smash06.ogg, quality=0, fsound_loop_off +2011\glass_shard_smash07.ogg, quality=0, fsound_loop_off +2011\glass_shard_smash08.ogg, quality=0, fsound_loop_off +2011\metal_fragment01.ogg, quality=0, fsound_loop_off +2011\metal_fragment02.ogg, quality=0, fsound_loop_off +2011\metal_fragment03.ogg, quality=0, fsound_loop_off +2011\metal_fragment04.ogg, quality=0, fsound_loop_off +2011\metal_fragment05.ogg, quality=0, fsound_loop_off +2011\metal_fragment06.ogg, quality=0, fsound_loop_off +2011\metal_fragment07.ogg, quality=0, fsound_loop_off +2011\metal_fragment08.ogg, quality=0, fsound_loop_off +2011\rifle_blast01.ogg, quality=0, fsound_loop_off +2011\rifle_blast02.ogg, quality=0, fsound_loop_off +2011\rifle_blast03.ogg, quality=0, fsound_loop_off +2011\shotgun_blast01.ogg, quality=0, fsound_loop_off +2011\shotgun_blast02.ogg, quality=0, fsound_loop_off +2011\shotgun_blast03.ogg, quality=0, fsound_loop_off +2011\splash_large01.ogg, quality=0, fsound_loop_off +2011\splash_large02.ogg, quality=0, fsound_loop_off +2011\splash_large03.ogg, quality=0, fsound_loop_off +2011\splash_large04.ogg, quality=0, fsound_loop_off +2011\splash_large05.ogg, quality=0, fsound_loop_off +2011\splash_medium01.ogg, quality=0, fsound_loop_off +2011\splash_medium02.ogg, quality=0, fsound_loop_off +2011\splash_medium03.ogg, quality=0, fsound_loop_off +2011\splash_medium04.ogg, quality=0, fsound_loop_off +2011\splash_medium05.ogg, quality=0, fsound_loop_off +2011\splash_medium06.ogg, quality=0, fsound_loop_off +2011\splash_medium07.ogg, quality=0, fsound_loop_off +2011\splash_medium08.ogg, quality=0, fsound_loop_off +2011\submarine\bow_still01.ogg, quality=0, fsound_loop_off +2011\submarine\bow_still02.ogg, quality=0, fsound_loop_off +2011\submarine\bow_wake01.ogg, quality=0 +2011\submarine\bow_wake02.ogg, quality=0, fsound_loop_off +2011\submarine\bow_wake03.ogg, quality=0, fsound_loop_off +2011\submarine\buzz01.ogg, quality=0, fsound_loop_off +2011\submarine\buzz02.ogg, quality=0, fsound_loop_off +2011\submarine\cables_creak01.ogg, quality=0, fsound_loop_off +2011\submarine\cables_creak02.ogg, quality=0, fsound_loop_off +2011\submarine\cables_creak03.ogg, quality=0, fsound_loop_off +2011\submarine\cables_creak04.ogg, quality=0, fsound_loop_off +2011\submarine\cables_creak05.ogg, quality=0, fsound_loop_off +2011\submarine\cables_creak06.ogg, quality=0, fsound_loop_off +2011\submarine\cables_creak07.ogg, quality=0, fsound_loop_off +2011\submarine\cables_creak08.ogg, quality=0, fsound_loop_off +2011\submarine\clock_loop.ogg, quality=0, fsound_loop_off +2011\submarine\engine_component01.ogg, quality=0, fsound_loop_off +2011\submarine\engine_component02.ogg, quality=0, fsound_loop_off +2011\submarine\engine_component03.ogg, quality=0, fsound_loop_normal +2011\submarine\engine_component04.ogg, quality=0, fsound_loop_off +2011\submarine\engine_component05.ogg, quality=0, fsound_loop_off +2011\submarine\engine_component06.ogg, quality=0, fsound_loop_off +2011\submarine\engine_component07.ogg, quality=0, fsound_loop_off +2011\submarine\engine_component08.ogg, quality=0, fsound_loop_off +2011\submarine\engine_component09.ogg, quality=0, fsound_loop_off +2011\submarine\engine_component10.ogg, quality=0, fsound_loop_off +2011\submarine\engine_load.ogg, quality=0, fsound_loop_off +2011\submarine\hatch_door_open_close01.ogg, quality=0, fsound_loop_off +2011\submarine\hatch_door_open_close02.ogg, quality=0, fsound_loop_off +2011\submarine\hatch_door_open_close03.ogg, quality=0, fsound_loop_normal +2011\submarine\hatch_door_open_close04.ogg, quality=0, fsound_loop_off +2011\submarine\hatch_door_open_close05.ogg, quality=0, fsound_loop_off +2011\submarine\impact01.ogg, quality=0, fsound_loop_off +2011\submarine\impact02.ogg, quality=0, fsound_loop_off +2011\submarine\impact03.ogg, quality=0, fsound_loop_off +2011\submarine\impact04.ogg, quality=0, fsound_loop_off +2011\submarine\impact05.ogg, quality=0, fsound_loop_off +2011\submarine\impact06.ogg, quality=0, fsound_loop_off +2011\submarine\impact07.ogg, quality=0, fsound_loop_off +2011\submarine\impact08.ogg, quality=0, fsound_loop_off +2011\submarine\impact_heavy01.ogg, quality=0, fsound_loop_off +2011\submarine\impact_heavy02.ogg, quality=0, fsound_loop_off +2011\submarine\impact_heavy03.ogg, quality=0, fsound_loop_off +2011\submarine\impact_heavy04.ogg, quality=0, fsound_loop_off +2011\submarine\impact_heavy05.ogg, quality=0, fsound_loop_off +2011\submarine\impact_heavy06.ogg, quality=0, fsound_loop_off +2011\submarine\impact_heavy07.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_01.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_02.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_03.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_04.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_05.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_06.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_07.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_08.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_09.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_10.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_11.ogg, quality=0, fsound_loop_off +2011\submarine\metal_creak_light_12.ogg, quality=0, fsound_loop_off +2011\submarine\metal_screech01.ogg, quality=0, fsound_loop_off +2011\submarine\metal_screech02.ogg, quality=0, fsound_loop_off +2011\submarine\metal_screech03.ogg, quality=0, fsound_loop_off +2011\submarine\metal_screech04.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_a.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_b.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_c.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_comma.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_d.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_e.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_f.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_g.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_h.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_i.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_j.ogg, quality=0, fsound_loop_off +2011\submarine\morse_code_k.ogg, quality=0, fsound_loop_off +2011\submarine\sonar.ogg, quality=0, fsound_loop_off +2011\waves_submerged_01.ogg, quality=0, fsound_loop_off +2011\waves_submerged_02.ogg, quality=0, fsound_loop_off +2011\waves_submerged_03.ogg, quality=0, fsound_loop_off +2011\waves_submerged_04.ogg, quality=0, fsound_loop_off +2011\waves_submerged_05.ogg, quality=0, fsound_loop_off +2011\waves_submerged_06.ogg, quality=0, fsound_loop_off +2011\waves_submerged_07.ogg, quality=0, fsound_loop_off +2011\waves_submerged_08.ogg, quality=0, fsound_loop_off +ambient_one_four.ogg, quality=0, fsound_loop_off +ambient_one_loop.ogg, quality=0, fsound_loop_off +ambient_three.ogg, quality=0, fsound_loop_off +ambient_two.ogg, quality=0, fsound_loop_off +car\idle.ogg, quality=0, fsound_loop_normal +car\offhigh.ogg, quality=0, fsound_loop_off +car\offlow.ogg, quality=0, fsound_loop_off +car\offmid.ogg, quality=0, fsound_loop_normal +car\onhigh.ogg, quality=0, fsound_loop_normal +car\onlow.ogg, quality=0, fsound_loop_normal +car\onmid.ogg, quality=0, fsound_loop_normal +drum-loop.ogg, quality=0, fsound_loop_normal +interactive_music_1.ogg, quality=0, fsound_loop_normal +interactive_music_2.ogg, quality=0, fsound_loop_normal +interactive_music_3.ogg, quality=0, fsound_loop_normal +max_play_behavior_four.ogg, quality=0, fsound_loop_normal +max_play_behavior_one.ogg, quality=0, fsound_loop_normal +max_play_behavior_three.ogg, quality=0, fsound_loop_normal +max_play_behavior_two.ogg, quality=0, fsound_loop_normal +music\excited.ogg, quality=0, fsound_loop_normal +music\flsh-idle-01.ogg, quality=0, fsound_loop_normal +music\flsh-idle-02.ogg, quality=0, fsound_loop_normal +music\flsh-idle-03.ogg, quality=0, fsound_loop_normal +music\flsh-idle-04.ogg, quality=0, fsound_loop_normal +music\flsh-idle-05.ogg, quality=0, fsound_loop_normal +music\layer-bass-a.ogg, quality=0, fsound_loop_normal +music\layer-drums-a.ogg, quality=0, fsound_loop_normal +music\layer-drums-b.ogg, quality=0, fsound_loop_normal +music\layer-drums-c.ogg, quality=0, fsound_loop_normal +music\layer-drums-d.ogg, quality=0, fsound_loop_normal +music\layer-guitar-a.ogg, quality=0, fsound_loop_normal +music\layer-guitar-alt-a.ogg, quality=0, fsound_loop_normal +music\layer-guitar-alt-b.ogg, quality=0, fsound_loop_normal +music\layer-guitar-alt-c.ogg, quality=0, fsound_loop_off +music\layer-guitar-alt-d.ogg, quality=0, fsound_loop_off +music\layer-guitar-b.ogg, quality=0, fsound_loop_off +music\layer-guitar-c.ogg, quality=0, fsound_loop_off +music\layer-guitar-d.ogg, quality=0, fsound_loop_off +music\relaxed.ogg, quality=0, fsound_loop_off +music\state-idle-01.ogg, quality=0, fsound_loop_off +music\state-idle-02.ogg, quality=0, fsound_loop_off +music\state-idle-03.ogg, quality=0, fsound_loop_normal +music\state-idle-fadeout.ogg, quality=0, fsound_loop_normal +music\state-race-01a.ogg, quality=0, fsound_loop_normal +music\state-race-01b.ogg, quality=0, fsound_loop_normal +music\state-race-02a.ogg, quality=0, fsound_loop_off +music\state-race-02b.ogg, quality=0, fsound_loop_normal +music\state-race-finish.ogg, quality=0, fsound_loop_normal +music\state-race-start.ogg, quality=0, fsound_loop_normal +note.ogg, quality=0, fsound_loop_normal +onefootstep.wav, quality=0, fsound_loop_off +sequence-end.ogg, quality=0, fsound_loop_off +sequence-four.ogg, quality=0, fsound_loop_off +sequence-one.ogg, quality=0, fsound_loop_off +sequence-start.ogg, quality=0, fsound_loop_off +sequence-three.ogg, quality=0, fsound_loop_normal +sequence-two.ogg, quality=0, fsound_loop_normal diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/parameters/Makefile b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/parameters/Makefile new file mode 100644 index 0000000000..7be2e4a536 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/parameters/Makefile @@ -0,0 +1,8 @@ +all: main.cpp + g++ -O3 -o parameters -I../../../api/inc main.cpp ../../api/lib/libfmodevent.so -Wl,-rpath ../../../api/lib + +run: + ./parameters + +clean: + rm -f parameters diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/parameters/main.cpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/parameters/main.cpp new file mode 100644 index 0000000000..086284f105 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/parameters/main.cpp @@ -0,0 +1,145 @@ +/*=============================================================================================== + Parameters Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + Demonstrates basic usage of event parameters +===============================================================================================*/ +#include "../../../examples/common/wincompat.h" + +#include "../../api/inc/fmod_event.hpp" +#include "../../../api/inc/fmod_errors.h" + +const float UPDATE_INTERVAL = 100.0f; + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +int main(int argc, char *argv[]) +{ + FMOD::EventSystem *eventsystem; + FMOD::EventGroup *eventgroup; + FMOD::EventCategory *mastercategory; + FMOD::Event *car; + FMOD::EventParameter *rpm; + FMOD::EventParameter *load; + FMOD_RESULT result; + int key; + float rpm_val, rpm_min, rpm_max, rpm_increment, load_val, load_min, load_max, load_increment; + + printf("======================================================================\n"); + printf("Parameters Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("==============================-------=================================\n"); + printf("This demonstrates the use of FMOD event parameters. It simply plays an\n"); + printf("event, retrieves the parameters and allows the user to adjust them.\n"); + printf("======================================================================\n\n"); + + ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem)); + ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL)); + ERRCHECK(result = eventsystem->setMediaPath("../media/")); + ERRCHECK(result = eventsystem->load("examples.fev", 0, 0)); + ERRCHECK(result = eventsystem->getGroup("examples/AdvancedTechniques", FMOD_EVENT_DEFAULT, &eventgroup)); + ERRCHECK(result = eventgroup->getEvent("car", FMOD_EVENT_DEFAULT, &car)); + + ERRCHECK(result = eventsystem->getCategory("master", &mastercategory)); + + ERRCHECK(result = car->getParameter("load", &load)); + ERRCHECK(result = load->getRange(&load_min, &load_max)); + ERRCHECK(result = load->setValue(load_max)); + + ERRCHECK(result = car->getParameterByIndex(0, &rpm)); + ERRCHECK(result = rpm->getRange(&rpm_min, &rpm_max)); + ERRCHECK(result = rpm->setValue(1000.0f)); + + ERRCHECK(result = car->start()); + + printf("======================================================================\n"); + printf("Press '<' or ',' to decrease RPM\n"); + printf("Press '>' or '.' to increase RPM\n"); + printf("Press '-' or '_' to decrease load\n"); + printf("Press '+' or '=' to increase load\n"); + printf("Press ESC to quit\n"); + printf("======================================================================\n"); + + rpm_increment = (rpm_max - rpm_min) / UPDATE_INTERVAL; + ERRCHECK(result = rpm->getValue(&rpm_val)); + load_increment = (load_max - load_min) / UPDATE_INTERVAL; + ERRCHECK(result = load->getValue(&load_val)); + + key = 0; + do + { + if (_kbhit()) + { + key = _getch(); + + if (key == '<' || key == ',') + { + rpm_val -= rpm_increment; + if (rpm_val < rpm_min) + { + rpm_val = rpm_min; + } + + ERRCHECK(result = rpm->setValue(rpm_val)); + } + else if (key == '>' || key == '.') + { + rpm_val += rpm_increment; + if (rpm_val > rpm_max) + { + rpm_val = rpm_max; + } + + ERRCHECK(result = rpm->setValue(rpm_val)); + } + if (key == '-' || key == '_') + { + load_val -= load_increment; + if (load_val < load_min) + { + load_val = load_min; + } + + ERRCHECK(result = load->setValue(load_val)); + } + else if (key == '+' || key == '=') + { + load_val += load_increment; + if (load_val > load_max) + { + load_val = load_max; + } + + ERRCHECK(result = load->setValue(load_val)); + } + else if (key == ' ') + { + bool paused; + + ERRCHECK(result = mastercategory->getPaused(&paused)); + paused = !paused; + ERRCHECK(result = mastercategory->setPaused(paused)); + } + + } + + ERRCHECK(result = eventsystem->update()); + Sleep(15); + + printf("RPM = %.4f, load = %.4f \r", rpm_val, load_val); + fflush(stdout); + + } while (key != 27); + + ERRCHECK(result = eventgroup->freeEventData()); + ERRCHECK(result = eventsystem->release()); + return 0; +} diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_selected/Makefile b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_selected/Makefile new file mode 100644 index 0000000000..975fea3702 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_selected/Makefile @@ -0,0 +1,8 @@ +all: main.cpp + g++ -O3 -o programmer_selected -I../../../api/inc main.cpp ../../api/lib/libfmodevent.so -Wl,-rpath ../../../api/lib + +run: + ./programmer_selected + +clean: + rm -f programmer_selected diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_selected/main.cpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_selected/main.cpp new file mode 100644 index 0000000000..edeb56629e --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_selected/main.cpp @@ -0,0 +1,110 @@ +/*============================================================================= + Programmer Selected Sound Definition Example + Copyright (c), Firelight Technologies Pty, Ltd 2007-2011. + + Demonstrates how to use the "programmer selected sound definition" feature of + the FMOD event system +=============================================================================*/ +#include "../../../examples/common/wincompat.h" + +#include "../../api/inc/fmod_event.hpp" +#include "../../../api/inc/fmod_errors.h" + +const char *MEDIA_PATH = "../media/"; + +static int g_sounddef_entry_index = 0; + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +FMOD_RESULT F_CALLBACK eventcallback(FMOD_EVENT *event, FMOD_EVENT_CALLBACKTYPE type, void *param1, void *param2, void *userdata) +{ + switch (type) + { + case FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_SELECTINDEX : + { + char *name = (char *)param1; // [in] (char *) name of sound definition + int *index = (int *)param2; // [out] (int *) the sounddef entry index to use + + *index = (g_sounddef_entry_index < *index) ? g_sounddef_entry_index : *index - 1; + printf("FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_SELECTINDEX '%s': %d\n", name, *index); + + break; + } + } + + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD_RESULT result; + FMOD::EventSystem *eventsystem; + FMOD::EventGroup *eventgroup; + FMOD::Event *event; + int key; + + ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem)); + ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL)); + ERRCHECK(result = eventsystem->setMediaPath((char *)MEDIA_PATH)); + ERRCHECK(result = eventsystem->load("examples.fev", 0, 0)); + ERRCHECK(result = eventsystem->getGroup("examples/FeatureDemonstration/SequencingAndStitching", FMOD_EVENT_DEFAULT, &eventgroup)); + + printf("======================================================================\n"); + printf("Programmer Selected Sound Definition.\n"); + printf("Copyright (c) Firelight Technologies 2006-2011.\n"); + printf("----------------------------------------------------------------------\n"); + printf("Press 'Space' to start the 'Programmer Selected' event\n"); + printf("Press '>' to increase sound definition entry index\n"); + printf("Press '<' to decrease sound definition entry index\n"); + printf("Press 'Esc' to quit\n"); + printf("======================================================================\n"); + printf("Sound definition entry index = %d\n", g_sounddef_entry_index); + + key = 0; + do + { + if (_kbhit()) + { + key = _getch(); + + switch(key) + { + case ' ' : + ERRCHECK(result = eventgroup->getEvent("ProgrammerSelected", FMOD_EVENT_DEFAULT, &event)); + ERRCHECK(result = event->setCallback(eventcallback, 0)); + ERRCHECK(result = event->start()); + break; + + case '>' : + ++g_sounddef_entry_index; + printf("Sound definition entry index = %d\n", g_sounddef_entry_index); + break; + + case '<' : + --g_sounddef_entry_index; + g_sounddef_entry_index = (g_sounddef_entry_index < 0) ? 0 : g_sounddef_entry_index; + printf("Sound definition entry index = %d\n", g_sounddef_entry_index); + break; + } + } + + ERRCHECK(result = eventsystem->update()); + fflush(stdout); + Sleep(10); + + } while (key != 27); + + ERRCHECK(result = eventsystem->unload()); + ERRCHECK(result = eventsystem->release()); + return 0; +} diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_sound/Makefile b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_sound/Makefile new file mode 100644 index 0000000000..fbcefa25bc --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_sound/Makefile @@ -0,0 +1,8 @@ +all: main.cpp + g++ -O3 -o programmer_sound -I../../../api/inc main.cpp ../../api/lib/libfmodevent.so -Wl,-rpath ../../../api/lib + +run: + ./programmer_sound + +clean: + rm -f programmer_sound diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_sound/main.cpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_sound/main.cpp new file mode 100644 index 0000000000..9ba7a97493 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/programmer_sound/main.cpp @@ -0,0 +1,182 @@ +/*============================================================================== + Programmer Sound Example + Copyright (c), Firelight Technologies Pty, Ltd 2006-2011. + + Demonstrates how to use the "programmer sound" feature of the FMOD event system +==============================================================================*/ +#include "../../../examples/common/wincompat.h" + +#include "../../api/inc/fmod_event.hpp" +#include "../../../api/inc/fmod_errors.h" + +const char *MEDIA_PATH = "../media/"; +const char *FSB_NAME = "../media/tutorial_bank.fsb"; + +static int g_sound_index = 0; +static const int SOUND_INDEX_MAX = 4; +static int g_index_map[SOUND_INDEX_MAX]; + +FMOD::Sound *fsb; +FMOD::System *sys; + + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + + +void initIndexMap(FMOD::Sound *fsb) +{ + FMOD_RESULT result; + int numsubsounds, i; + + /* Sounds aren't in a logical order in the FSB, so we need to iterate + through and assign the appropriate filenames to the index map + */ + + ERRCHECK(result = fsb->getNumSubSounds(&numsubsounds)); + + for (i = 0; i < SOUND_INDEX_MAX; ++i) + { + g_index_map[i] = -1; + } + + for (i = 0; i < numsubsounds; ++i) + { + FMOD::Sound *sound; + char name[100]; + + ERRCHECK(result = fsb->getSubSound(i, &sound)); + ERRCHECK(result = sound->getName(name, 100)); + + if(strncmp(name, "sequence-one.ogg", 100) == 0) + { + g_index_map[0] = i; + } + else if(strncmp(name, "sequence-two.ogg", 100) == 0) + { + g_index_map[1] = i; + } + else if(strncmp(name, "sequence-three.ogg", 100) == 0) + { + g_index_map[2] = i; + } + else if(strncmp(name, "sequence-four.ogg", 100) == 0) + { + g_index_map[3] = i; + } + } +} + + +FMOD_RESULT F_CALLBACK eventcallback(FMOD_EVENT *event, FMOD_EVENT_CALLBACKTYPE type, void *param1, void *param2, void *userdata) +{ + FMOD_RESULT result; + + switch (type) + { + case FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE : + { + char *name = (char *)param1; // [in] (char *) name of sound definition + int entryindex = *((int *)param2); // [in] (int) index of sound definition entry + FMOD::Sound **s = (FMOD::Sound **)param2; // [out] (FMOD::Sound *) a valid lower level API FMOD Sound handle + char sound_name[128]; + + ERRCHECK((g_index_map[g_sound_index] >= 0) ? FMOD_OK : FMOD_ERR_SUBSOUNDS); + ERRCHECK(result = fsb->getSubSound(g_index_map[g_sound_index], s)); + ERRCHECK(result = (*s)->getName(sound_name, 128)); + printf("FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE '%s' (%d)\n", sound_name, g_index_map[g_sound_index]); + break; + } + + case FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_RELEASE : + { + FMOD::Sound *s = (FMOD::Sound *)param2; // [in] (FMOD::Sound *) the FMOD sound handle that was previously created in FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE + char sound_name[128]; + + ERRCHECK(result = s->getName(sound_name, 128)); + printf("FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_RELEASE '%s'\n", sound_name); + break; + } + } + + return FMOD_OK; +} + + +int main(int argc, char *argv[]) +{ + FMOD_RESULT result; + FMOD::EventSystem *eventsystem; + FMOD::EventGroup *eventgroup; + FMOD::Event *event; + int key; + + printf("======================================================================\n"); + printf("Programmer Sound. Copyright (c) Firelight Technologies 2006-2011.\n"); + printf("======================================================================\n"); + + ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem)); + ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL)); + ERRCHECK(result = eventsystem->setMediaPath((char *)MEDIA_PATH)); + ERRCHECK(result = eventsystem->load("examples.fev", 0, 0)); + ERRCHECK(result = eventsystem->getGroup("examples/FeatureDemonstration/SequencingAndStitching", FMOD_EVENT_DEFAULT, &eventgroup)); + + ERRCHECK(result = eventsystem->getSystemObject(&sys)); + ERRCHECK(result = sys->createStream(FSB_NAME, FMOD_2D | FMOD_SOFTWARE, 0, &fsb)); + + initIndexMap(fsb); + + printf("======================================================================\n"); + printf("Press 'Space' to start the 'Programmer Sound' event\n"); + printf("Press '>' to increase sound index\n"); + printf("Press '<' to decrease sound index\n"); + printf("Press 'Esc' to quit\n"); + printf("======================================================================\n"); + printf("Sound index = %d\n", g_sound_index + 1); + + key = 0; + do + { + if (_kbhit()) + { + key = _getch(); + + switch(key) + { + case ' ' : + ERRCHECK(result = eventgroup->getEvent("ProgrammerSounds", FMOD_EVENT_DEFAULT, &event)); + ERRCHECK(result = event->setCallback(eventcallback, 0)); + ERRCHECK(result = event->start()); + break; + + case '>' : + ++g_sound_index; + g_sound_index = (g_sound_index >= SOUND_INDEX_MAX) ? SOUND_INDEX_MAX - 1 : g_sound_index; + printf("Sound index = %d\n", g_sound_index + 1); + break; + + case '<' : + --g_sound_index; + g_sound_index = (g_sound_index < 0) ? 0 : g_sound_index; + printf("Sound index = %d\n", g_sound_index + 1); + break; + } + } + + ERRCHECK(result = eventsystem->update()); + fflush(stdout); + Sleep(10); + + } while (key != 27); + + ERRCHECK(result = eventsystem->unload()); + ERRCHECK(result = fsb->release()); + ERRCHECK(result = eventsystem->release()); + return 0; +} diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/realtime_tweaking/Makefile b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/realtime_tweaking/Makefile new file mode 100644 index 0000000000..c1e616f0ef --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/realtime_tweaking/Makefile @@ -0,0 +1,8 @@ +all: main.cpp + g++ -O3 -o realtime_tweaking -I../../../api/inc main.cpp ../../api/lib/libfmodeventnet.so -Wl,-rpath ../../../api/lib -Wl,-rpath ../../api/lib + +run: + ./realtime_tweaking + +clean: + rm -f realtime_tweaking diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/realtime_tweaking/main.cpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/realtime_tweaking/main.cpp new file mode 100644 index 0000000000..c96c13f605 --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/realtime_tweaking/main.cpp @@ -0,0 +1,115 @@ +/*=============================================================================================== + Realtime Tweaking Example + Copyright (c), Firelight Technologies Pty, Ltd 2010-2011. + + Demonstrates basic usage of FMOD's network data-driven event library (fmod_event_net.dll) +===============================================================================================*/ +#include "../../../examples/common/wincompat.h" + +#include "../../api/inc/fmod_event.hpp" +#include "../../api/inc/fmod_event_net.hpp" +#include "../../../api/inc/fmod_errors.h" + +const char *MEDIA_PATH = "../media/"; +const int NUM_EVENTS = 3; + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +FMOD_RESULT F_CALLBACK eventcallback(FMOD_EVENT *event, FMOD_EVENT_CALLBACKTYPE type, void *param1, void *param2, void *userdata) +{ + if (type == FMOD_EVENT_CALLBACKTYPE_NET_MODIFIED) + { + unsigned int t = (unsigned int)param2; + printf("%p %s %f (%d)\n", event, (unsigned int)param1 == FMOD_EVENTPROPERTY_VOLUME ? "volume" : FMOD_EVENTPROPERTY_PITCH ? "pitch" : "???", *((float *)&t), (unsigned int)userdata); + } + + return FMOD_OK; +} + +int main(int argc, char *argv[]) +{ + FMOD_RESULT result; + FMOD::EventSystem *eventsystem; + FMOD::EventGroup *eventgroup; + FMOD::Event *event[NUM_EVENTS]; + char *event_name[NUM_EVENTS] = { + "Basics/BasicEventWithLooping", + "SequencingAndStitching/LoopLogic", + "3D Events/2D-3DPanMorph" + }; + int key, i, userdata = 0; + + printf("======================================================================\n"); + printf("Realtime Tweaking. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("======================================================================\n"); + printf("This example shows how to initialize the FMOD Net Event System so that\n"); + printf("FMOD Designer can connect to your game and tweak events as they're\n"); + printf("playing.\n"); + printf("Start some events then connect to this app using the Audition menu\n"); + printf("in FMOD Designer. Load examples.fdp and change the \n"); + printf("volume of the playing events using the volume slider in the event\n"); + printf("property sheet\n"); + printf("======================================================================\n\n"); + + ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem)); + ERRCHECK(result = FMOD::NetEventSystem_Init(eventsystem)); + ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL)); + ERRCHECK(result = eventsystem->setMediaPath((char *)MEDIA_PATH)); + ERRCHECK(result = eventsystem->load("examples.fev", 0, 0)); + ERRCHECK(result = eventsystem->getGroup("examples/FeatureDemonstration", FMOD_EVENT_DEFAULT, &eventgroup)); + + for (i=0; i < NUM_EVENTS; i++) + { + event[i] = 0; + } + + printf("======================================================================\n"); + printf("Press 1 - 3 to start/stop events\n"); + printf("Press ESC to quit\n"); + printf("======================================================================\n"); + + key = 0; + do + { + if (_kbhit()) + { + key = _getch(); + + if ((key >= '1') && (key <= '3')) + { + i = (int)(key - '1'); + + if (event[i]) + { + ERRCHECK(result = event[i]->stop()); + event[i] = 0; + printf("Stopping '%s'\n", event_name[i]); + } + else + { + ERRCHECK(result = eventgroup->getEvent(event_name[i], FMOD_EVENT_DEFAULT, &event[i])); + ERRCHECK(result = event[i]->setCallback(eventcallback, (void *)(userdata++))); + ERRCHECK(result = event[i]->start()); + printf("Starting '%s'\n", event_name[i]); + } + } + } + + ERRCHECK(result = eventsystem->update()); + ERRCHECK(result = FMOD::NetEventSystem_Update()); + Sleep(10); + + } while (key != 27); + + ERRCHECK(result = eventsystem->release()); + ERRCHECK(result = FMOD::NetEventSystem_Shutdown()); + return 0; +} + diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/simple_event/Makefile b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/simple_event/Makefile new file mode 100644 index 0000000000..aee8bf5f5a --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/simple_event/Makefile @@ -0,0 +1,8 @@ +all: main.cpp + g++ -O3 -o simple_event -I../../../api/inc main.cpp ../../api/lib/libfmodevent.so -Wl,-rpath ../../../api/lib + +run: + ./simple_event + +clean: + rm -f simple_event diff --git a/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/simple_event/main.cpp b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/simple_event/main.cpp new file mode 100644 index 0000000000..b2bca0ccab --- /dev/null +++ b/CocosDenshion/third_party/fmod/fmoddesignerapi/examples/simple_event/main.cpp @@ -0,0 +1,70 @@ +/*=============================================================================================== + SimpleEvent Example + Copyright (c), Firelight Technologies Pty, Ltd 2004-2011. + + Demonstrates basic usage of FMOD's data-driven event library (fmod_event.dll) +===============================================================================================*/ +#include "../../../examples/common/wincompat.h" + +#include "../../api/inc/fmod_event.hpp" +#include "../../../api/inc/fmod_errors.h" + +void ERRCHECK(FMOD_RESULT result) +{ + if (result != FMOD_OK) + { + printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); + exit(-1); + } +} + +int main(int argc, char *argv[]) +{ + FMOD::EventSystem *eventsystem; + FMOD::Event *event; + FMOD_RESULT result; + int key; + + printf("======================================================================\n"); + printf("Simple Event Example. Copyright (c) Firelight Technologies 2004-2011.\n"); + printf("======================================================================\n"); + printf("This example simply plays an event created with the FMOD Designer tool.\n"); + printf("======================================================================\n\n"); + + ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem)); + ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL)); + ERRCHECK(result = eventsystem->setMediaPath("../media/")); + ERRCHECK(result = eventsystem->load("examples.fev", 0, 0)); + ERRCHECK(result = eventsystem->getEvent("examples/FeatureDemonstration/Basics/SimpleEvent", FMOD_EVENT_DEFAULT, &event)); + + printf("======================================================================\n"); + printf("Press SPACE to play the event.\n"); + printf("Press ESC to quit\n"); + printf("======================================================================\n"); + + key = 0; + do + { + if (_kbhit()) + { + key = _getch(); + + if (key == ' ') + { + ERRCHECK(result = event->start()); + } + } + + ERRCHECK(result = eventsystem->update()); + Sleep(15); + + FMOD_EVENT_STATE state; + ERRCHECK(result = event->getState(&state)); + printf("Event is %s \r", (state & FMOD_EVENT_STATE_PLAYING) ? "playing" : "stopped"); + fflush(stdout); + + } while (key != 27); + + ERRCHECK(result = eventsystem->release()); + return 0; +} diff --git a/CocosDenshion/third_party/fmod/tools/fsbanklib/Makefile b/CocosDenshion/third_party/fmod/tools/fsbanklib/Makefile new file mode 100644 index 0000000000..513c0e5c14 --- /dev/null +++ b/CocosDenshion/third_party/fmod/tools/fsbanklib/Makefile @@ -0,0 +1,5 @@ +all: example.cpp + g++ -O3 -o example example.cpp libfsbankex.a ../../api/lib/libfmodex.so + +clean: + rm -f example diff --git a/CocosDenshion/third_party/fmod/tools/fsbanklib/example.REMOVED.git-id b/CocosDenshion/third_party/fmod/tools/fsbanklib/example.REMOVED.git-id new file mode 100644 index 0000000000..e7c10d0c9a --- /dev/null +++ b/CocosDenshion/third_party/fmod/tools/fsbanklib/example.REMOVED.git-id @@ -0,0 +1 @@ +fdfc1c2e53360fcdf023e23a6974107ef8f22be0 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/tools/fsbanklib/example.cpp b/CocosDenshion/third_party/fmod/tools/fsbanklib/example.cpp new file mode 100644 index 0000000000..5035cbdafa --- /dev/null +++ b/CocosDenshion/third_party/fmod/tools/fsbanklib/example.cpp @@ -0,0 +1,369 @@ +/* + This example builds the FSB's required for the Designer API examples. +*/ + +#include "fsbank.h" +#include +#include +#include + +const char *gTutorialFileNames[] = +{ + "../../fmoddesignerapi/examples/media/2011/2011_cycle_off.ogg", + "../../fmoddesignerapi/examples/media/2011/2011_cycle_on.ogg", + "../../fmoddesignerapi/examples/media/2011/2011_cycle_sustain01.ogg", + "../../fmoddesignerapi/examples/media/2011/2011_cycle_sustain02.ogg", + "../../fmoddesignerapi/examples/media/2011/2011_cycle_sustain_spawn_grain.ogg", + "../../fmoddesignerapi/examples/media/2011/beep01.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call01.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call02.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call03.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call04.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call05.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call06.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call07.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call08.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call09.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call10.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call11.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call12.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call13.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call14.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call15.ogg", + "../../fmoddesignerapi/examples/media/2011/bird_call16.ogg", + "../../fmoddesignerapi/examples/media/2011/bubble_burst01.ogg", + "../../fmoddesignerapi/examples/media/2011/bubble_burst02.ogg", + "../../fmoddesignerapi/examples/media/2011/bubble_burst03.ogg", + "../../fmoddesignerapi/examples/media/2011/bubble_burst04.ogg", + "../../fmoddesignerapi/examples/media/2011/bubble_burst05.ogg", + "../../fmoddesignerapi/examples/media/2011/bubble_burst06.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_close01.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_close02.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_close03.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_close04.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_close05.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_close06.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_small01.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_small02.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_small03.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_small04.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_small05.ogg", + "../../fmoddesignerapi/examples/media/2011/bubbles_small06.ogg", + "../../fmoddesignerapi/examples/media/2011/cricket_single_cycle.ogg", + "../../fmoddesignerapi/examples/media/2011/crickets.ogg", + "../../fmoddesignerapi/examples/media/2011/decending tone.ogg", + "../../fmoddesignerapi/examples/media/2011/detonation01.ogg", + "../../fmoddesignerapi/examples/media/2011/detonation02.ogg", + "../../fmoddesignerapi/examples/media/2011/detonation03.ogg", + "../../fmoddesignerapi/examples/media/2011/detonation04.ogg", + "../../fmoddesignerapi/examples/media/2011/detonation05.ogg", + "../../fmoddesignerapi/examples/media/2011/detonation06.ogg", + "../../fmoddesignerapi/examples/media/2011/earth_debris01.ogg", + "../../fmoddesignerapi/examples/media/2011/earth_debris02.ogg", + "../../fmoddesignerapi/examples/media/2011/earth_debris03.ogg", + "../../fmoddesignerapi/examples/media/2011/earth_debris04.ogg", + "../../fmoddesignerapi/examples/media/2011/earth_debris05.ogg", + "../../fmoddesignerapi/examples/media/2011/earth_debris06.ogg", + "../../fmoddesignerapi/examples/media/2011/earth_debris07.ogg", + "../../fmoddesignerapi/examples/media/2011/earth_debris08.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_long01.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_long02.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_long03.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_long04.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_long05.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_long06.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_short01.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_short02.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_short03.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_short04.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_short05.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_short06.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_small01.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_small02.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_small03.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_small04.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_small05.ogg", + "../../fmoddesignerapi/examples/media/2011/flame_burst_small06.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_concrete_01.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_concrete_02.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_concrete_03.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_concrete_04.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_concrete_05.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_concrete_06.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_concrete_07.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_concrete_08.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_leaves01.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_leaves02.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_leaves03.ogg", + "../../fmoddesignerapi/examples/media/2011/footsteps_leaves04.ogg", + "../../fmoddesignerapi/examples/media/2011/frog01.ogg", + "../../fmoddesignerapi/examples/media/2011/frog02.ogg", + "../../fmoddesignerapi/examples/media/2011/frog03.ogg", + "../../fmoddesignerapi/examples/media/2011/frog04.ogg", + "../../fmoddesignerapi/examples/media/2011/glass_shard_smash01.ogg", + "../../fmoddesignerapi/examples/media/2011/glass_shard_smash02.ogg", + "../../fmoddesignerapi/examples/media/2011/glass_shard_smash03.ogg", + "../../fmoddesignerapi/examples/media/2011/glass_shard_smash04.ogg", + "../../fmoddesignerapi/examples/media/2011/glass_shard_smash05.ogg", + "../../fmoddesignerapi/examples/media/2011/glass_shard_smash06.ogg", + "../../fmoddesignerapi/examples/media/2011/glass_shard_smash07.ogg", + "../../fmoddesignerapi/examples/media/2011/glass_shard_smash08.ogg", + "../../fmoddesignerapi/examples/media/2011/metal_fragment01.ogg", + "../../fmoddesignerapi/examples/media/2011/metal_fragment02.ogg", + "../../fmoddesignerapi/examples/media/2011/metal_fragment03.ogg", + "../../fmoddesignerapi/examples/media/2011/metal_fragment04.ogg", + "../../fmoddesignerapi/examples/media/2011/metal_fragment05.ogg", + "../../fmoddesignerapi/examples/media/2011/metal_fragment06.ogg", + "../../fmoddesignerapi/examples/media/2011/metal_fragment07.ogg", + "../../fmoddesignerapi/examples/media/2011/metal_fragment08.ogg", + "../../fmoddesignerapi/examples/media/2011/rifle_blast01.ogg", + "../../fmoddesignerapi/examples/media/2011/rifle_blast02.ogg", + "../../fmoddesignerapi/examples/media/2011/rifle_blast03.ogg", + "../../fmoddesignerapi/examples/media/2011/shotgun_blast01.ogg", + "../../fmoddesignerapi/examples/media/2011/shotgun_blast02.ogg", + "../../fmoddesignerapi/examples/media/2011/shotgun_blast03.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_large01.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_large02.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_large03.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_large04.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_large05.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_medium01.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_medium02.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_medium03.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_medium04.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_medium05.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_medium06.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_medium07.ogg", + "../../fmoddesignerapi/examples/media/2011/splash_medium08.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/bow_still01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/bow_still02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/bow_wake01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/bow_wake02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/bow_wake03.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/buzz01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/buzz02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/cables_creak01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/cables_creak02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/cables_creak03.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/cables_creak04.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/cables_creak05.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/cables_creak06.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/cables_creak07.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/cables_creak08.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/clock_loop.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component03.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component04.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component05.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component06.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component07.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component08.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component09.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_component10.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/engine_load.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/hatch_door_open_close01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/hatch_door_open_close02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/hatch_door_open_close03.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/hatch_door_open_close04.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/hatch_door_open_close05.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact03.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact04.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact05.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact06.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact07.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact08.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact_heavy01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact_heavy02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact_heavy03.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact_heavy04.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact_heavy05.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact_heavy06.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/impact_heavy07.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_03.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_04.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_05.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_06.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_07.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_08.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_09.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_10.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_11.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_creak_light_12.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_screech01.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_screech02.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_screech03.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/metal_screech04.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_a.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_b.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_c.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_comma.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_d.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_e.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_f.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_g.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_h.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_i.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_j.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/morse_code_k.ogg", + "../../fmoddesignerapi/examples/media/2011/submarine/sonar.ogg", + "../../fmoddesignerapi/examples/media/2011/waves_submerged_01.ogg", + "../../fmoddesignerapi/examples/media/2011/waves_submerged_02.ogg", + "../../fmoddesignerapi/examples/media/2011/waves_submerged_03.ogg", + "../../fmoddesignerapi/examples/media/2011/waves_submerged_04.ogg", + "../../fmoddesignerapi/examples/media/2011/waves_submerged_05.ogg", + "../../fmoddesignerapi/examples/media/2011/waves_submerged_06.ogg", + "../../fmoddesignerapi/examples/media/2011/waves_submerged_07.ogg", + "../../fmoddesignerapi/examples/media/2011/waves_submerged_08.ogg", + "../../fmoddesignerapi/examples/media/ambient_one_four.ogg", + "../../fmoddesignerapi/examples/media/ambient_one_loop.ogg", + "../../fmoddesignerapi/examples/media/ambient_three.ogg", + "../../fmoddesignerapi/examples/media/ambient_two.ogg", + "../../fmoddesignerapi/examples/media/car/idle.ogg", + "../../fmoddesignerapi/examples/media/car/offhigh.ogg", + "../../fmoddesignerapi/examples/media/car/offlow.ogg", + "../../fmoddesignerapi/examples/media/car/offmid.ogg", + "../../fmoddesignerapi/examples/media/car/onhigh.ogg", + "../../fmoddesignerapi/examples/media/car/onlow.ogg", + "../../fmoddesignerapi/examples/media/car/onmid.ogg", + "../../fmoddesignerapi/examples/media/drum-loop.ogg", + "../../fmoddesignerapi/examples/media/interactive_music_1.ogg", + "../../fmoddesignerapi/examples/media/interactive_music_2.ogg", + "../../fmoddesignerapi/examples/media/interactive_music_3.ogg", + "../../fmoddesignerapi/examples/media/max_play_behavior_four.ogg", + "../../fmoddesignerapi/examples/media/max_play_behavior_one.ogg", + "../../fmoddesignerapi/examples/media/max_play_behavior_three.ogg", + "../../fmoddesignerapi/examples/media/max_play_behavior_two.ogg", + "../../fmoddesignerapi/examples/media/music/excited.ogg", + "../../fmoddesignerapi/examples/media/music/flsh-idle-01.ogg", + "../../fmoddesignerapi/examples/media/music/flsh-idle-02.ogg", + "../../fmoddesignerapi/examples/media/music/flsh-idle-03.ogg", + "../../fmoddesignerapi/examples/media/music/flsh-idle-04.ogg", + "../../fmoddesignerapi/examples/media/music/flsh-idle-05.ogg", + "../../fmoddesignerapi/examples/media/music/layer-bass-a.ogg", + "../../fmoddesignerapi/examples/media/music/layer-drums-a.ogg", + "../../fmoddesignerapi/examples/media/music/layer-drums-b.ogg", + "../../fmoddesignerapi/examples/media/music/layer-drums-c.ogg", + "../../fmoddesignerapi/examples/media/music/layer-drums-d.ogg", + "../../fmoddesignerapi/examples/media/music/layer-guitar-a.ogg", + "../../fmoddesignerapi/examples/media/music/layer-guitar-alt-a.ogg", + "../../fmoddesignerapi/examples/media/music/layer-guitar-alt-b.ogg", + "../../fmoddesignerapi/examples/media/music/layer-guitar-alt-c.ogg", + "../../fmoddesignerapi/examples/media/music/layer-guitar-alt-d.ogg", + "../../fmoddesignerapi/examples/media/music/layer-guitar-b.ogg", + "../../fmoddesignerapi/examples/media/music/layer-guitar-c.ogg", + "../../fmoddesignerapi/examples/media/music/layer-guitar-d.ogg", + "../../fmoddesignerapi/examples/media/music/relaxed.ogg", + "../../fmoddesignerapi/examples/media/music/state-idle-01.ogg", + "../../fmoddesignerapi/examples/media/music/state-idle-02.ogg", + "../../fmoddesignerapi/examples/media/music/state-idle-03.ogg", + "../../fmoddesignerapi/examples/media/music/state-idle-fadeout.ogg", + "../../fmoddesignerapi/examples/media/music/state-race-01a.ogg", + "../../fmoddesignerapi/examples/media/music/state-race-01b.ogg", + "../../fmoddesignerapi/examples/media/music/state-race-02a.ogg", + "../../fmoddesignerapi/examples/media/music/state-race-02b.ogg", + "../../fmoddesignerapi/examples/media/music/state-race-finish.ogg", + "../../fmoddesignerapi/examples/media/music/state-race-start.ogg", + "../../fmoddesignerapi/examples/media/note.ogg", + "../../fmoddesignerapi/examples/media/onefootstep.wav", + "../../fmoddesignerapi/examples/media/sequence-end.ogg", + "../../fmoddesignerapi/examples/media/sequence-four.ogg", + "../../fmoddesignerapi/examples/media/sequence-one.ogg", + "../../fmoddesignerapi/examples/media/sequence-start.ogg", + "../../fmoddesignerapi/examples/media/sequence-three.ogg", + "../../fmoddesignerapi/examples/media/sequence-two.ogg", +}; + +const char *gStreamingFileNames[] = +{ + "../../fmoddesignerapi/examples/media/interactive_music_6channel.ogg" +}; + +const unsigned int gNumTutorialFileNames = sizeof(gTutorialFileNames) / sizeof(char *); +const unsigned int gNumStreamingFileNames = sizeof(gStreamingFileNames) / sizeof(char *); + +#define CHECK_RESULT(_x) { FSBANK_RESULT _result = (_x); if (_result != FSBANK_OK) { return _result; } } + +FSBANK_RESULT printErrors(const FSBANK_SUBSOUND *subSounds) +{ + FSBANK_RESULT result = FSBANK_OK; + const FSBANK_PROGRESSITEM *item = NULL; + + printf("Build Error!\n"); + + do + { + result = FSBank_FetchNextProgressItem(&item); + CHECK_RESULT(result); + + if (item) + { + if (item->state == FSBANK_STATE_FAILED) + { + const FSBANK_STATEDATA_FAILED *failedStateData = (const FSBANK_STATEDATA_FAILED *)item->stateData; + printf("Error: %s -- \"%s\"\n", failedStateData->errorString, item->subSoundIndex < 0 ? "System" : subSounds[item->subSoundIndex].fileNames[0]); + } + + result = FSBank_ReleaseProgressItem(item); + CHECK_RESULT(result); + } + } while (item != NULL); + + return FSBANK_OK; +} + + +FSBANK_RESULT buildBank(const char **fileNames, unsigned int numFileNames, const char *outputFileName) +{ + FSBANK_RESULT result = FSBANK_OK; + FSBANK_SUBSOUND *subSounds = (FSBANK_SUBSOUND *)alloca(numFileNames * sizeof(FSBANK_SUBSOUND)); + + for (unsigned int i = 0; i < numFileNames; i++) + { + memset(&subSounds[i], 0, sizeof(FSBANK_SUBSOUND)); + + subSounds[i].fileNames = &fileNames[i]; + subSounds[i].numFileNames = 1; + subSounds[i].modeFlags = FSBANK_MODE_DEFAULT; + subSounds[i].overrideFlags = FSBANK_BUILD_DEFAULT; + subSounds[i].overrideQuality = 0; + subSounds[i].desiredSampleRate = 0; + } + + printf("Building %s...\n", outputFileName); + + result = FSBank_Build(subSounds, numFileNames, FSBANK_FORMAT_MP3, FSBANK_BUILD_DEFAULT | FSBANK_BUILD_DONTLOOP, 0, NULL, outputFileName); + if (result != FSBANK_OK) + { + printErrors(subSounds); + return result; + } + + printf("done.\n"); + return FSBANK_OK; +} + + +int main(void) +{ + FSBANK_RESULT result = FSBANK_OK; + + result = FSBank_Init(FSBANK_FSBVERSION_FSB4, FSBANK_INIT_NORMAL | FSBANK_INIT_GENERATEPROGRESSITEMS, 2, NULL); + CHECK_RESULT(result); + + result = buildBank(gTutorialFileNames, gNumTutorialFileNames, "tutorial_bank.fsb"); + CHECK_RESULT(result); + + result = buildBank(gStreamingFileNames, gNumStreamingFileNames, "streaming_bank.fsb"); + CHECK_RESULT(result); + + result = FSBank_Release(); + CHECK_RESULT(result); + + return FSBANK_OK; +} + diff --git a/CocosDenshion/third_party/fmod/tools/fsbanklib/fsbank.h b/CocosDenshion/third_party/fmod/tools/fsbanklib/fsbank.h new file mode 100644 index 0000000000..d3989c51e1 --- /dev/null +++ b/CocosDenshion/third_party/fmod/tools/fsbanklib/fsbank.h @@ -0,0 +1,258 @@ +#ifndef _FSBANK_H +#define _FSBANK_H + +#if defined(_WIN32) + #define FB_API __declspec(dllexport) _stdcall +#else + #define FB_API +#endif + +typedef unsigned int FSBANK_INITFLAGS; + +#define FSBANK_INIT_NORMAL 0x00000000 /* Initialize normally. */ +#define FSBANK_INIT_IGNOREERRORS 0x00000001 /* Ignore individual subsound build errors, continue building for as long as possible. */ +#define FSBANK_INIT_WARNINGSASERRORS 0x00000002 /* Treat any warnings issued as errors. */ +#define FSBANK_INIT_CREATEINCLUDEHEADER 0x00000004 /* Create C header files with #defines defining indicies for each member of the FSB. */ +#define FSBANK_INIT_DONTLOADCACHEFILES 0x00000008 /* Ignore existing cache files. */ +#define FSBANK_INIT_GENERATEPROGRESSITEMS 0x00000010 /* Generate status items that can be queried by another thread to monitor the build progress and give detailed error messages. */ + + +typedef unsigned int FSBANK_BUILDFLAGS; + +#define FSBANK_BUILD_DEFAULT 0x00000000 /* Build with default settings. */ +#define FSBANK_BUILD_DISABLESYNCPOINTS 0x00000001 /* Disable the storing of syncpoints in the output */ +#define FSBANK_BUILD_DONTLOOP 0x00000002 /* Disable perfect loop encoding and sound stretching. Removes chirps from the start of oneshot MP2, MP3 and IMAADPCM sounds. */ +#define FSBANK_BUILD_FILTERHIGHFREQ 0x00000004 /* XMA only. Enable high frequency filtering. */ +#define FSBANK_BUILD_DISABLESEEKING 0x00000008 /* XMA only. Disable seek tables to save memory. */ +#define FSBANK_BUILD_OPTIMIZESAMPLERATE 0x00000010 /* Attempt to optimize the sample rate down. Ignored if format is MP2, MP3 or CELT or if FSB4 basic headers flag is used. */ +#define FSBANK_BUILD_DONTINTERLEAVE 0x00000020 /* VAG and GCADPCM only. Don't interleave the data as LRLRLRLR... instead use LLLLRRRR type encoding. Speeds up loading for samples (not streams, streams must remained interleaved), allows FMOD_OPENMEMORY_POINT. */ +#define FSBANK_BUILD_FSB4_USEBASICHEADERS 0x00000040 /* FSB4 format only. Generate FSBs with small sample header data. They only contain basic information such as sample length, and everything else has its attributes inherited from the first sample (for example the default frequency). */ + +/* Build flag mask that specifies which settings can be overriden per subsound. */ +#define FSBANK_BUILD_OVERRIDE_MASK (FSBANK_BUILD_DISABLESYNCPOINTS | FSBANK_BUILD_DONTLOOP | FSBANK_BUILD_FILTERHIGHFREQ | FSBANK_BUILD_DISABLESEEKING | FSBANK_BUILD_OPTIMIZESAMPLERATE | FSBANK_BUILD_DONTINTERLEAVE) +/* Build flag mask that specifies which settings (when changed) invalidate a cache file. */ +#define FSBANK_BUILD_CACHE_VALIDATION_MASK (FSBANK_BUILD_DONTLOOP | FSBANK_BUILD_FILTERHIGHFREQ | FSBANK_BUILD_OPTIMIZESAMPLERATE | FSBANK_BUILD_DONTINTERLEAVE) + + +typedef unsigned int FSBANK_MODEFLAGS; + +#define FSBANK_MODE_DEFAULT 0x00000000 /* Sample has default mode settings. */ +#define FSBANK_MODE_FSB4_ALLMONO 0x00000400 /* Sample is a collection of mono channels. */ +#define FSBANK_MODE_FSB4_ALLSTEREO 0x00000800 /* Sample is a collection of stereo channel pairs. */ +#define FSBANK_MODE_FSB4_PROTOOLS 0x00010000 /* Sample is 6ch and uses L C R LS RS LFE standard. */ + + +typedef enum FSBANK_RESULT +{ + FSBANK_OK, /* No errors. */ + FSBANK_ERR_CACHE_CHUNKNOTFOUND, /* An expected chunk is missing from the cache, perhaps try deleting cache files. */ + FSBANK_ERR_CANCELLED, /* The build process was cancelled during compilation by the user. */ + FSBANK_ERR_CANNOT_CONTINUE, /* The build process cannot continue due to previously ignored errors. */ + FSBANK_ERR_ENCODER, /* Encoder for chosen format has encountered an unexpected error. */ + FSBANK_ERR_ENCODER_INIT, /* Encoder initialization failed. */ + FSBANK_ERR_ENCODER_NOTSUPPORTED, /* Encoder for chosen format is not supported on this platform. */ + FSBANK_ERR_FILE_OS, /* An operating system based file error was encountered. */ + FSBANK_ERR_FILE_NOTFOUND, /* A specified file could not be found. */ + FSBANK_ERR_FMOD, /* Internal error from FMOD sub-system. */ + FSBANK_ERR_INITIALIZED, /* Already initialized. */ + FSBANK_ERR_INVALID_FORMAT, /* The format of the source file is invalid, see output for details. */ + FSBANK_ERR_INVALID_PARAM, /* An invalid parameter has been passed to this function. */ + FSBANK_ERR_MEMORY, /* Ran out of memory. */ + FSBANK_ERR_UNINITIALIZED, /* Not initialized yet. */ + FSBANK_WARN_CANNOTLOOP, /* Source file is too short for seamless looping. Looping disabled. */ + FSBANK_WARN_IGNORED_OPTIMIZESAMPLERATE, /* FSBANK_BUILD_OPTIMIZESAMPLERATE flag ignored: MP2, MP3 and CELT formats, and the USEBASICHEADERS flag make this option irrelevant. */ + FSBANK_WARN_IGNORED_FILTERHIGHFREQ, /* FSBANK_BUILD_FILTERHIGHFREQ flag ignored: feature only supported by XMA format. */ + FSBANK_WARN_IGNORED_DISABLESEEKING, /* FSBANK_BUILD_DISABLESEEKING flag ignored: feature only supported by XMA format. */ + FSBANK_WARN_IGNORED_DONTINTERLEAVE, /* FSBANK_BUILD_DONTINTERLEAVE flag ignored: feature only supported by VAG and GCADPCM formats. */ +} FSBANK_RESULT; + + +typedef enum FSBANK_FORMAT +{ + FSBANK_FORMAT_PCM, /* PCM (1:1) All platforms. */ + FSBANK_FORMAT_PCM_BIGENDIAN, /* PCM Big Endian (1:1) Xbox360 and PS3 only. */ + FSBANK_FORMAT_IMAADPCM, /* IMA ADPCM (3.5:1) All platforms. */ + FSBANK_FORMAT_MP2, /* MPEG Layer 2 (CBR) All platforms except PS3. Depends on toolame. */ + FSBANK_FORMAT_MP3, /* MPEG Layer 3 (CBR) All platforms. Depends on libmp3lame. */ + FSBANK_FORMAT_XMA, /* XMA (VBR) Xbox360 only (hardware). Depends on xmaencoder. */ + FSBANK_FORMAT_GCADPCM, /* GCADPCM (3.5:1) Wii Only (hardware). Depends on dsptool. */ + FSBANK_FORMAT_VAG, /* VAG (3.5:1) PSP and PS2 only (hardware). Depends on encvag. */ + FSBANK_FORMAT_HEVAG, /* High Efficiency VAG (3.5:1) NGP only (hardware). Depends on vagconv2. */ + FSBANK_FORMAT_CELT, /* Constrained Energy Lapped Transform (CBR) All platforms. Depends on celt_encoder. */ + + FSBANK_FORMAT_MAX /* Upper bound for this enumeration, for use with validation */ +} FSBANK_FORMAT; + + +typedef enum FSBANK_FSBVERSION +{ + FSBANK_FSBVERSION_FSB4, /* Produce FSB version 4 files. */ + + FSBANK_FSBVERSION_MAX /* Upper bound for this enumeration, for use with validation */ +} FSBANK_FSBVERSION; + + +typedef enum FSBANK_STATE +{ + FSBANK_STATE_DECODING, /* Decode a file to usable raw sample data. */ + FSBANK_STATE_ANALYSING, /* Scan sound data for details (such as optimized sample rate). */ + FSBANK_STATE_PREPROCESSING, /* Prepares sound data for encoder. */ + FSBANK_STATE_ENCODING, /* Pass the sample data to the chosen encoder. */ + FSBANK_STATE_WRITING, /* Write encoded data into an FSB. */ + FSBANK_STATE_FINISHED, /* Process complete. */ + FSBANK_STATE_FAILED, /* An error has occured, check data (as FSBANK_STATEDATA_FAILED) for details. */ + FSBANK_STATE_WARNING, /* A warning has been issued, check data (as FSBANK_STATEDATA_WARNING) for details. */ +} FSBANK_STATE; + + +typedef struct FSBANK_SUBSOUND +{ + const char* const *fileNames; /* List of file names used to produce an interleaved sound. */ + unsigned int numFileNames; /* Number of files in above file name list, up to 16. */ + FSBANK_MODEFLAGS modeFlags; /* Flags that affect the runtime mode for this subsound. */ + FSBANK_BUILDFLAGS overrideFlags; /* Flags that will reverse the equivalent flags passed to FSBank_Build. */ + unsigned int overrideQuality; /* Override the quality setting passed to FSBank_Build. */ + float desiredSampleRate; /* Resample to this sample rate (ignores optimize sample rate setting), up to 192000Hz. */ + float percentOptimizedRate; /* If using FSBANK_BUILD_OPTIMIZESAMPLERATE, this is the percentage of that rate to be used, up to 100.0%. */ +} FSBANK_SUBSOUND; + + +typedef struct FSBANK_PROGRESSITEM +{ + int subSoundIndex; /* Index into the subsound list passed to FSBank_Build that this update relates to (-1 indicates no specific subsound). */ + int threadIndex; /* Which thread index is serving this update (-1 indicates FSBank_Build / main thread). */ + FSBANK_STATE state; /* Progress through the encoding process. */ + const void *stateData; /* Cast to state specific data structure for extra information. */ +} FSBANK_PROGRESSITEM; + + +typedef struct FSBANK_STATEDATA_FAILED +{ + FSBANK_RESULT errorCode; /* Error result code. */ + char errorString[256]; /* Description for error code. */ +} FSBANK_STATEDATA_FAILED; + + +typedef struct FSBANK_STATEDATA_WARNING +{ + FSBANK_RESULT warnCode; /* Warning result code. */ + char warningString[256]; /* Description for warning code. */ +} FSBANK_STATEDATA_WARNING; + + +#ifdef __cplusplus +extern "C" { +#endif + +/* +[API] +[ + [DESCRIPTION] + Initialize the FSBank system. + + [PARAMETERS] + 'version' FSB version, currently only FSBANK_FSBVERSION_FSB4 is supported. + 'flags' Initialization flags which control how the system behaves. + 'numSimultaneousJobs' The maximum number of threads to create for parallel encoding. Set this + to your number of CPU 'cores' for best performance. + 'cacheDirectory' Optional location to store the temporary cache files, default is a + directory off the current working directory. +] +*/ +FSBANK_RESULT FB_API FSBank_Init(FSBANK_FSBVERSION version, FSBANK_INITFLAGS flags, unsigned int numSimultaneousJobs, const char *cacheDirectory); + + +/* +[API] +[ + [DESCRIPTION] + Release the FSBank system, clean up used resources. + + Note: All progress items retrieved with FSBank_FetchNextProgressItem will be released by this function. +] +*/ +FSBANK_RESULT FB_API FSBank_Release(); + + +/* +[API] +[ + [DESCRIPTION] + Begin the building process for the provided subsound descriptions, function will block until + complete. + + [PARAMETERS] + 'subSounds' An array of subsound descriptions each defining one subsound for the + final FSB. + 'numSubSounds' The number of elements in the 'subSounds' array. + 'encodeFormat' The format to be used for encoding the FSB. + 'buildFlags' Building flags which control how the sample data is encoded. + 'quality' Controls the quality level after compression from 1 (high compression + / low quality) to 100 (high quality / low compression), use 0 for + default quality. MPEG, CELT and XMA only. MPEG / CELT bitrate based on + quality * 3.2. + 'encryptKey' Optional string 'key' used to encrypt the FSB, same key is required at + runtime for decryption. + 'outputFileName' Name (and path) of the FSB to produce. +] +*/ +FSBANK_RESULT FB_API FSBank_Build(const FSBANK_SUBSOUND *subSounds, unsigned int numSubSounds, FSBANK_FORMAT encodeFormat, FSBANK_BUILDFLAGS buildFlags, unsigned int quality, const char *encryptKey, const char *outputFileName); + + +/* +[API] +[ + [DESCRIPTION] + Halt the build in progress, must be called from a different thread to FSBank_Build. +] +*/ +FSBANK_RESULT FB_API FSBank_BuildCancel(); + + +/* +[API] +[ + [DESCRIPTION] + Fetch build progress items that describe the current state of the build. Can be called while + the build is in progress to get realtime updates or after the build for a report. Call + FSBank_ReleaseProgressItem to free allocated memory. + + [PARAMETERS] + 'progressItem' One status update about the progress of a particular subsound. +] +*/ +FSBANK_RESULT FB_API FSBank_FetchNextProgressItem(const FSBANK_PROGRESSITEM **progressItem); + + +/* +[API] +[ + [DESCRIPTION] + Release memory associated with a progress item. + + [PARAMETERS] + 'progressItem' One status update about the progress of a particular subsound. +] +*/ +FSBANK_RESULT FB_API FSBank_ReleaseProgressItem(const FSBANK_PROGRESSITEM *progressItem); + + +/* +[API] +[ + [DESCRIPTION] + Query the current and maximum memory usage of the FSBank system. + FSBank_Build. + + [PARAMETERS] + 'currentAllocated' Address of a variable that receives the currently allocated memory at time of call. Optional. Specify 0 or NULL to ignore. + 'maximumAllocated' Address of a variable that receives the maximum allocated memory since FSBank_Init. Optional. Specify 0 or NULL to ignore. +] +*/ +FSBANK_RESULT FB_API FSBank_MemoryGetStats(unsigned int *currentAllocated, unsigned int *maximumAllocated); + +#ifdef __cplusplus +} +#endif + +#endif // _FSBANK_H diff --git a/CocosDenshion/third_party/fmod/tools/fsbanklib/libfsbankex.a.REMOVED.git-id b/CocosDenshion/third_party/fmod/tools/fsbanklib/libfsbankex.a.REMOVED.git-id new file mode 100644 index 0000000000..5e3175033f --- /dev/null +++ b/CocosDenshion/third_party/fmod/tools/fsbanklib/libfsbankex.a.REMOVED.git-id @@ -0,0 +1 @@ +7c4b9fbeb5e4a11f0fe0b0086afeb806cd5cdb39 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/tools/fsbanklib/libmp3lame.so.REMOVED.git-id b/CocosDenshion/third_party/fmod/tools/fsbanklib/libmp3lame.so.REMOVED.git-id new file mode 100644 index 0000000000..fa8233dc21 --- /dev/null +++ b/CocosDenshion/third_party/fmod/tools/fsbanklib/libmp3lame.so.REMOVED.git-id @@ -0,0 +1 @@ +7e13b14baadf985f33cab88cadb071baf398bb01 \ No newline at end of file diff --git a/CocosDenshion/third_party/fmod/tools/fsbanklib/twolame.so.REMOVED.git-id b/CocosDenshion/third_party/fmod/tools/fsbanklib/twolame.so.REMOVED.git-id new file mode 100644 index 0000000000..d2b6c382a7 --- /dev/null +++ b/CocosDenshion/third_party/fmod/tools/fsbanklib/twolame.so.REMOVED.git-id @@ -0,0 +1 @@ +977578711cad3b8aa90c35dc191a7e38e4929eda \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/Classes/AppDelegate.d b/HelloCocos2dx/AndroidDebug/Classes/AppDelegate.d new file mode 100644 index 0000000000..50b8ef2bb8 --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/Classes/AppDelegate.d @@ -0,0 +1,346 @@ +Classes/AppDelegate.d Classes/AppDelegate.o: ../Classes/AppDelegate.cpp \ + ../Classes/AppDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + ../Classes/HelloWorldScene.h + +../Classes/AppDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +../Classes/HelloWorldScene.h: diff --git a/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.d b/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.d new file mode 100644 index 0000000000..22d2300968 --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.d @@ -0,0 +1,343 @@ +Classes/HelloWorldScene.d Classes/HelloWorldScene.o: \ + ../Classes/HelloWorldScene.cpp ../Classes/HelloWorldScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h + +../Classes/HelloWorldScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id b/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id new file mode 100644 index 0000000000..dedf7d4933 --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id @@ -0,0 +1 @@ +453094a6d3170f8ea16f0bcd4c723a8221fd0d01 \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/Classes/subdir.mk b/HelloCocos2dx/AndroidDebug/Classes/subdir.mk new file mode 100644 index 0000000000..dc8e6cdc1f --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/Classes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Classes/AppDelegate.cpp \ +../Classes/HelloWorldScene.cpp + +OBJS += \ +./Classes/AppDelegate.o \ +./Classes/HelloWorldScene.o + +CPP_DEPS += \ +./Classes/AppDelegate.d \ +./Classes/HelloWorldScene.d + + +# Each subdirectory must supply rules for building sources it contributes +Classes/%.o: ../Classes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d new file mode 100644 index 0000000000..9e33e995ab --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d @@ -0,0 +1,344 @@ +android/jni/helloworld/main.d android/jni/helloworld/main.o: \ + ../android/jni/helloworld/main.cpp \ + /home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes/AppDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h + +/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes/AppDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id new file mode 100644 index 0000000000..1009cfa0d4 --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id @@ -0,0 +1 @@ +e13ea8d34c5243fe0c4411413cd8754cb17d37a9 \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk new file mode 100644 index 0000000000..f0040eed34 --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../android/jni/helloworld/main.cpp + +OBJS += \ +./android/jni/helloworld/main.o + +CPP_DEPS += \ +./android/jni/helloworld/main.d + + +# Each subdirectory must supply rules for building sources it contributes +android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id b/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id new file mode 100644 index 0000000000..ddf09b9856 --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id @@ -0,0 +1 @@ +3a08a36529cd9ddf587bf5523658debe8bd7a6bc \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/makefile b/HelloCocos2dx/AndroidDebug/makefile new file mode 100644 index 0000000000..65f752e675 --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/makefile @@ -0,0 +1,66 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include android/jni/helloworld/subdir.mk +-include Classes/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: libHelloCocos2dx.so + +# Tool invocations +libHelloCocos2dx.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/cocos2dx/AndroidDebug" -shared -o "libHelloCocos2dx.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libHelloCocos2dx.so + -@echo ' ' + +post-build: + -@echo 'move required lib into android/libs automatically' + -sh ../postCompiled.sh AndroidDebug HelloCocos2dx /home/laschweinski/git/cocos2d-x + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/HelloCocos2dx/AndroidDebug/objects.mk b/HelloCocos2dx/AndroidDebug/objects.mk new file mode 100644 index 0000000000..1eff89eb05 --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := -lcocos2d + diff --git a/HelloCocos2dx/AndroidDebug/sources.mk b/HelloCocos2dx/AndroidDebug/sources.mk new file mode 100644 index 0000000000..74691bfe18 --- /dev/null +++ b/HelloCocos2dx/AndroidDebug/sources.mk @@ -0,0 +1,28 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +android/jni/helloworld \ +Classes \ + diff --git a/HelloCocos2dx/AndroidRelease/Classes/AppDelegate.d b/HelloCocos2dx/AndroidRelease/Classes/AppDelegate.d new file mode 100644 index 0000000000..50b8ef2bb8 --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/Classes/AppDelegate.d @@ -0,0 +1,346 @@ +Classes/AppDelegate.d Classes/AppDelegate.o: ../Classes/AppDelegate.cpp \ + ../Classes/AppDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + ../Classes/HelloWorldScene.h + +../Classes/AppDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +../Classes/HelloWorldScene.h: diff --git a/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.d b/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.d new file mode 100644 index 0000000000..22d2300968 --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.d @@ -0,0 +1,343 @@ +Classes/HelloWorldScene.d Classes/HelloWorldScene.o: \ + ../Classes/HelloWorldScene.cpp ../Classes/HelloWorldScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h + +../Classes/HelloWorldScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id b/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id new file mode 100644 index 0000000000..c174400d5b --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id @@ -0,0 +1 @@ +7832bb4b575305a3d11a72dc82b080d83dc4ba7b \ No newline at end of file diff --git a/HelloCocos2dx/AndroidRelease/Classes/subdir.mk b/HelloCocos2dx/AndroidRelease/Classes/subdir.mk new file mode 100644 index 0000000000..dc8e6cdc1f --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/Classes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Classes/AppDelegate.cpp \ +../Classes/HelloWorldScene.cpp + +OBJS += \ +./Classes/AppDelegate.o \ +./Classes/HelloWorldScene.o + +CPP_DEPS += \ +./Classes/AppDelegate.d \ +./Classes/HelloWorldScene.d + + +# Each subdirectory must supply rules for building sources it contributes +Classes/%.o: ../Classes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d new file mode 100644 index 0000000000..9e33e995ab --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d @@ -0,0 +1,344 @@ +android/jni/helloworld/main.d android/jni/helloworld/main.o: \ + ../android/jni/helloworld/main.cpp \ + /home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes/AppDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h + +/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes/AppDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id new file mode 100644 index 0000000000..553d6b7115 --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id @@ -0,0 +1 @@ +2781efdadfac8b455c12ac2a887b9e0adcffc538 \ No newline at end of file diff --git a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk new file mode 100644 index 0000000000..f0040eed34 --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../android/jni/helloworld/main.cpp + +OBJS += \ +./android/jni/helloworld/main.o + +CPP_DEPS += \ +./android/jni/helloworld/main.d + + +# Each subdirectory must supply rules for building sources it contributes +android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id b/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id new file mode 100644 index 0000000000..d953b10836 --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id @@ -0,0 +1 @@ +ea6261944b22de9c415a49482a137a4d93d0f07a \ No newline at end of file diff --git a/HelloCocos2dx/AndroidRelease/makefile b/HelloCocos2dx/AndroidRelease/makefile new file mode 100644 index 0000000000..1204013f5b --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/makefile @@ -0,0 +1,66 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include android/jni/helloworld/subdir.mk +-include Classes/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: libHelloCocos2dx.so + +# Tool invocations +libHelloCocos2dx.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/cocos2dx/AndroidDebug" -shared -o "libHelloCocos2dx.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libHelloCocos2dx.so + -@echo ' ' + +post-build: + -@echo 'move required lib into android/libs automatically' + -sh ../postCompiled.sh AndroidRelease HelloCocos2dx /home/laschweinski/git/cocos2d-x + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/HelloCocos2dx/AndroidRelease/objects.mk b/HelloCocos2dx/AndroidRelease/objects.mk new file mode 100644 index 0000000000..1eff89eb05 --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := -lcocos2d + diff --git a/HelloCocos2dx/AndroidRelease/sources.mk b/HelloCocos2dx/AndroidRelease/sources.mk new file mode 100644 index 0000000000..74691bfe18 --- /dev/null +++ b/HelloCocos2dx/AndroidRelease/sources.mk @@ -0,0 +1,28 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +android/jni/helloworld \ +Classes \ + diff --git a/HelloCocos2dx/android/default.properties b/HelloCocos2dx/android/default.properties index 9d135cb85f..0b9250e021 100644 --- a/HelloCocos2dx/android/default.properties +++ b/HelloCocos2dx/android/default.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-7 +target=android-8 diff --git a/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java b/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java index 979d1ae7fc..23565718cd 100644 --- a/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java +++ b/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java @@ -1,26 +1,28 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ - -package org.cocos2dx.application; - -public final class R { - public static final class attr { - } - public static final class drawable { - public static final int icon=0x7f020000; - } - public static final class id { - public static final int helloworld_gl_surfaceview=0x7f050001; - public static final int textField=0x7f050000; - } - public static final class layout { - public static final int helloworld_demo=0x7f030000; - } - public static final class string { - public static final int app_name=0x7f040000; - } -} +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package org.cocos2dx.application; + +public final class R { + public static final class attr { + } + public static final class drawable { + public static final int icon=0x7f020000; + } + public static final class id { + public static final int game_gl_surfaceview=0x7f050001; + public static final int helloworld_gl_surfaceview=0x7f050002; + public static final int textField=0x7f050000; + } + public static final class layout { + public static final int game_demo=0x7f030000; + public static final int helloworld_demo=0x7f030001; + } + public static final class string { + public static final int app_name=0x7f040000; + } +} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java b/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java index 45e812f09c..49a0db8889 100644 --- a/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java +++ b/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java @@ -45,6 +45,6 @@ public class ApplicationDemo extends Cocos2dxActivity{ static { System.loadLibrary("cocos2d"); System.loadLibrary("cocosdenshion"); - System.loadLibrary("helloworld"); + System.loadLibrary("HelloCocos2dx"); } } diff --git a/cocos2dx/.cproject b/cocos2dx/.cproject index a6752ba459..19aab4f7fa 100644 --- a/cocos2dx/.cproject +++ b/cocos2dx/.cproject @@ -346,6 +346,12 @@ diff --git a/cocos2dx/AndroidDebug/CCCamera.d b/cocos2dx/AndroidDebug/CCCamera.d new file mode 100644 index 0000000000..ff5b6fc447 --- /dev/null +++ b/cocos2dx/AndroidDebug/CCCamera.d @@ -0,0 +1,79 @@ +CCCamera.d CCCamera.o: ../CCCamera.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: diff --git a/cocos2dx/AndroidDebug/CCConfiguration.d b/cocos2dx/AndroidDebug/CCConfiguration.d new file mode 100644 index 0000000000..bc4e1c50d4 --- /dev/null +++ b/cocos2dx/AndroidDebug/CCConfiguration.d @@ -0,0 +1,79 @@ +CCConfiguration.d CCConfiguration.o: ../CCConfiguration.cpp \ + ../CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +../CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/CCDirector.d b/cocos2dx/AndroidDebug/CCDirector.d new file mode 100644 index 0000000000..30716846ef --- /dev/null +++ b/cocos2dx/AndroidDebug/CCDirector.d @@ -0,0 +1,220 @@ +CCDirector.d CCDirector.o: ../CCDirector.cpp ../cocoa/CCNS.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ + ../platform/platform.h ../platform/CCThread.h ../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + ../CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h + +../cocoa/CCNS.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: + +../platform/platform.h: + +../platform/CCThread.h: + +../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +../CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/CCDirector.o.REMOVED.git-id b/cocos2dx/AndroidDebug/CCDirector.o.REMOVED.git-id new file mode 100644 index 0000000000..e920e7a64f --- /dev/null +++ b/cocos2dx/AndroidDebug/CCDirector.o.REMOVED.git-id @@ -0,0 +1 @@ +1160cf37a9f5b1bdc35ab8e80d679980cf9dfbde \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/CCDrawingPrimitives.d b/cocos2dx/AndroidDebug/CCDrawingPrimitives.d new file mode 100644 index 0000000000..d3c36ebe22 --- /dev/null +++ b/cocos2dx/AndroidDebug/CCDrawingPrimitives.d @@ -0,0 +1,79 @@ +CCDrawingPrimitives.d CCDrawingPrimitives.o: ../CCDrawingPrimitives.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: diff --git a/cocos2dx/AndroidDebug/CCScheduler.d b/cocos2dx/AndroidDebug/CCScheduler.d new file mode 100644 index 0000000000..c408541982 --- /dev/null +++ b/cocos2dx/AndroidDebug/CCScheduler.d @@ -0,0 +1,114 @@ +CCScheduler.d CCScheduler.o: ../CCScheduler.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + ../support/data_support/utlist.h ../support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +../support/data_support/utlist.h: + +../support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: diff --git a/cocos2dx/AndroidDebug/CCScheduler.o.REMOVED.git-id b/cocos2dx/AndroidDebug/CCScheduler.o.REMOVED.git-id new file mode 100644 index 0000000000..1a43d071b4 --- /dev/null +++ b/cocos2dx/AndroidDebug/CCScheduler.o.REMOVED.git-id @@ -0,0 +1 @@ +4639b6ec304a500516f080b7f637de35f688dcad \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCAction.d b/cocos2dx/AndroidDebug/actions/CCAction.d new file mode 100644 index 0000000000..a2c30c3080 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCAction.d @@ -0,0 +1,127 @@ +actions/CCAction.d actions/CCAction.o: ../actions/CCAction.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: diff --git a/cocos2dx/AndroidDebug/actions/CCAction.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCAction.o.REMOVED.git-id new file mode 100644 index 0000000000..b61e9eb63c --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCAction.o.REMOVED.git-id @@ -0,0 +1 @@ +0bce3dd661ff275907e3f8694844acd401bab45b \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionCamera.d b/cocos2dx/AndroidDebug/actions/CCActionCamera.d new file mode 100644 index 0000000000..826e427c72 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionCamera.d @@ -0,0 +1,122 @@ +actions/CCActionCamera.d actions/CCActionCamera.o: \ + ../actions/CCActionCamera.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionEase.d b/cocos2dx/AndroidDebug/actions/CCActionEase.d new file mode 100644 index 0000000000..55c0dd140b --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionEase.d @@ -0,0 +1,116 @@ +actions/CCActionEase.d actions/CCActionEase.o: \ + ../actions/CCActionEase.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionEase.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionEase.o.REMOVED.git-id new file mode 100644 index 0000000000..03f817c6b8 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionEase.o.REMOVED.git-id @@ -0,0 +1 @@ +fa920c6299931ed34d173ebdfe9bc35f3a6f336c \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionGrid.d b/cocos2dx/AndroidDebug/actions/CCActionGrid.d new file mode 100644 index 0000000000..7198b94556 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionGrid.d @@ -0,0 +1,137 @@ +actions/CCActionGrid.d actions/CCActionGrid.o: \ + ../actions/CCActionGrid.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionGrid.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionGrid.o.REMOVED.git-id new file mode 100644 index 0000000000..86379cce5d --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionGrid.o.REMOVED.git-id @@ -0,0 +1 @@ +8580d71628e025b166b0855c13d2f36d86d33eda \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionGrid3D.d b/cocos2dx/AndroidDebug/actions/CCActionGrid3D.d new file mode 100644 index 0000000000..f484b34884 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionGrid3D.d @@ -0,0 +1,125 @@ +actions/CCActionGrid3D.d actions/CCActionGrid3D.o: \ + ../actions/CCActionGrid3D.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionGrid3D.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionGrid3D.o.REMOVED.git-id new file mode 100644 index 0000000000..41b4e1cbdf --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionGrid3D.o.REMOVED.git-id @@ -0,0 +1 @@ +47b60550918cd16136aafa4372a2d4dc6436c215 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionInstant.d b/cocos2dx/AndroidDebug/actions/CCActionInstant.d new file mode 100644 index 0000000000..e460d29577 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionInstant.d @@ -0,0 +1,128 @@ +actions/CCActionInstant.d actions/CCActionInstant.o: \ + ../actions/CCActionInstant.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionInstant.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionInstant.o.REMOVED.git-id new file mode 100644 index 0000000000..e578573571 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionInstant.o.REMOVED.git-id @@ -0,0 +1 @@ +041430735abae654014f3b45b071f52c2fed1fd7 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionInterval.d b/cocos2dx/AndroidDebug/actions/CCActionInterval.d new file mode 100644 index 0000000000..ff02e3e4e8 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionInterval.d @@ -0,0 +1,128 @@ +actions/CCActionInterval.d actions/CCActionInterval.o: \ + ../actions/CCActionInterval.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionInterval.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionInterval.o.REMOVED.git-id new file mode 100644 index 0000000000..907d11ec6f --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionInterval.o.REMOVED.git-id @@ -0,0 +1 @@ +dbfd00a959b3ade5cec9dd4abe2287e704c16940 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionManager.d b/cocos2dx/AndroidDebug/actions/CCActionManager.d new file mode 100644 index 0000000000..727d35c154 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionManager.d @@ -0,0 +1,107 @@ +actions/CCActionManager.d actions/CCActionManager.o: \ + ../actions/CCActionManager.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionManager.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionManager.o.REMOVED.git-id new file mode 100644 index 0000000000..6a7bee8ca7 --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionManager.o.REMOVED.git-id @@ -0,0 +1 @@ +45d90d2b15087ba93c3142d2469a9ab0d8ab0b93 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionPageTurn3D.d b/cocos2dx/AndroidDebug/actions/CCActionPageTurn3D.d new file mode 100644 index 0000000000..2acf42c8ce --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionPageTurn3D.d @@ -0,0 +1,125 @@ +actions/CCActionPageTurn3D.d actions/CCActionPageTurn3D.o: \ + ../actions/CCActionPageTurn3D.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionProgressTimer.d b/cocos2dx/AndroidDebug/actions/CCActionProgressTimer.d new file mode 100644 index 0000000000..02a28b289f --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionProgressTimer.d @@ -0,0 +1,128 @@ +actions/CCActionProgressTimer.d actions/CCActionProgressTimer.o: \ + ../actions/CCActionProgressTimer.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.d b/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.d new file mode 100644 index 0000000000..03a250776b --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.d @@ -0,0 +1,143 @@ +actions/CCActionTiledGrid.d actions/CCActionTiledGrid.o: \ + ../actions/CCActionTiledGrid.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.o.REMOVED.git-id new file mode 100644 index 0000000000..f5071fb70f --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.o.REMOVED.git-id @@ -0,0 +1 @@ +13c5962b80226fd349508f0d7012b81d4bdbbdbd \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/subdir.mk b/cocos2dx/AndroidDebug/actions/subdir.mk new file mode 100644 index 0000000000..da12ff9a6d --- /dev/null +++ b/cocos2dx/AndroidDebug/actions/subdir.mk @@ -0,0 +1,54 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../actions/CCAction.cpp \ +../actions/CCActionCamera.cpp \ +../actions/CCActionEase.cpp \ +../actions/CCActionGrid.cpp \ +../actions/CCActionGrid3D.cpp \ +../actions/CCActionInstant.cpp \ +../actions/CCActionInterval.cpp \ +../actions/CCActionManager.cpp \ +../actions/CCActionPageTurn3D.cpp \ +../actions/CCActionProgressTimer.cpp \ +../actions/CCActionTiledGrid.cpp + +OBJS += \ +./actions/CCAction.o \ +./actions/CCActionCamera.o \ +./actions/CCActionEase.o \ +./actions/CCActionGrid.o \ +./actions/CCActionGrid3D.o \ +./actions/CCActionInstant.o \ +./actions/CCActionInterval.o \ +./actions/CCActionManager.o \ +./actions/CCActionPageTurn3D.o \ +./actions/CCActionProgressTimer.o \ +./actions/CCActionTiledGrid.o + +CPP_DEPS += \ +./actions/CCAction.d \ +./actions/CCActionCamera.d \ +./actions/CCActionEase.d \ +./actions/CCActionGrid.d \ +./actions/CCActionGrid3D.d \ +./actions/CCActionInstant.d \ +./actions/CCActionInterval.d \ +./actions/CCActionManager.d \ +./actions/CCActionPageTurn3D.d \ +./actions/CCActionProgressTimer.d \ +./actions/CCActionTiledGrid.d + + +# Each subdirectory must supply rules for building sources it contributes +actions/%.o: ../actions/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.d b/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.d new file mode 100644 index 0000000000..27d2469fb3 --- /dev/null +++ b/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.d @@ -0,0 +1,104 @@ +base_nodes/CCAtlasNode.d base_nodes/CCAtlasNode.o: \ + ../base_nodes/CCAtlasNode.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: diff --git a/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.o.REMOVED.git-id b/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.o.REMOVED.git-id new file mode 100644 index 0000000000..855dbca341 --- /dev/null +++ b/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.o.REMOVED.git-id @@ -0,0 +1 @@ +87f1e9a5ee40b0c7f67b6557151d47890183c18b \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/base_nodes/CCNode.d b/cocos2dx/AndroidDebug/base_nodes/CCNode.d new file mode 100644 index 0000000000..d9b848443c --- /dev/null +++ b/cocos2dx/AndroidDebug/base_nodes/CCNode.d @@ -0,0 +1,136 @@ +base_nodes/CCNode.d base_nodes/CCNode.o: ../base_nodes/CCNode.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: diff --git a/cocos2dx/AndroidDebug/base_nodes/CCNode.o.REMOVED.git-id b/cocos2dx/AndroidDebug/base_nodes/CCNode.o.REMOVED.git-id new file mode 100644 index 0000000000..01e5ee11dd --- /dev/null +++ b/cocos2dx/AndroidDebug/base_nodes/CCNode.o.REMOVED.git-id @@ -0,0 +1 @@ +128d866e8f616b130571fea49309fbfb69e9f35f \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/base_nodes/subdir.mk b/cocos2dx/AndroidDebug/base_nodes/subdir.mk new file mode 100644 index 0000000000..471b15b53c --- /dev/null +++ b/cocos2dx/AndroidDebug/base_nodes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../base_nodes/CCAtlasNode.cpp \ +../base_nodes/CCNode.cpp + +OBJS += \ +./base_nodes/CCAtlasNode.o \ +./base_nodes/CCNode.o + +CPP_DEPS += \ +./base_nodes/CCAtlasNode.d \ +./base_nodes/CCNode.d + + +# Each subdirectory must supply rules for building sources it contributes +base_nodes/%.o: ../base_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/cocoa/CCAffineTransform.d b/cocos2dx/AndroidDebug/cocoa/CCAffineTransform.d new file mode 100644 index 0000000000..eb2ba85edc --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCAffineTransform.d @@ -0,0 +1,23 @@ +cocoa/CCAffineTransform.d cocoa/CCAffineTransform.o: \ + ../cocoa/CCAffineTransform.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.d b/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.d new file mode 100644 index 0000000000..50ba0052f1 --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.d @@ -0,0 +1,26 @@ +cocoa/CCAutoreleasePool.d cocoa/CCAutoreleasePool.o: \ + ../cocoa/CCAutoreleasePool.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.o.REMOVED.git-id b/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.o.REMOVED.git-id new file mode 100644 index 0000000000..ba474aedec --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.o.REMOVED.git-id @@ -0,0 +1 @@ +153b83f9e6b96f2510bb884ad8b2f224626e2300 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/cocoa/CCData.d b/cocos2dx/AndroidDebug/cocoa/CCData.d new file mode 100644 index 0000000000..ecb1280321 --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCData.d @@ -0,0 +1,79 @@ +cocoa/CCData.d cocoa/CCData.o: ../cocoa/CCData.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCGeometry.d b/cocos2dx/AndroidDebug/cocoa/CCGeometry.d new file mode 100644 index 0000000000..966f72f25d --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCGeometry.d @@ -0,0 +1,19 @@ +cocoa/CCGeometry.d cocoa/CCGeometry.o: ../cocoa/CCGeometry.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCNS.d b/cocos2dx/AndroidDebug/cocoa/CCNS.d new file mode 100644 index 0000000000..2ebb219988 --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCNS.d @@ -0,0 +1,21 @@ +cocoa/CCNS.d cocoa/CCNS.o: ../cocoa/CCNS.cpp ../cocoa/CCNS.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../cocoa/CCNS.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCNS.o.REMOVED.git-id b/cocos2dx/AndroidDebug/cocoa/CCNS.o.REMOVED.git-id new file mode 100644 index 0000000000..2c4e62bb5e --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCNS.o.REMOVED.git-id @@ -0,0 +1 @@ +2c71497db3d962ca6229d71ba220bf32f7224817 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/cocoa/CCObject.d b/cocos2dx/AndroidDebug/cocoa/CCObject.d new file mode 100644 index 0000000000..2609e7259f --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCObject.d @@ -0,0 +1,28 @@ +cocoa/CCObject.d cocoa/CCObject.o: ../cocoa/CCObject.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCSet.d b/cocos2dx/AndroidDebug/cocoa/CCSet.d new file mode 100644 index 0000000000..7aa0a8a99c --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCSet.d @@ -0,0 +1,22 @@ +cocoa/CCSet.d cocoa/CCSet.o: ../cocoa/CCSet.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCSet.o.REMOVED.git-id b/cocos2dx/AndroidDebug/cocoa/CCSet.o.REMOVED.git-id new file mode 100644 index 0000000000..c2b2ce31f7 --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCSet.o.REMOVED.git-id @@ -0,0 +1 @@ +0b9d99b9dc0e3d4c55afd12a6df8166cf6025146 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/cocoa/CCZone.d b/cocos2dx/AndroidDebug/cocoa/CCZone.d new file mode 100644 index 0000000000..172ee0927d --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/CCZone.d @@ -0,0 +1,22 @@ +cocoa/CCZone.d cocoa/CCZone.o: ../cocoa/CCZone.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocoa/subdir.mk b/cocos2dx/AndroidDebug/cocoa/subdir.mk new file mode 100644 index 0000000000..777d7f8bdc --- /dev/null +++ b/cocos2dx/AndroidDebug/cocoa/subdir.mk @@ -0,0 +1,45 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../cocoa/CCAffineTransform.cpp \ +../cocoa/CCAutoreleasePool.cpp \ +../cocoa/CCData.cpp \ +../cocoa/CCGeometry.cpp \ +../cocoa/CCNS.cpp \ +../cocoa/CCObject.cpp \ +../cocoa/CCSet.cpp \ +../cocoa/CCZone.cpp + +OBJS += \ +./cocoa/CCAffineTransform.o \ +./cocoa/CCAutoreleasePool.o \ +./cocoa/CCData.o \ +./cocoa/CCGeometry.o \ +./cocoa/CCNS.o \ +./cocoa/CCObject.o \ +./cocoa/CCSet.o \ +./cocoa/CCZone.o + +CPP_DEPS += \ +./cocoa/CCAffineTransform.d \ +./cocoa/CCAutoreleasePool.d \ +./cocoa/CCData.d \ +./cocoa/CCGeometry.d \ +./cocoa/CCNS.d \ +./cocoa/CCObject.d \ +./cocoa/CCSet.d \ +./cocoa/CCZone.d + + +# Each subdirectory must supply rules for building sources it contributes +cocoa/%.o: ../cocoa/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/cocos2d.d b/cocos2dx/AndroidDebug/cocos2d.d new file mode 100644 index 0000000000..864791e44d --- /dev/null +++ b/cocos2dx/AndroidDebug/cocos2d.d @@ -0,0 +1,340 @@ +cocos2d.d cocos2d.o: ../cocos2d.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/cocos2dx/AndroidDebug/effects/CCGrabber.d b/cocos2dx/AndroidDebug/effects/CCGrabber.d new file mode 100644 index 0000000000..e76ea937b2 --- /dev/null +++ b/cocos2dx/AndroidDebug/effects/CCGrabber.d @@ -0,0 +1,91 @@ +effects/CCGrabber.d effects/CCGrabber.o: ../effects/CCGrabber.cpp \ + ../effects/CCGrabber.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h + +../effects/CCGrabber.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: diff --git a/cocos2dx/AndroidDebug/effects/CCGrid.d b/cocos2dx/AndroidDebug/effects/CCGrid.d new file mode 100644 index 0000000000..0a7f9bddad --- /dev/null +++ b/cocos2dx/AndroidDebug/effects/CCGrid.d @@ -0,0 +1,121 @@ +effects/CCGrid.d effects/CCGrid.o: ../effects/CCGrid.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrabber.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrabber.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/effects/CCGrid.o.REMOVED.git-id b/cocos2dx/AndroidDebug/effects/CCGrid.o.REMOVED.git-id new file mode 100644 index 0000000000..c429aec32b --- /dev/null +++ b/cocos2dx/AndroidDebug/effects/CCGrid.o.REMOVED.git-id @@ -0,0 +1 @@ +53abb30dcb54f8086c35d323c530a5ed94e7dc0f \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/effects/subdir.mk b/cocos2dx/AndroidDebug/effects/subdir.mk new file mode 100644 index 0000000000..68ac3a1f4f --- /dev/null +++ b/cocos2dx/AndroidDebug/effects/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../effects/CCGrabber.cpp \ +../effects/CCGrid.cpp + +OBJS += \ +./effects/CCGrabber.o \ +./effects/CCGrid.o + +CPP_DEPS += \ +./effects/CCGrabber.d \ +./effects/CCGrid.d + + +# Each subdirectory must supply rules for building sources it contributes +effects/%.o: ../effects/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDelegate.d b/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDelegate.d new file mode 100644 index 0000000000..ba93ae9b5f --- /dev/null +++ b/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDelegate.d @@ -0,0 +1,74 @@ +keypad_dispatcher/CCKeypadDelegate.d keypad_dispatcher/CCKeypadDelegate.o: \ + ../keypad_dispatcher/CCKeypadDelegate.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.d b/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.d new file mode 100644 index 0000000000..1985a085e7 --- /dev/null +++ b/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.d @@ -0,0 +1,84 @@ +keypad_dispatcher/CCKeypadDispatcher.d \ + keypad_dispatcher/CCKeypadDispatcher.o: \ + ../keypad_dispatcher/CCKeypadDispatcher.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.o.REMOVED.git-id b/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.o.REMOVED.git-id new file mode 100644 index 0000000000..a79b2e8528 --- /dev/null +++ b/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.o.REMOVED.git-id @@ -0,0 +1 @@ +5a46b9d47be9fe2596cd1457f2be286cd053488b \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/keypad_dispatcher/subdir.mk b/cocos2dx/AndroidDebug/keypad_dispatcher/subdir.mk new file mode 100644 index 0000000000..721378ec59 --- /dev/null +++ b/cocos2dx/AndroidDebug/keypad_dispatcher/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../keypad_dispatcher/CCKeypadDelegate.cpp \ +../keypad_dispatcher/CCKeypadDispatcher.cpp + +OBJS += \ +./keypad_dispatcher/CCKeypadDelegate.o \ +./keypad_dispatcher/CCKeypadDispatcher.o + +CPP_DEPS += \ +./keypad_dispatcher/CCKeypadDelegate.d \ +./keypad_dispatcher/CCKeypadDispatcher.d + + +# Each subdirectory must supply rules for building sources it contributes +keypad_dispatcher/%.o: ../keypad_dispatcher/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.d b/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.d new file mode 100644 index 0000000000..7aa0b16888 --- /dev/null +++ b/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.d @@ -0,0 +1,113 @@ +label_nodes/CCLabelAtlas.d label_nodes/CCLabelAtlas.o: \ + ../label_nodes/CCLabelAtlas.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.o.REMOVED.git-id b/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.o.REMOVED.git-id new file mode 100644 index 0000000000..da97e5660e --- /dev/null +++ b/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.o.REMOVED.git-id @@ -0,0 +1 @@ +e1de68a86e67f2cad697ac8800e3435001467f46 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.d b/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.d new file mode 100644 index 0000000000..8a226e0518 --- /dev/null +++ b/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.d @@ -0,0 +1,140 @@ +label_nodes/CCLabelBMFont.d label_nodes/CCLabelBMFont.o: \ + ../label_nodes/CCLabelBMFont.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.o.REMOVED.git-id b/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.o.REMOVED.git-id new file mode 100644 index 0000000000..2ba7f07964 --- /dev/null +++ b/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.o.REMOVED.git-id @@ -0,0 +1 @@ +a495474cfd005ee21e0533a207bbda01cb64dbc8 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.d b/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.d new file mode 100644 index 0000000000..2f52241807 --- /dev/null +++ b/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.d @@ -0,0 +1,110 @@ +label_nodes/CCLabelTTF.d label_nodes/CCLabelTTF.o: \ + ../label_nodes/CCLabelTTF.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.o.REMOVED.git-id b/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.o.REMOVED.git-id new file mode 100644 index 0000000000..38e8225f81 --- /dev/null +++ b/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.o.REMOVED.git-id @@ -0,0 +1 @@ +954fed741b9e9f1541e5d0e13b8c2e836470a954 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/label_nodes/subdir.mk b/cocos2dx/AndroidDebug/label_nodes/subdir.mk new file mode 100644 index 0000000000..79da31242d --- /dev/null +++ b/cocos2dx/AndroidDebug/label_nodes/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../label_nodes/CCLabelAtlas.cpp \ +../label_nodes/CCLabelBMFont.cpp \ +../label_nodes/CCLabelTTF.cpp + +OBJS += \ +./label_nodes/CCLabelAtlas.o \ +./label_nodes/CCLabelBMFont.o \ +./label_nodes/CCLabelTTF.o + +CPP_DEPS += \ +./label_nodes/CCLabelAtlas.d \ +./label_nodes/CCLabelBMFont.d \ +./label_nodes/CCLabelTTF.d + + +# Each subdirectory must supply rules for building sources it contributes +label_nodes/%.o: ../label_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.d new file mode 100644 index 0000000000..be079c7c80 --- /dev/null +++ b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.d @@ -0,0 +1,144 @@ +layers_scenes_transitions_nodes/CCLayer.d \ + layers_scenes_transitions_nodes/CCLayer.o: \ + ../layers_scenes_transitions_nodes/CCLayer.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.o.REMOVED.git-id b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.o.REMOVED.git-id new file mode 100644 index 0000000000..04046f5df4 --- /dev/null +++ b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.o.REMOVED.git-id @@ -0,0 +1 @@ +271e00fd429531f8b9fedb45269219d7d9adf850 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCScene.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCScene.d new file mode 100644 index 0000000000..a46f1d3abd --- /dev/null +++ b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCScene.d @@ -0,0 +1,102 @@ +layers_scenes_transitions_nodes/CCScene.d \ + layers_scenes_transitions_nodes/CCScene.o: \ + ../layers_scenes_transitions_nodes/CCScene.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.d new file mode 100644 index 0000000000..e898c55a68 --- /dev/null +++ b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.d @@ -0,0 +1,192 @@ +layers_scenes_transitions_nodes/CCTransition.d \ + layers_scenes_transitions_nodes/CCTransition.o: \ + ../layers_scenes_transitions_nodes/CCTransition.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id new file mode 100644 index 0000000000..4914e1d74f --- /dev/null +++ b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id @@ -0,0 +1 @@ +fbf3bff1397fbdd03aae7c4d9d46d5310463feb1 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionPageTurn.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionPageTurn.d new file mode 100644 index 0000000000..091e1d1032 --- /dev/null +++ b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionPageTurn.d @@ -0,0 +1,147 @@ +layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ + layers_scenes_transitions_nodes/CCTransitionPageTurn.o: \ + ../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.d new file mode 100644 index 0000000000..dfc6351390 --- /dev/null +++ b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.d @@ -0,0 +1,153 @@ +layers_scenes_transitions_nodes/CCTransitionRadial.d \ + layers_scenes_transitions_nodes/CCTransitionRadial.o: \ + ../layers_scenes_transitions_nodes/CCTransitionRadial.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.o.REMOVED.git-id b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.o.REMOVED.git-id new file mode 100644 index 0000000000..f12e8f9094 --- /dev/null +++ b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.o.REMOVED.git-id @@ -0,0 +1 @@ +9bf3c0e906002984df34ca3465414b115c4ebade \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/subdir.mk b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/subdir.mk new file mode 100644 index 0000000000..0425005603 --- /dev/null +++ b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/subdir.mk @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../layers_scenes_transitions_nodes/CCLayer.cpp \ +../layers_scenes_transitions_nodes/CCScene.cpp \ +../layers_scenes_transitions_nodes/CCTransition.cpp \ +../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ +../layers_scenes_transitions_nodes/CCTransitionRadial.cpp + +OBJS += \ +./layers_scenes_transitions_nodes/CCLayer.o \ +./layers_scenes_transitions_nodes/CCScene.o \ +./layers_scenes_transitions_nodes/CCTransition.o \ +./layers_scenes_transitions_nodes/CCTransitionPageTurn.o \ +./layers_scenes_transitions_nodes/CCTransitionRadial.o + +CPP_DEPS += \ +./layers_scenes_transitions_nodes/CCLayer.d \ +./layers_scenes_transitions_nodes/CCScene.d \ +./layers_scenes_transitions_nodes/CCTransition.d \ +./layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ +./layers_scenes_transitions_nodes/CCTransitionRadial.d + + +# Each subdirectory must supply rules for building sources it contributes +layers_scenes_transitions_nodes/%.o: ../layers_scenes_transitions_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/libcocos2d.so.REMOVED.git-id b/cocos2dx/AndroidDebug/libcocos2d.so.REMOVED.git-id new file mode 100644 index 0000000000..80fa18720f --- /dev/null +++ b/cocos2dx/AndroidDebug/libcocos2d.so.REMOVED.git-id @@ -0,0 +1 @@ +e4ef8dbafc8bdd9c7aac53a6bce4856d5e36593f \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/libcocos2dx-base.so.REMOVED.git-id b/cocos2dx/AndroidDebug/libcocos2dx-base.so.REMOVED.git-id new file mode 100644 index 0000000000..37ef4cbaab --- /dev/null +++ b/cocos2dx/AndroidDebug/libcocos2dx-base.so.REMOVED.git-id @@ -0,0 +1 @@ +058f3d792df02e6e30b4b1b1dd02e4bd94b0df8d \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/makefile b/cocos2dx/AndroidDebug/makefile new file mode 100644 index 0000000000..c92985a26d --- /dev/null +++ b/cocos2dx/AndroidDebug/makefile @@ -0,0 +1,93 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include touch_dispatcher/subdir.mk +-include tileMap_parallax_nodes/subdir.mk +-include textures/subdir.mk +-include text_input_node/subdir.mk +-include support/zip_support/subdir.mk +-include support/image_support/subdir.mk +-include support/subdir.mk +-include sprite_nodes/subdir.mk +-include script_support/subdir.mk +-include platform/subdir.mk +-include platform/android/jni/subdir.mk +-include platform/android/subdir.mk +-include particle_nodes/subdir.mk +-include misc_nodes/subdir.mk +-include menu_nodes/subdir.mk +-include layers_scenes_transitions_nodes/subdir.mk +-include label_nodes/subdir.mk +-include keypad_dispatcher/subdir.mk +-include effects/subdir.mk +-include cocoa/subdir.mk +-include base_nodes/subdir.mk +-include actions/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: pre-build main-build + +# Main-build Target +main-build: libcocos2dx-base.so + +# Tool invocations +libcocos2dx-base.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + arm-linux-androideabi-g++ -shared -o "libcocos2dx-base.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libcocos2dx-base.so + -@echo ' ' + +pre-build: + -arm-linux-androideabi-g++ + -@echo ' ' + +post-build: + -@echo 'move all libs into the specific folder' + -sh ../../post.sh cocos2dx-base cocos2d + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: main-build pre-build post-build + +-include ../makefile.targets diff --git a/cocos2dx/AndroidDebug/menu_nodes/CCMenu.d b/cocos2dx/AndroidDebug/menu_nodes/CCMenu.d new file mode 100644 index 0000000000..90f7bbcf6f --- /dev/null +++ b/cocos2dx/AndroidDebug/menu_nodes/CCMenu.d @@ -0,0 +1,145 @@ +menu_nodes/CCMenu.d menu_nodes/CCMenu.o: ../menu_nodes/CCMenu.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: diff --git a/cocos2dx/AndroidDebug/menu_nodes/CCMenu.o.REMOVED.git-id b/cocos2dx/AndroidDebug/menu_nodes/CCMenu.o.REMOVED.git-id new file mode 100644 index 0000000000..a98e090fa1 --- /dev/null +++ b/cocos2dx/AndroidDebug/menu_nodes/CCMenu.o.REMOVED.git-id @@ -0,0 +1 @@ +6264276ab56bb0c029459e0899db09f6a9785ca7 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d b/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d new file mode 100644 index 0000000000..8e9cc6edda --- /dev/null +++ b/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d @@ -0,0 +1,149 @@ +menu_nodes/CCMenuItem.d menu_nodes/CCMenuItem.o: \ + ../menu_nodes/CCMenuItem.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: diff --git a/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.o.REMOVED.git-id b/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.o.REMOVED.git-id new file mode 100644 index 0000000000..c7799c0c59 --- /dev/null +++ b/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.o.REMOVED.git-id @@ -0,0 +1 @@ +10a3a980e2734f4e53e2bd2c4825c603c9507dde \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/menu_nodes/subdir.mk b/cocos2dx/AndroidDebug/menu_nodes/subdir.mk new file mode 100644 index 0000000000..8b28e48204 --- /dev/null +++ b/cocos2dx/AndroidDebug/menu_nodes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../menu_nodes/CCMenu.cpp \ +../menu_nodes/CCMenuItem.cpp + +OBJS += \ +./menu_nodes/CCMenu.o \ +./menu_nodes/CCMenuItem.o + +CPP_DEPS += \ +./menu_nodes/CCMenu.d \ +./menu_nodes/CCMenuItem.d + + +# Each subdirectory must supply rules for building sources it contributes +menu_nodes/%.o: ../menu_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.d b/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.d new file mode 100644 index 0000000000..0602c1560d --- /dev/null +++ b/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.d @@ -0,0 +1,107 @@ +misc_nodes/CCMotionStreak.d misc_nodes/CCMotionStreak.o: \ + ../misc_nodes/CCMotionStreak.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h: diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.o.REMOVED.git-id b/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.o.REMOVED.git-id new file mode 100644 index 0000000000..34aafea7d6 --- /dev/null +++ b/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.o.REMOVED.git-id @@ -0,0 +1 @@ +8a8665000d138e820d349818a3fa93291c0e2e0a \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.d b/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.d new file mode 100644 index 0000000000..1e541547cc --- /dev/null +++ b/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.d @@ -0,0 +1,119 @@ +misc_nodes/CCProgressTimer.d misc_nodes/CCProgressTimer.o: \ + ../misc_nodes/CCProgressTimer.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.o.REMOVED.git-id b/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.o.REMOVED.git-id new file mode 100644 index 0000000000..479cf0dff7 --- /dev/null +++ b/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.o.REMOVED.git-id @@ -0,0 +1 @@ +18821cc5a845d524955fde03c21aa7005a8581c0 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.d b/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.d new file mode 100644 index 0000000000..39b69ff436 --- /dev/null +++ b/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.d @@ -0,0 +1,143 @@ +misc_nodes/CCRenderTexture.d misc_nodes/CCRenderTexture.o: \ + ../misc_nodes/CCRenderTexture.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.o.REMOVED.git-id b/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.o.REMOVED.git-id new file mode 100644 index 0000000000..f7f470f443 --- /dev/null +++ b/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.o.REMOVED.git-id @@ -0,0 +1 @@ +253b08e113f20e36db1ef9363d70b5dfe6d31d47 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d b/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d new file mode 100644 index 0000000000..5b303e77d8 --- /dev/null +++ b/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d @@ -0,0 +1,112 @@ +misc_nodes/CCRibbon.d misc_nodes/CCRibbon.o: ../misc_nodes/CCRibbon.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.o.REMOVED.git-id b/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.o.REMOVED.git-id new file mode 100644 index 0000000000..00983cac8c --- /dev/null +++ b/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.o.REMOVED.git-id @@ -0,0 +1 @@ +21449be29aeee818b8e15dfed7cd41a5fcd2f4c4 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/misc_nodes/subdir.mk b/cocos2dx/AndroidDebug/misc_nodes/subdir.mk new file mode 100644 index 0000000000..cbf44dfd43 --- /dev/null +++ b/cocos2dx/AndroidDebug/misc_nodes/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../misc_nodes/CCMotionStreak.cpp \ +../misc_nodes/CCProgressTimer.cpp \ +../misc_nodes/CCRenderTexture.cpp \ +../misc_nodes/CCRibbon.cpp + +OBJS += \ +./misc_nodes/CCMotionStreak.o \ +./misc_nodes/CCProgressTimer.o \ +./misc_nodes/CCRenderTexture.o \ +./misc_nodes/CCRibbon.o + +CPP_DEPS += \ +./misc_nodes/CCMotionStreak.d \ +./misc_nodes/CCProgressTimer.d \ +./misc_nodes/CCRenderTexture.d \ +./misc_nodes/CCRibbon.d + + +# Each subdirectory must supply rules for building sources it contributes +misc_nodes/%.o: ../misc_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/objects.mk b/cocos2dx/AndroidDebug/objects.mk new file mode 100644 index 0000000000..2333372ec2 --- /dev/null +++ b/cocos2dx/AndroidDebug/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := ../platform/third_party/android/libraries/libcurl.a ../platform/third_party/android/libraries/libpng.a ../platform/third_party/android/libraries/libxml2.a ..//platform/third_party/android/libraries/libjpeg.a + +LIBS := -lGLESv1_CM -llog -lz + diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.d b/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.d new file mode 100644 index 0000000000..93030ec692 --- /dev/null +++ b/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.d @@ -0,0 +1,128 @@ +particle_nodes/CCParticleExamples.d particle_nodes/CCParticleExamples.o: \ + ../particle_nodes/CCParticleExamples.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.o.REMOVED.git-id b/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.o.REMOVED.git-id new file mode 100644 index 0000000000..f4b8fc9028 --- /dev/null +++ b/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.o.REMOVED.git-id @@ -0,0 +1 @@ +69a4a0e40a43a95e7eca210585dc70ebb9e75d96 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.d b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.d new file mode 100644 index 0000000000..88561d2578 --- /dev/null +++ b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.d @@ -0,0 +1,137 @@ +particle_nodes/CCParticleSystem.d particle_nodes/CCParticleSystem.o: \ + ../particle_nodes/CCParticleSystem.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.o.REMOVED.git-id b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.o.REMOVED.git-id new file mode 100644 index 0000000000..87f92c9a49 --- /dev/null +++ b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.o.REMOVED.git-id @@ -0,0 +1 @@ +4266e7e8193b5849c1428420d46395b522287bf6 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.d b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.d new file mode 100644 index 0000000000..ea503b316f --- /dev/null +++ b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.d @@ -0,0 +1,114 @@ +particle_nodes/CCParticleSystemQuad.d \ + particle_nodes/CCParticleSystemQuad.o: \ + ../particle_nodes/CCParticleSystemQuad.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.o.REMOVED.git-id b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.o.REMOVED.git-id new file mode 100644 index 0000000000..de45807afc --- /dev/null +++ b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.o.REMOVED.git-id @@ -0,0 +1 @@ +3d75205dd43146410526c2ad99be58a64755f3f3 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/particle_nodes/subdir.mk b/cocos2dx/AndroidDebug/particle_nodes/subdir.mk new file mode 100644 index 0000000000..7687c071b8 --- /dev/null +++ b/cocos2dx/AndroidDebug/particle_nodes/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../particle_nodes/CCParticleExamples.cpp \ +../particle_nodes/CCParticleSystem.cpp \ +../particle_nodes/CCParticleSystemQuad.cpp + +OBJS += \ +./particle_nodes/CCParticleExamples.o \ +./particle_nodes/CCParticleSystem.o \ +./particle_nodes/CCParticleSystemQuad.o + +CPP_DEPS += \ +./particle_nodes/CCParticleExamples.d \ +./particle_nodes/CCParticleSystem.d \ +./particle_nodes/CCParticleSystemQuad.d + + +# Each subdirectory must supply rules for building sources it contributes +particle_nodes/%.o: ../particle_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/platform/CCCommon.d b/cocos2dx/AndroidDebug/platform/CCCommon.d new file mode 100644 index 0000000000..5a35d2e759 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/CCCommon.d @@ -0,0 +1,17 @@ +platform/CCCommon.d platform/CCCommon.o: ../platform/CCCommon.cpp \ + ../platform/CCCommon.h ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h ../platform/android/jni/MessageJni.h + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: + +../platform/android/jni/MessageJni.h: diff --git a/cocos2dx/AndroidDebug/platform/CCFileUtils.d b/cocos2dx/AndroidDebug/platform/CCFileUtils.d new file mode 100644 index 0000000000..bb0d34ec90 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/CCFileUtils.d @@ -0,0 +1,164 @@ +platform/CCFileUtils.d platform/CCFileUtils.o: \ + ../platform/CCFileUtils.cpp ../platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h \ + ../platform/CCLibxml2.h ../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + ../platform/CCSAXParser.h ../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/unzip.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ioapi.h \ + ../platform/android/CCFileUtils_android.cpp \ + ../platform/android/jni/SystemInfoJni.h + +../platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: + +../platform/CCLibxml2.h: + +../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +../platform/CCSAXParser.h: + +../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/unzip.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ioapi.h: + +../platform/android/CCFileUtils_android.cpp: + +../platform/android/jni/SystemInfoJni.h: diff --git a/cocos2dx/AndroidDebug/platform/CCFileUtils.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/CCFileUtils.o.REMOVED.git-id new file mode 100644 index 0000000000..362de81264 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/CCFileUtils.o.REMOVED.git-id @@ -0,0 +1 @@ +bd589c2d9d14283973ff9e2c29f715678fff1176 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/CCGL.d b/cocos2dx/AndroidDebug/platform/CCGL.d new file mode 100644 index 0000000000..1a491eaac6 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/CCGL.d @@ -0,0 +1,41 @@ +platform/CCGL.d platform/CCGL.o: ../platform/CCGL.cpp ../platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCCommon.h ../platform/CCStdC.h \ + ../platform/CCPlatformMacros.h + +../platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCCommon.h: + +../platform/CCStdC.h: + +../platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/platform/CCImage.d b/cocos2dx/AndroidDebug/platform/CCImage.d new file mode 100644 index 0000000000..948811a40e --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/CCImage.d @@ -0,0 +1,113 @@ +platform/CCImage.d platform/CCImage.o: ../platform/CCImage.cpp \ + ../platform/CCImage.h ../platform/CCCommon.h \ + ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h ../platform/CCStdC.h \ + ../platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/png.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/pngconf.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jpeglib.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig_linux.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jmorecfg.h \ + ../platform/android/CCImage_android.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + ../platform/android/jni/JniHelper.h + +../platform/CCImage.h: + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: + +../platform/CCStdC.h: + +../platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/png.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/pngconf.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jpeglib.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig_linux.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jmorecfg.h: + +../platform/android/CCImage_android.cpp: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +../platform/android/jni/JniHelper.h: diff --git a/cocos2dx/AndroidDebug/platform/CCImage.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/CCImage.o.REMOVED.git-id new file mode 100644 index 0000000000..fc2cf46661 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/CCImage.o.REMOVED.git-id @@ -0,0 +1 @@ +8dbc9b04d765a5bde5831fa9257e434c18fa31f0 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/CCSAXParser.d b/cocos2dx/AndroidDebug/platform/CCSAXParser.d new file mode 100644 index 0000000000..c6bbc8a6b6 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/CCSAXParser.d @@ -0,0 +1,149 @@ +platform/CCSAXParser.d platform/CCSAXParser.o: \ + ../platform/CCSAXParser.cpp ../platform/CCSAXParser.h \ + ../platform/CCPlatformConfig.h ../platform/CCCommon.h \ + ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h \ + ../platform/CCLibxml2.h ../platform/CCFileUtils.h + +../platform/CCSAXParser.h: + +../platform/CCPlatformConfig.h: + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: + +../platform/CCLibxml2.h: + +../platform/CCFileUtils.h: diff --git a/cocos2dx/AndroidDebug/platform/CCStdC.d b/cocos2dx/AndroidDebug/platform/CCStdC.d new file mode 100644 index 0000000000..1928d3f0fc --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/CCStdC.d @@ -0,0 +1,15 @@ +platform/CCStdC.d platform/CCStdC.o: ../platform/CCStdC.cpp \ + ../platform/CCStdC.h ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h + +../platform/CCStdC.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/platform/CCThread.d b/cocos2dx/AndroidDebug/platform/CCThread.d new file mode 100644 index 0000000000..c365ae5562 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/CCThread.d @@ -0,0 +1,18 @@ +platform/CCThread.d platform/CCThread.o: ../platform/CCThread.cpp \ + ../platform/CCThread.h ../platform/CCCommon.h \ + ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h + +../platform/CCThread.h: + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.d b/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.d new file mode 100644 index 0000000000..012c8c72bf --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.d @@ -0,0 +1,27 @@ +platform/android/CCAccelerometer_android.d \ + platform/android/CCAccelerometer_android.o: \ + ../platform/android/CCAccelerometer_android.cpp \ + ../platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + ../platform/android/jni/SensorJni.h + +../platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +../platform/android/jni/SensorJni.h: diff --git a/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.o.REMOVED.git-id new file mode 100644 index 0000000000..859e54584b --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.o.REMOVED.git-id @@ -0,0 +1 @@ +e331073e786a79b9b73b2902f8e2d098941a55ae \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/CCApplication_android.d b/cocos2dx/AndroidDebug/platform/android/CCApplication_android.d new file mode 100644 index 0000000000..6ba6c30683 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/CCApplication_android.d @@ -0,0 +1,81 @@ +platform/android/CCApplication_android.d \ + platform/android/CCApplication_android.o: \ + ../platform/android/CCApplication_android.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/jni/SystemInfoJni.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/jni/SystemInfoJni.h: diff --git a/cocos2dx/AndroidDebug/platform/android/CCApplication_android.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/CCApplication_android.o.REMOVED.git-id new file mode 100644 index 0000000000..0df6a17cdc --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/CCApplication_android.o.REMOVED.git-id @@ -0,0 +1 @@ +67f79f96e8293f845b4966ba68ff534ea23572c5 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/CCEGLView_android.d b/cocos2dx/AndroidDebug/platform/android/CCEGLView_android.d new file mode 100644 index 0000000000..60dd838d0e --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/CCEGLView_android.d @@ -0,0 +1,121 @@ +platform/android/CCEGLView_android.d platform/android/CCEGLView_android.o: \ + ../platform/android/CCEGLView_android.cpp \ + ../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + ../platform/android/jni/IMEJni.h ../platform/android/jni/MessageJni.h + +../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +../platform/android/jni/IMEJni.h: + +../platform/android/jni/MessageJni.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.d b/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.d new file mode 100644 index 0000000000..43c7360dab --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.d @@ -0,0 +1,34 @@ +platform/android/jni/IMEJni.d platform/android/jni/IMEJni.o: \ + ../platform/android/jni/IMEJni.cpp ../platform/android/jni/IMEJni.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h + +../platform/android/jni/IMEJni.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.o.REMOVED.git-id new file mode 100644 index 0000000000..742629279a --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.o.REMOVED.git-id @@ -0,0 +1 @@ +588eb92ad752c29bb352f5b1feea5ce88f3ae355 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.d b/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.d new file mode 100644 index 0000000000..15082c04e4 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.d @@ -0,0 +1,17 @@ +platform/android/jni/JniHelper.d platform/android/jni/JniHelper.o: \ + ../platform/android/jni/JniHelper.cpp \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.o.REMOVED.git-id new file mode 100644 index 0000000000..25f4039c2a --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.o.REMOVED.git-id @@ -0,0 +1 @@ +39532e1bee727e6f876155247bcfdc2d9c03581e \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.d b/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.d new file mode 100644 index 0000000000..8d10d23a7c --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.d @@ -0,0 +1,98 @@ +platform/android/jni/MessageJni.d platform/android/jni/MessageJni.o: \ + ../platform/android/jni/MessageJni.cpp \ + ../platform/android/jni/MessageJni.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h + +../platform/android/jni/MessageJni.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.o.REMOVED.git-id new file mode 100644 index 0000000000..c5945b3fbd --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.o.REMOVED.git-id @@ -0,0 +1 @@ +d93b3358e5ea318729eab84eaba42e6cf89c301c \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.d b/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.d new file mode 100644 index 0000000000..e31a2cf6e9 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.d @@ -0,0 +1,56 @@ +platform/android/jni/SensorJni.d platform/android/jni/SensorJni.o: \ + ../platform/android/jni/SensorJni.cpp \ + ../platform/android/jni/SensorJni.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h + +../platform/android/jni/SensorJni.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.o.REMOVED.git-id new file mode 100644 index 0000000000..f705e06b54 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.o.REMOVED.git-id @@ -0,0 +1 @@ +4da056f7c3a8de0e18ff2b8d0ba088494841c000 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.d b/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.d new file mode 100644 index 0000000000..536a60218e --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.d @@ -0,0 +1,32 @@ +platform/android/jni/SystemInfoJni.d platform/android/jni/SystemInfoJni.o: \ + ../platform/android/jni/SystemInfoJni.cpp \ + ../platform/android/jni/SystemInfoJni.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h + +../platform/android/jni/SystemInfoJni.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.o.REMOVED.git-id new file mode 100644 index 0000000000..b7a63473f1 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.o.REMOVED.git-id @@ -0,0 +1 @@ +3ad3762060b1747348736ebb47c400b7d95f9796 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.d b/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.d new file mode 100644 index 0000000000..ce5014132d --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.d @@ -0,0 +1,122 @@ +platform/android/jni/TouchesJni.d platform/android/jni/TouchesJni.o: \ + ../platform/android/jni/TouchesJni.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.o.REMOVED.git-id new file mode 100644 index 0000000000..f118c1d5a7 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.o.REMOVED.git-id @@ -0,0 +1 @@ +ec8f7645206e80e9b53d4c60bb62c29bb77a2df4 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/subdir.mk b/cocos2dx/AndroidDebug/platform/android/jni/subdir.mk new file mode 100644 index 0000000000..3d12adf013 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/jni/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/android/jni/IMEJni.cpp \ +../platform/android/jni/JniHelper.cpp \ +../platform/android/jni/MessageJni.cpp \ +../platform/android/jni/SensorJni.cpp \ +../platform/android/jni/SystemInfoJni.cpp \ +../platform/android/jni/TouchesJni.cpp + +OBJS += \ +./platform/android/jni/IMEJni.o \ +./platform/android/jni/JniHelper.o \ +./platform/android/jni/MessageJni.o \ +./platform/android/jni/SensorJni.o \ +./platform/android/jni/SystemInfoJni.o \ +./platform/android/jni/TouchesJni.o + +CPP_DEPS += \ +./platform/android/jni/IMEJni.d \ +./platform/android/jni/JniHelper.d \ +./platform/android/jni/MessageJni.d \ +./platform/android/jni/SensorJni.d \ +./platform/android/jni/SystemInfoJni.d \ +./platform/android/jni/TouchesJni.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/android/jni/%.o: ../platform/android/jni/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/platform/android/subdir.mk b/cocos2dx/AndroidDebug/platform/android/subdir.mk new file mode 100644 index 0000000000..dd60bb0bd5 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/android/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/android/CCAccelerometer_android.cpp \ +../platform/android/CCApplication_android.cpp \ +../platform/android/CCEGLView_android.cpp + +OBJS += \ +./platform/android/CCAccelerometer_android.o \ +./platform/android/CCApplication_android.o \ +./platform/android/CCEGLView_android.o + +CPP_DEPS += \ +./platform/android/CCAccelerometer_android.d \ +./platform/android/CCApplication_android.d \ +./platform/android/CCEGLView_android.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/android/%.o: ../platform/android/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/platform/platform.d b/cocos2dx/AndroidDebug/platform/platform.d new file mode 100644 index 0000000000..bd8466f541 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/platform.d @@ -0,0 +1,22 @@ +platform/platform.d platform/platform.o: ../platform/platform.cpp \ + ../platform/platform.h ../platform/CCThread.h ../platform/CCCommon.h \ + ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h ../platform/CCStdC.h + +../platform/platform.h: + +../platform/CCThread.h: + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: + +../platform/CCStdC.h: diff --git a/cocos2dx/AndroidDebug/platform/subdir.mk b/cocos2dx/AndroidDebug/platform/subdir.mk new file mode 100644 index 0000000000..9c34331e38 --- /dev/null +++ b/cocos2dx/AndroidDebug/platform/subdir.mk @@ -0,0 +1,45 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/CCCommon.cpp \ +../platform/CCFileUtils.cpp \ +../platform/CCGL.cpp \ +../platform/CCImage.cpp \ +../platform/CCSAXParser.cpp \ +../platform/CCStdC.cpp \ +../platform/CCThread.cpp \ +../platform/platform.cpp + +OBJS += \ +./platform/CCCommon.o \ +./platform/CCFileUtils.o \ +./platform/CCGL.o \ +./platform/CCImage.o \ +./platform/CCSAXParser.o \ +./platform/CCStdC.o \ +./platform/CCThread.o \ +./platform/platform.o + +CPP_DEPS += \ +./platform/CCCommon.d \ +./platform/CCFileUtils.d \ +./platform/CCGL.d \ +./platform/CCImage.d \ +./platform/CCSAXParser.d \ +./platform/CCStdC.d \ +./platform/CCThread.d \ +./platform/platform.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/%.o: ../platform/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/script_support/CCScriptSupport.d b/cocos2dx/AndroidDebug/script_support/CCScriptSupport.d new file mode 100644 index 0000000000..d8cbd34f37 --- /dev/null +++ b/cocos2dx/AndroidDebug/script_support/CCScriptSupport.d @@ -0,0 +1,101 @@ +script_support/CCScriptSupport.d script_support/CCScriptSupport.o: \ + ../script_support/CCScriptSupport.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: diff --git a/cocos2dx/AndroidDebug/script_support/subdir.mk b/cocos2dx/AndroidDebug/script_support/subdir.mk new file mode 100644 index 0000000000..09d4d9c6ae --- /dev/null +++ b/cocos2dx/AndroidDebug/script_support/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../script_support/CCScriptSupport.cpp + +OBJS += \ +./script_support/CCScriptSupport.o + +CPP_DEPS += \ +./script_support/CCScriptSupport.d + + +# Each subdirectory must supply rules for building sources it contributes +script_support/%.o: ../script_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/sources.mk b/cocos2dx/AndroidDebug/sources.mk new file mode 100644 index 0000000000..c2f95fd8fc --- /dev/null +++ b/cocos2dx/AndroidDebug/sources.mk @@ -0,0 +1,49 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +touch_dispatcher \ +tileMap_parallax_nodes \ +textures \ +text_input_node \ +support/zip_support \ +support/image_support \ +support \ +sprite_nodes \ +script_support \ +platform \ +platform/android/jni \ +platform/android \ +particle_nodes \ +misc_nodes \ +menu_nodes \ +layers_scenes_transitions_nodes \ +label_nodes \ +keypad_dispatcher \ +effects \ +. \ +cocoa \ +base_nodes \ +actions \ + diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.d b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.d new file mode 100644 index 0000000000..09e0d8816f --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.d @@ -0,0 +1,116 @@ +sprite_nodes/CCAnimation.d sprite_nodes/CCAnimation.o: \ + ../sprite_nodes/CCAnimation.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.o.REMOVED.git-id new file mode 100644 index 0000000000..7956b3613c --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.o.REMOVED.git-id @@ -0,0 +1 @@ +5e2ee75ffb4439dba4af2834d34f52ff47c61f6c \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.d b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.d new file mode 100644 index 0000000000..a54dc2df26 --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.d @@ -0,0 +1,110 @@ +sprite_nodes/CCAnimationCache.d sprite_nodes/CCAnimationCache.o: \ + ../sprite_nodes/CCAnimationCache.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.o.REMOVED.git-id new file mode 100644 index 0000000000..1eff535392 --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.o.REMOVED.git-id @@ -0,0 +1 @@ +bd2204b43d9ab4faf2e8db2d55fd5f799f52e74d \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d b/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d new file mode 100644 index 0000000000..c71f77af3d --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d @@ -0,0 +1,143 @@ +sprite_nodes/CCSprite.d sprite_nodes/CCSprite.o: \ + ../sprite_nodes/CCSprite.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.o.REMOVED.git-id new file mode 100644 index 0000000000..45acb1a12b --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.o.REMOVED.git-id @@ -0,0 +1 @@ +a7ece4c265863f861143e2994f6dec704cb3a72e \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.d b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.d new file mode 100644 index 0000000000..47734d1e3d --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.d @@ -0,0 +1,137 @@ +sprite_nodes/CCSpriteBatchNode.d sprite_nodes/CCSpriteBatchNode.o: \ + ../sprite_nodes/CCSpriteBatchNode.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.o.REMOVED.git-id new file mode 100644 index 0000000000..5a4eaa5a64 --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.o.REMOVED.git-id @@ -0,0 +1 @@ +9fb26c22e39a012b5c3d99bc2112eb5363b07289 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrame.d b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrame.d new file mode 100644 index 0000000000..d5dbb45369 --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrame.d @@ -0,0 +1,101 @@ +sprite_nodes/CCSpriteFrame.d sprite_nodes/CCSpriteFrame.o: \ + ../sprite_nodes/CCSpriteFrame.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.d b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.d new file mode 100644 index 0000000000..e33d26165b --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.d @@ -0,0 +1,140 @@ +sprite_nodes/CCSpriteFrameCache.d sprite_nodes/CCSpriteFrameCache.o: \ + ../sprite_nodes/CCSpriteFrameCache.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/cocoa/CCNS.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/cocoa/CCNS.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.o.REMOVED.git-id new file mode 100644 index 0000000000..d3d66b9326 --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.o.REMOVED.git-id @@ -0,0 +1 @@ +bfc4b24accea78dfd3bedd5f70add7eb72a04a17 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/sprite_nodes/subdir.mk b/cocos2dx/AndroidDebug/sprite_nodes/subdir.mk new file mode 100644 index 0000000000..fcad05aaf0 --- /dev/null +++ b/cocos2dx/AndroidDebug/sprite_nodes/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../sprite_nodes/CCAnimation.cpp \ +../sprite_nodes/CCAnimationCache.cpp \ +../sprite_nodes/CCSprite.cpp \ +../sprite_nodes/CCSpriteBatchNode.cpp \ +../sprite_nodes/CCSpriteFrame.cpp \ +../sprite_nodes/CCSpriteFrameCache.cpp + +OBJS += \ +./sprite_nodes/CCAnimation.o \ +./sprite_nodes/CCAnimationCache.o \ +./sprite_nodes/CCSprite.o \ +./sprite_nodes/CCSpriteBatchNode.o \ +./sprite_nodes/CCSpriteFrame.o \ +./sprite_nodes/CCSpriteFrameCache.o + +CPP_DEPS += \ +./sprite_nodes/CCAnimation.d \ +./sprite_nodes/CCAnimationCache.d \ +./sprite_nodes/CCSprite.d \ +./sprite_nodes/CCSpriteBatchNode.d \ +./sprite_nodes/CCSpriteFrame.d \ +./sprite_nodes/CCSpriteFrameCache.d + + +# Each subdirectory must supply rules for building sources it contributes +sprite_nodes/%.o: ../sprite_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/subdir.mk b/cocos2dx/AndroidDebug/subdir.mk new file mode 100644 index 0000000000..f8f6f98591 --- /dev/null +++ b/cocos2dx/AndroidDebug/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../CCCamera.cpp \ +../CCConfiguration.cpp \ +../CCDirector.cpp \ +../CCDrawingPrimitives.cpp \ +../CCScheduler.cpp \ +../cocos2d.cpp + +OBJS += \ +./CCCamera.o \ +./CCConfiguration.o \ +./CCDirector.o \ +./CCDrawingPrimitives.o \ +./CCScheduler.o \ +./cocos2d.o + +CPP_DEPS += \ +./CCCamera.d \ +./CCConfiguration.d \ +./CCDirector.d \ +./CCDrawingPrimitives.d \ +./CCScheduler.d \ +./cocos2d.d + + +# Each subdirectory must supply rules for building sources it contributes +%.o: ../%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/support/CCArray.d b/cocos2dx/AndroidDebug/support/CCArray.d new file mode 100644 index 0000000000..fe80a9267c --- /dev/null +++ b/cocos2dx/AndroidDebug/support/CCArray.d @@ -0,0 +1,79 @@ +support/CCArray.d support/CCArray.o: ../support/CCArray.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/support/CCPointExtension.d b/cocos2dx/AndroidDebug/support/CCPointExtension.d new file mode 100644 index 0000000000..bfc1aa7914 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/CCPointExtension.d @@ -0,0 +1,74 @@ +support/CCPointExtension.d support/CCPointExtension.o: \ + ../support/CCPointExtension.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/support/CCProfiling.d b/cocos2dx/AndroidDebug/support/CCProfiling.d new file mode 100644 index 0000000000..1847592f61 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/CCProfiling.d @@ -0,0 +1,10 @@ +support/CCProfiling.d support/CCProfiling.o: ../support/CCProfiling.cpp \ + ../support/CCProfiling.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../support/CCProfiling.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/support/CCUserDefault.d b/cocos2dx/AndroidDebug/support/CCUserDefault.d new file mode 100644 index 0000000000..c6b7643068 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/CCUserDefault.d @@ -0,0 +1,146 @@ +support/CCUserDefault.d support/CCUserDefault.o: \ + ../support/CCUserDefault.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: diff --git a/cocos2dx/AndroidDebug/support/CCUserDefault.o.REMOVED.git-id b/cocos2dx/AndroidDebug/support/CCUserDefault.o.REMOVED.git-id new file mode 100644 index 0000000000..4fce75a98d --- /dev/null +++ b/cocos2dx/AndroidDebug/support/CCUserDefault.o.REMOVED.git-id @@ -0,0 +1 @@ +222fc538cd614303947a7a57f15648e5db5765f6 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/support/TransformUtils.d b/cocos2dx/AndroidDebug/support/TransformUtils.d new file mode 100644 index 0000000000..3331f5d5ed --- /dev/null +++ b/cocos2dx/AndroidDebug/support/TransformUtils.d @@ -0,0 +1,49 @@ +support/TransformUtils.d support/TransformUtils.o: \ + ../support/TransformUtils.cpp ../support/TransformUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h + +../support/TransformUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: diff --git a/cocos2dx/AndroidDebug/support/base64.d b/cocos2dx/AndroidDebug/support/base64.d new file mode 100644 index 0000000000..e8d0a13c78 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/base64.d @@ -0,0 +1,4 @@ +support/base64.d support/base64.o: ../support/base64.cpp \ + ../support/base64.h + +../support/base64.h: diff --git a/cocos2dx/AndroidDebug/support/ccUtils.d b/cocos2dx/AndroidDebug/support/ccUtils.d new file mode 100644 index 0000000000..ff1c424af7 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/ccUtils.d @@ -0,0 +1,4 @@ +support/ccUtils.d support/ccUtils.o: ../support/ccUtils.cpp \ + ../support/ccUtils.h + +../support/ccUtils.h: diff --git a/cocos2dx/AndroidDebug/support/image_support/TGAlib.d b/cocos2dx/AndroidDebug/support/image_support/TGAlib.d new file mode 100644 index 0000000000..8fb930a570 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/image_support/TGAlib.d @@ -0,0 +1,79 @@ +support/image_support/TGAlib.d support/image_support/TGAlib.o: \ + ../support/image_support/TGAlib.cpp ../support/image_support/TGAlib.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +../support/image_support/TGAlib.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/support/image_support/subdir.mk b/cocos2dx/AndroidDebug/support/image_support/subdir.mk new file mode 100644 index 0000000000..ddb3cf5f80 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/image_support/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/image_support/TGAlib.cpp + +OBJS += \ +./support/image_support/TGAlib.o + +CPP_DEPS += \ +./support/image_support/TGAlib.d + + +# Each subdirectory must supply rules for building sources it contributes +support/image_support/%.o: ../support/image_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/support/subdir.mk b/cocos2dx/AndroidDebug/support/subdir.mk new file mode 100644 index 0000000000..f7e358fc32 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/subdir.mk @@ -0,0 +1,42 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/CCArray.cpp \ +../support/CCPointExtension.cpp \ +../support/CCProfiling.cpp \ +../support/CCUserDefault.cpp \ +../support/TransformUtils.cpp \ +../support/base64.cpp \ +../support/ccUtils.cpp + +OBJS += \ +./support/CCArray.o \ +./support/CCPointExtension.o \ +./support/CCProfiling.o \ +./support/CCUserDefault.o \ +./support/TransformUtils.o \ +./support/base64.o \ +./support/ccUtils.o + +CPP_DEPS += \ +./support/CCArray.d \ +./support/CCPointExtension.d \ +./support/CCProfiling.d \ +./support/CCUserDefault.d \ +./support/TransformUtils.d \ +./support/base64.d \ +./support/ccUtils.d + + +# Each subdirectory must supply rules for building sources it contributes +support/%.o: ../support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/support/zip_support/ZipUtils.d b/cocos2dx/AndroidDebug/support/zip_support/ZipUtils.d new file mode 100644 index 0000000000..0ca3161f19 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/zip_support/ZipUtils.d @@ -0,0 +1,82 @@ +support/zip_support/ZipUtils.d support/zip_support/ZipUtils.o: \ + ../support/zip_support/ZipUtils.cpp ../support/zip_support/ZipUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h + +../support/zip_support/ZipUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: diff --git a/cocos2dx/AndroidDebug/support/zip_support/ioapi.d b/cocos2dx/AndroidDebug/support/zip_support/ioapi.d new file mode 100644 index 0000000000..865d39ce8d --- /dev/null +++ b/cocos2dx/AndroidDebug/support/zip_support/ioapi.d @@ -0,0 +1,7 @@ +support/zip_support/ioapi.d support/zip_support/ioapi.o: \ + ../support/zip_support/ioapi.cpp ../support/zip_support/ioapi.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../support/zip_support/ioapi.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/support/zip_support/subdir.mk b/cocos2dx/AndroidDebug/support/zip_support/subdir.mk new file mode 100644 index 0000000000..e6a1b14767 --- /dev/null +++ b/cocos2dx/AndroidDebug/support/zip_support/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/zip_support/ZipUtils.cpp \ +../support/zip_support/ioapi.cpp \ +../support/zip_support/unzip.cpp + +OBJS += \ +./support/zip_support/ZipUtils.o \ +./support/zip_support/ioapi.o \ +./support/zip_support/unzip.o + +CPP_DEPS += \ +./support/zip_support/ZipUtils.d \ +./support/zip_support/ioapi.d \ +./support/zip_support/unzip.d + + +# Each subdirectory must supply rules for building sources it contributes +support/zip_support/%.o: ../support/zip_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/support/zip_support/unzip.d b/cocos2dx/AndroidDebug/support/zip_support/unzip.d new file mode 100644 index 0000000000..055c8ef71b --- /dev/null +++ b/cocos2dx/AndroidDebug/support/zip_support/unzip.d @@ -0,0 +1,10 @@ +support/zip_support/unzip.d support/zip_support/unzip.o: \ + ../support/zip_support/unzip.cpp ../support/zip_support/unzip.h \ + ../support/zip_support/ioapi.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../support/zip_support/unzip.h: + +../support/zip_support/ioapi.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.d b/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.d new file mode 100644 index 0000000000..04cc4b1c57 --- /dev/null +++ b/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.d @@ -0,0 +1,26 @@ +text_input_node/CCIMEDispatcher.d text_input_node/CCIMEDispatcher.o: \ + ../text_input_node/CCIMEDispatcher.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.o.REMOVED.git-id b/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.o.REMOVED.git-id new file mode 100644 index 0000000000..b7c837f61d --- /dev/null +++ b/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.o.REMOVED.git-id @@ -0,0 +1 @@ +a5037a8ca6ca67f957ac221eac8b64f567300221 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.d b/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.d new file mode 100644 index 0000000000..baddf4e4f2 --- /dev/null +++ b/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.d @@ -0,0 +1,131 @@ +text_input_node/CCTextFieldTTF.d text_input_node/CCTextFieldTTF.o: \ + ../text_input_node/CCTextFieldTTF.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.o.REMOVED.git-id b/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.o.REMOVED.git-id new file mode 100644 index 0000000000..95fb39b341 --- /dev/null +++ b/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.o.REMOVED.git-id @@ -0,0 +1 @@ +8f11a2bc52794eea4781ec7711e9cd5dbae369fa \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/text_input_node/subdir.mk b/cocos2dx/AndroidDebug/text_input_node/subdir.mk new file mode 100644 index 0000000000..e75cff32cf --- /dev/null +++ b/cocos2dx/AndroidDebug/text_input_node/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../text_input_node/CCIMEDispatcher.cpp \ +../text_input_node/CCTextFieldTTF.cpp + +OBJS += \ +./text_input_node/CCIMEDispatcher.o \ +./text_input_node/CCTextFieldTTF.o + +CPP_DEPS += \ +./text_input_node/CCIMEDispatcher.d \ +./text_input_node/CCTextFieldTTF.d + + +# Each subdirectory must supply rules for building sources it contributes +text_input_node/%.o: ../text_input_node/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/textures/CCTexture2D.d b/cocos2dx/AndroidDebug/textures/CCTexture2D.d new file mode 100644 index 0000000000..c5b9616ffa --- /dev/null +++ b/cocos2dx/AndroidDebug/textures/CCTexture2D.d @@ -0,0 +1,110 @@ +textures/CCTexture2D.d textures/CCTexture2D.o: \ + ../textures/CCTexture2D.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/textures/CCTexture2D.o.REMOVED.git-id b/cocos2dx/AndroidDebug/textures/CCTexture2D.o.REMOVED.git-id new file mode 100644 index 0000000000..b0a2475751 --- /dev/null +++ b/cocos2dx/AndroidDebug/textures/CCTexture2D.o.REMOVED.git-id @@ -0,0 +1 @@ +db05ccf2bfae4e6a6d9404a9dd2dcad2741bf612 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/textures/CCTextureAtlas.d b/cocos2dx/AndroidDebug/textures/CCTextureAtlas.d new file mode 100644 index 0000000000..efe1dfe84b --- /dev/null +++ b/cocos2dx/AndroidDebug/textures/CCTextureAtlas.d @@ -0,0 +1,92 @@ +textures/CCTextureAtlas.d textures/CCTextureAtlas.o: \ + ../textures/CCTextureAtlas.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/textures/CCTextureCache.d b/cocos2dx/AndroidDebug/textures/CCTextureCache.d new file mode 100644 index 0000000000..6ffa2a8219 --- /dev/null +++ b/cocos2dx/AndroidDebug/textures/CCTextureCache.d @@ -0,0 +1,110 @@ +textures/CCTextureCache.d textures/CCTextureCache.o: \ + ../textures/CCTextureCache.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: diff --git a/cocos2dx/AndroidDebug/textures/CCTextureCache.o.REMOVED.git-id b/cocos2dx/AndroidDebug/textures/CCTextureCache.o.REMOVED.git-id new file mode 100644 index 0000000000..deb8f895f5 --- /dev/null +++ b/cocos2dx/AndroidDebug/textures/CCTextureCache.o.REMOVED.git-id @@ -0,0 +1 @@ +77298a9a19f95d16c0670129c126ac734b0f64a7 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/textures/CCTexturePVR.d b/cocos2dx/AndroidDebug/textures/CCTexturePVR.d new file mode 100644 index 0000000000..0417f7990e --- /dev/null +++ b/cocos2dx/AndroidDebug/textures/CCTexturePVR.d @@ -0,0 +1,104 @@ +textures/CCTexturePVR.d textures/CCTexturePVR.o: \ + ../textures/CCTexturePVR.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: diff --git a/cocos2dx/AndroidDebug/textures/CCTexturePVR.o.REMOVED.git-id b/cocos2dx/AndroidDebug/textures/CCTexturePVR.o.REMOVED.git-id new file mode 100644 index 0000000000..c571785ff6 --- /dev/null +++ b/cocos2dx/AndroidDebug/textures/CCTexturePVR.o.REMOVED.git-id @@ -0,0 +1 @@ +6f5dfead27de071aa9438c2681713dc3b01b7b66 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/textures/subdir.mk b/cocos2dx/AndroidDebug/textures/subdir.mk new file mode 100644 index 0000000000..df0555ce1b --- /dev/null +++ b/cocos2dx/AndroidDebug/textures/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../textures/CCTexture2D.cpp \ +../textures/CCTextureAtlas.cpp \ +../textures/CCTextureCache.cpp \ +../textures/CCTexturePVR.cpp + +OBJS += \ +./textures/CCTexture2D.o \ +./textures/CCTextureAtlas.o \ +./textures/CCTextureCache.o \ +./textures/CCTexturePVR.o + +CPP_DEPS += \ +./textures/CCTexture2D.d \ +./textures/CCTextureAtlas.d \ +./textures/CCTextureCache.d \ +./textures/CCTexturePVR.d + + +# Each subdirectory must supply rules for building sources it contributes +textures/%.o: ../textures/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.d new file mode 100644 index 0000000000..30927ff830 --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.d @@ -0,0 +1,99 @@ +tileMap_parallax_nodes/CCParallaxNode.d \ + tileMap_parallax_nodes/CCParallaxNode.o: \ + ../tileMap_parallax_nodes/CCParallaxNode.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.o.REMOVED.git-id new file mode 100644 index 0000000000..9c323df2d9 --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.o.REMOVED.git-id @@ -0,0 +1 @@ +9924f98c2db33ba0ec27265a8f4f5364a8cfb8be \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.d new file mode 100644 index 0000000000..10f9be4fb5 --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.d @@ -0,0 +1,143 @@ +tileMap_parallax_nodes/CCTMXLayer.d tileMap_parallax_nodes/CCTMXLayer.o: \ + ../tileMap_parallax_nodes/CCTMXLayer.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.o.REMOVED.git-id new file mode 100644 index 0000000000..0c88f667cc --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.o.REMOVED.git-id @@ -0,0 +1 @@ +37244f56198615935a866331885d8c5c7d37e95a \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.d new file mode 100644 index 0000000000..7b62478c80 --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.d @@ -0,0 +1,84 @@ +tileMap_parallax_nodes/CCTMXObjectGroup.d \ + tileMap_parallax_nodes/CCTMXObjectGroup.o: \ + ../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.o.REMOVED.git-id new file mode 100644 index 0000000000..b7258bb235 --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.o.REMOVED.git-id @@ -0,0 +1 @@ +33c1b69dc7f487684c4163f851cbe632ec9c8da7 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.d new file mode 100644 index 0000000000..bab28656ef --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.d @@ -0,0 +1,138 @@ +tileMap_parallax_nodes/CCTMXTiledMap.d \ + tileMap_parallax_nodes/CCTMXTiledMap.o: \ + ../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.o.REMOVED.git-id new file mode 100644 index 0000000000..fc789bfeed --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.o.REMOVED.git-id @@ -0,0 +1 @@ +40cd0164e4f5a7a1624c726734cce21b83f84ca4 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.d new file mode 100644 index 0000000000..c47fff7a9d --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.d @@ -0,0 +1,135 @@ +tileMap_parallax_nodes/CCTMXXMLParser.d \ + tileMap_parallax_nodes/CCTMXXMLParser.o: \ + ../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.o.REMOVED.git-id new file mode 100644 index 0000000000..dbaecaf53e --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.o.REMOVED.git-id @@ -0,0 +1 @@ +d6800ced51ebc9a74ae18a95de8592ea8ee6a40a \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.d new file mode 100644 index 0000000000..9035448b51 --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.d @@ -0,0 +1,117 @@ +tileMap_parallax_nodes/CCTileMapAtlas.d \ + tileMap_parallax_nodes/CCTileMapAtlas.o: \ + ../tileMap_parallax_nodes/CCTileMapAtlas.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/image_support/TGAlib.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/image_support/TGAlib.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.o.REMOVED.git-id new file mode 100644 index 0000000000..4885804192 --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.o.REMOVED.git-id @@ -0,0 +1 @@ +80a4625547f77c07ba68de7205759f3e3d22dad4 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/subdir.mk b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/subdir.mk new file mode 100644 index 0000000000..86180931f6 --- /dev/null +++ b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../tileMap_parallax_nodes/CCParallaxNode.cpp \ +../tileMap_parallax_nodes/CCTMXLayer.cpp \ +../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ +../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ +../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ +../tileMap_parallax_nodes/CCTileMapAtlas.cpp + +OBJS += \ +./tileMap_parallax_nodes/CCParallaxNode.o \ +./tileMap_parallax_nodes/CCTMXLayer.o \ +./tileMap_parallax_nodes/CCTMXObjectGroup.o \ +./tileMap_parallax_nodes/CCTMXTiledMap.o \ +./tileMap_parallax_nodes/CCTMXXMLParser.o \ +./tileMap_parallax_nodes/CCTileMapAtlas.o + +CPP_DEPS += \ +./tileMap_parallax_nodes/CCParallaxNode.d \ +./tileMap_parallax_nodes/CCTMXLayer.d \ +./tileMap_parallax_nodes/CCTMXObjectGroup.d \ +./tileMap_parallax_nodes/CCTMXTiledMap.d \ +./tileMap_parallax_nodes/CCTMXXMLParser.d \ +./tileMap_parallax_nodes/CCTileMapAtlas.d + + +# Each subdirectory must supply rules for building sources it contributes +tileMap_parallax_nodes/%.o: ../tileMap_parallax_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.d b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.d new file mode 100644 index 0000000000..acff62c5a9 --- /dev/null +++ b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.d @@ -0,0 +1,125 @@ +touch_dispatcher/CCTouchDispatcher.d touch_dispatcher/CCTouchDispatcher.o: \ + ../touch_dispatcher/CCTouchDispatcher.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.o.REMOVED.git-id b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.o.REMOVED.git-id new file mode 100644 index 0000000000..f7bd912c50 --- /dev/null +++ b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.o.REMOVED.git-id @@ -0,0 +1 @@ +6c32313b71b6f42ce415396efde2fcebdd14f86e \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.d b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.d new file mode 100644 index 0000000000..837b1e5440 --- /dev/null +++ b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.d @@ -0,0 +1,110 @@ +touch_dispatcher/CCTouchHandler.d touch_dispatcher/CCTouchHandler.o: \ + ../touch_dispatcher/CCTouchHandler.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.o.REMOVED.git-id b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.o.REMOVED.git-id new file mode 100644 index 0000000000..405818feee --- /dev/null +++ b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.o.REMOVED.git-id @@ -0,0 +1 @@ +6d8696ab652cc0ed8672c688b6b8b17c52816cc6 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/subdir.mk b/cocos2dx/AndroidDebug/touch_dispatcher/subdir.mk new file mode 100644 index 0000000000..5568bb1125 --- /dev/null +++ b/cocos2dx/AndroidDebug/touch_dispatcher/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../touch_dispatcher/CCTouchDispatcher.cpp \ +../touch_dispatcher/CCTouchHandler.cpp + +OBJS += \ +./touch_dispatcher/CCTouchDispatcher.o \ +./touch_dispatcher/CCTouchHandler.o + +CPP_DEPS += \ +./touch_dispatcher/CCTouchDispatcher.d \ +./touch_dispatcher/CCTouchHandler.d + + +# Each subdirectory must supply rules for building sources it contributes +touch_dispatcher/%.o: ../touch_dispatcher/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/CCCamera.d b/cocos2dx/AndroidRelease/CCCamera.d new file mode 100644 index 0000000000..ff5b6fc447 --- /dev/null +++ b/cocos2dx/AndroidRelease/CCCamera.d @@ -0,0 +1,79 @@ +CCCamera.d CCCamera.o: ../CCCamera.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: diff --git a/cocos2dx/AndroidRelease/CCConfiguration.d b/cocos2dx/AndroidRelease/CCConfiguration.d new file mode 100644 index 0000000000..bc4e1c50d4 --- /dev/null +++ b/cocos2dx/AndroidRelease/CCConfiguration.d @@ -0,0 +1,79 @@ +CCConfiguration.d CCConfiguration.o: ../CCConfiguration.cpp \ + ../CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +../CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/CCDirector.d b/cocos2dx/AndroidRelease/CCDirector.d new file mode 100644 index 0000000000..30716846ef --- /dev/null +++ b/cocos2dx/AndroidRelease/CCDirector.d @@ -0,0 +1,220 @@ +CCDirector.d CCDirector.o: ../CCDirector.cpp ../cocoa/CCNS.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ + ../platform/platform.h ../platform/CCThread.h ../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + ../CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h + +../cocoa/CCNS.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: + +../platform/platform.h: + +../platform/CCThread.h: + +../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +../CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/CCDrawingPrimitives.d b/cocos2dx/AndroidRelease/CCDrawingPrimitives.d new file mode 100644 index 0000000000..d3c36ebe22 --- /dev/null +++ b/cocos2dx/AndroidRelease/CCDrawingPrimitives.d @@ -0,0 +1,79 @@ +CCDrawingPrimitives.d CCDrawingPrimitives.o: ../CCDrawingPrimitives.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: diff --git a/cocos2dx/AndroidRelease/CCScheduler.d b/cocos2dx/AndroidRelease/CCScheduler.d new file mode 100644 index 0000000000..c408541982 --- /dev/null +++ b/cocos2dx/AndroidRelease/CCScheduler.d @@ -0,0 +1,114 @@ +CCScheduler.d CCScheduler.o: ../CCScheduler.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + ../support/data_support/utlist.h ../support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +../support/data_support/utlist.h: + +../support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: diff --git a/cocos2dx/AndroidRelease/actions/CCAction.d b/cocos2dx/AndroidRelease/actions/CCAction.d new file mode 100644 index 0000000000..a2c30c3080 --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCAction.d @@ -0,0 +1,127 @@ +actions/CCAction.d actions/CCAction.o: ../actions/CCAction.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionCamera.d b/cocos2dx/AndroidRelease/actions/CCActionCamera.d new file mode 100644 index 0000000000..826e427c72 --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionCamera.d @@ -0,0 +1,122 @@ +actions/CCActionCamera.d actions/CCActionCamera.o: \ + ../actions/CCActionCamera.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionEase.d b/cocos2dx/AndroidRelease/actions/CCActionEase.d new file mode 100644 index 0000000000..55c0dd140b --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionEase.d @@ -0,0 +1,116 @@ +actions/CCActionEase.d actions/CCActionEase.o: \ + ../actions/CCActionEase.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionGrid.d b/cocos2dx/AndroidRelease/actions/CCActionGrid.d new file mode 100644 index 0000000000..7198b94556 --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionGrid.d @@ -0,0 +1,137 @@ +actions/CCActionGrid.d actions/CCActionGrid.o: \ + ../actions/CCActionGrid.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionGrid3D.d b/cocos2dx/AndroidRelease/actions/CCActionGrid3D.d new file mode 100644 index 0000000000..f484b34884 --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionGrid3D.d @@ -0,0 +1,125 @@ +actions/CCActionGrid3D.d actions/CCActionGrid3D.o: \ + ../actions/CCActionGrid3D.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionInstant.d b/cocos2dx/AndroidRelease/actions/CCActionInstant.d new file mode 100644 index 0000000000..e460d29577 --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionInstant.d @@ -0,0 +1,128 @@ +actions/CCActionInstant.d actions/CCActionInstant.o: \ + ../actions/CCActionInstant.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionInterval.d b/cocos2dx/AndroidRelease/actions/CCActionInterval.d new file mode 100644 index 0000000000..ff02e3e4e8 --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionInterval.d @@ -0,0 +1,128 @@ +actions/CCActionInterval.d actions/CCActionInterval.o: \ + ../actions/CCActionInterval.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionManager.d b/cocos2dx/AndroidRelease/actions/CCActionManager.d new file mode 100644 index 0000000000..727d35c154 --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionManager.d @@ -0,0 +1,107 @@ +actions/CCActionManager.d actions/CCActionManager.o: \ + ../actions/CCActionManager.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionPageTurn3D.d b/cocos2dx/AndroidRelease/actions/CCActionPageTurn3D.d new file mode 100644 index 0000000000..2acf42c8ce --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionPageTurn3D.d @@ -0,0 +1,125 @@ +actions/CCActionPageTurn3D.d actions/CCActionPageTurn3D.o: \ + ../actions/CCActionPageTurn3D.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionProgressTimer.d b/cocos2dx/AndroidRelease/actions/CCActionProgressTimer.d new file mode 100644 index 0000000000..02a28b289f --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionProgressTimer.d @@ -0,0 +1,128 @@ +actions/CCActionProgressTimer.d actions/CCActionProgressTimer.o: \ + ../actions/CCActionProgressTimer.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionTiledGrid.d b/cocos2dx/AndroidRelease/actions/CCActionTiledGrid.d new file mode 100644 index 0000000000..03a250776b --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/CCActionTiledGrid.d @@ -0,0 +1,143 @@ +actions/CCActionTiledGrid.d actions/CCActionTiledGrid.o: \ + ../actions/CCActionTiledGrid.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/actions/subdir.mk b/cocos2dx/AndroidRelease/actions/subdir.mk new file mode 100644 index 0000000000..0559ee8134 --- /dev/null +++ b/cocos2dx/AndroidRelease/actions/subdir.mk @@ -0,0 +1,54 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../actions/CCAction.cpp \ +../actions/CCActionCamera.cpp \ +../actions/CCActionEase.cpp \ +../actions/CCActionGrid.cpp \ +../actions/CCActionGrid3D.cpp \ +../actions/CCActionInstant.cpp \ +../actions/CCActionInterval.cpp \ +../actions/CCActionManager.cpp \ +../actions/CCActionPageTurn3D.cpp \ +../actions/CCActionProgressTimer.cpp \ +../actions/CCActionTiledGrid.cpp + +OBJS += \ +./actions/CCAction.o \ +./actions/CCActionCamera.o \ +./actions/CCActionEase.o \ +./actions/CCActionGrid.o \ +./actions/CCActionGrid3D.o \ +./actions/CCActionInstant.o \ +./actions/CCActionInterval.o \ +./actions/CCActionManager.o \ +./actions/CCActionPageTurn3D.o \ +./actions/CCActionProgressTimer.o \ +./actions/CCActionTiledGrid.o + +CPP_DEPS += \ +./actions/CCAction.d \ +./actions/CCActionCamera.d \ +./actions/CCActionEase.d \ +./actions/CCActionGrid.d \ +./actions/CCActionGrid3D.d \ +./actions/CCActionInstant.d \ +./actions/CCActionInterval.d \ +./actions/CCActionManager.d \ +./actions/CCActionPageTurn3D.d \ +./actions/CCActionProgressTimer.d \ +./actions/CCActionTiledGrid.d + + +# Each subdirectory must supply rules for building sources it contributes +actions/%.o: ../actions/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/base_nodes/CCAtlasNode.d b/cocos2dx/AndroidRelease/base_nodes/CCAtlasNode.d new file mode 100644 index 0000000000..27d2469fb3 --- /dev/null +++ b/cocos2dx/AndroidRelease/base_nodes/CCAtlasNode.d @@ -0,0 +1,104 @@ +base_nodes/CCAtlasNode.d base_nodes/CCAtlasNode.o: \ + ../base_nodes/CCAtlasNode.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: diff --git a/cocos2dx/AndroidRelease/base_nodes/CCNode.d b/cocos2dx/AndroidRelease/base_nodes/CCNode.d new file mode 100644 index 0000000000..d9b848443c --- /dev/null +++ b/cocos2dx/AndroidRelease/base_nodes/CCNode.d @@ -0,0 +1,136 @@ +base_nodes/CCNode.d base_nodes/CCNode.o: ../base_nodes/CCNode.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: diff --git a/cocos2dx/AndroidRelease/base_nodes/subdir.mk b/cocos2dx/AndroidRelease/base_nodes/subdir.mk new file mode 100644 index 0000000000..66bfa21d17 --- /dev/null +++ b/cocos2dx/AndroidRelease/base_nodes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../base_nodes/CCAtlasNode.cpp \ +../base_nodes/CCNode.cpp + +OBJS += \ +./base_nodes/CCAtlasNode.o \ +./base_nodes/CCNode.o + +CPP_DEPS += \ +./base_nodes/CCAtlasNode.d \ +./base_nodes/CCNode.d + + +# Each subdirectory must supply rules for building sources it contributes +base_nodes/%.o: ../base_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/cocoa/CCAffineTransform.d b/cocos2dx/AndroidRelease/cocoa/CCAffineTransform.d new file mode 100644 index 0000000000..eb2ba85edc --- /dev/null +++ b/cocos2dx/AndroidRelease/cocoa/CCAffineTransform.d @@ -0,0 +1,23 @@ +cocoa/CCAffineTransform.d cocoa/CCAffineTransform.o: \ + ../cocoa/CCAffineTransform.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCAutoreleasePool.d b/cocos2dx/AndroidRelease/cocoa/CCAutoreleasePool.d new file mode 100644 index 0000000000..50ba0052f1 --- /dev/null +++ b/cocos2dx/AndroidRelease/cocoa/CCAutoreleasePool.d @@ -0,0 +1,26 @@ +cocoa/CCAutoreleasePool.d cocoa/CCAutoreleasePool.o: \ + ../cocoa/CCAutoreleasePool.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCData.d b/cocos2dx/AndroidRelease/cocoa/CCData.d new file mode 100644 index 0000000000..ecb1280321 --- /dev/null +++ b/cocos2dx/AndroidRelease/cocoa/CCData.d @@ -0,0 +1,79 @@ +cocoa/CCData.d cocoa/CCData.o: ../cocoa/CCData.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCGeometry.d b/cocos2dx/AndroidRelease/cocoa/CCGeometry.d new file mode 100644 index 0000000000..966f72f25d --- /dev/null +++ b/cocos2dx/AndroidRelease/cocoa/CCGeometry.d @@ -0,0 +1,19 @@ +cocoa/CCGeometry.d cocoa/CCGeometry.o: ../cocoa/CCGeometry.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCNS.d b/cocos2dx/AndroidRelease/cocoa/CCNS.d new file mode 100644 index 0000000000..2ebb219988 --- /dev/null +++ b/cocos2dx/AndroidRelease/cocoa/CCNS.d @@ -0,0 +1,21 @@ +cocoa/CCNS.d cocoa/CCNS.o: ../cocoa/CCNS.cpp ../cocoa/CCNS.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../cocoa/CCNS.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCObject.d b/cocos2dx/AndroidRelease/cocoa/CCObject.d new file mode 100644 index 0000000000..2609e7259f --- /dev/null +++ b/cocos2dx/AndroidRelease/cocoa/CCObject.d @@ -0,0 +1,28 @@ +cocoa/CCObject.d cocoa/CCObject.o: ../cocoa/CCObject.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCSet.d b/cocos2dx/AndroidRelease/cocoa/CCSet.d new file mode 100644 index 0000000000..7aa0a8a99c --- /dev/null +++ b/cocos2dx/AndroidRelease/cocoa/CCSet.d @@ -0,0 +1,22 @@ +cocoa/CCSet.d cocoa/CCSet.o: ../cocoa/CCSet.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCZone.d b/cocos2dx/AndroidRelease/cocoa/CCZone.d new file mode 100644 index 0000000000..172ee0927d --- /dev/null +++ b/cocos2dx/AndroidRelease/cocoa/CCZone.d @@ -0,0 +1,22 @@ +cocoa/CCZone.d cocoa/CCZone.o: ../cocoa/CCZone.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocoa/subdir.mk b/cocos2dx/AndroidRelease/cocoa/subdir.mk new file mode 100644 index 0000000000..d3f57f8542 --- /dev/null +++ b/cocos2dx/AndroidRelease/cocoa/subdir.mk @@ -0,0 +1,45 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../cocoa/CCAffineTransform.cpp \ +../cocoa/CCAutoreleasePool.cpp \ +../cocoa/CCData.cpp \ +../cocoa/CCGeometry.cpp \ +../cocoa/CCNS.cpp \ +../cocoa/CCObject.cpp \ +../cocoa/CCSet.cpp \ +../cocoa/CCZone.cpp + +OBJS += \ +./cocoa/CCAffineTransform.o \ +./cocoa/CCAutoreleasePool.o \ +./cocoa/CCData.o \ +./cocoa/CCGeometry.o \ +./cocoa/CCNS.o \ +./cocoa/CCObject.o \ +./cocoa/CCSet.o \ +./cocoa/CCZone.o + +CPP_DEPS += \ +./cocoa/CCAffineTransform.d \ +./cocoa/CCAutoreleasePool.d \ +./cocoa/CCData.d \ +./cocoa/CCGeometry.d \ +./cocoa/CCNS.d \ +./cocoa/CCObject.d \ +./cocoa/CCSet.d \ +./cocoa/CCZone.d + + +# Each subdirectory must supply rules for building sources it contributes +cocoa/%.o: ../cocoa/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/cocos2d.d b/cocos2dx/AndroidRelease/cocos2d.d new file mode 100644 index 0000000000..864791e44d --- /dev/null +++ b/cocos2dx/AndroidRelease/cocos2d.d @@ -0,0 +1,340 @@ +cocos2d.d cocos2d.o: ../cocos2d.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/cocos2dx/AndroidRelease/effects/CCGrabber.d b/cocos2dx/AndroidRelease/effects/CCGrabber.d new file mode 100644 index 0000000000..e76ea937b2 --- /dev/null +++ b/cocos2dx/AndroidRelease/effects/CCGrabber.d @@ -0,0 +1,91 @@ +effects/CCGrabber.d effects/CCGrabber.o: ../effects/CCGrabber.cpp \ + ../effects/CCGrabber.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h + +../effects/CCGrabber.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: diff --git a/cocos2dx/AndroidRelease/effects/CCGrid.d b/cocos2dx/AndroidRelease/effects/CCGrid.d new file mode 100644 index 0000000000..0a7f9bddad --- /dev/null +++ b/cocos2dx/AndroidRelease/effects/CCGrid.d @@ -0,0 +1,121 @@ +effects/CCGrid.d effects/CCGrid.o: ../effects/CCGrid.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrabber.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrabber.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/effects/subdir.mk b/cocos2dx/AndroidRelease/effects/subdir.mk new file mode 100644 index 0000000000..9f70eaba3a --- /dev/null +++ b/cocos2dx/AndroidRelease/effects/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../effects/CCGrabber.cpp \ +../effects/CCGrid.cpp + +OBJS += \ +./effects/CCGrabber.o \ +./effects/CCGrid.o + +CPP_DEPS += \ +./effects/CCGrabber.d \ +./effects/CCGrid.d + + +# Each subdirectory must supply rules for building sources it contributes +effects/%.o: ../effects/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDelegate.d b/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDelegate.d new file mode 100644 index 0000000000..ba93ae9b5f --- /dev/null +++ b/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDelegate.d @@ -0,0 +1,74 @@ +keypad_dispatcher/CCKeypadDelegate.d keypad_dispatcher/CCKeypadDelegate.o: \ + ../keypad_dispatcher/CCKeypadDelegate.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDispatcher.d b/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDispatcher.d new file mode 100644 index 0000000000..1985a085e7 --- /dev/null +++ b/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDispatcher.d @@ -0,0 +1,84 @@ +keypad_dispatcher/CCKeypadDispatcher.d \ + keypad_dispatcher/CCKeypadDispatcher.o: \ + ../keypad_dispatcher/CCKeypadDispatcher.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/keypad_dispatcher/subdir.mk b/cocos2dx/AndroidRelease/keypad_dispatcher/subdir.mk new file mode 100644 index 0000000000..656cf7a409 --- /dev/null +++ b/cocos2dx/AndroidRelease/keypad_dispatcher/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../keypad_dispatcher/CCKeypadDelegate.cpp \ +../keypad_dispatcher/CCKeypadDispatcher.cpp + +OBJS += \ +./keypad_dispatcher/CCKeypadDelegate.o \ +./keypad_dispatcher/CCKeypadDispatcher.o + +CPP_DEPS += \ +./keypad_dispatcher/CCKeypadDelegate.d \ +./keypad_dispatcher/CCKeypadDispatcher.d + + +# Each subdirectory must supply rules for building sources it contributes +keypad_dispatcher/%.o: ../keypad_dispatcher/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/label_nodes/CCLabelAtlas.d b/cocos2dx/AndroidRelease/label_nodes/CCLabelAtlas.d new file mode 100644 index 0000000000..7aa0b16888 --- /dev/null +++ b/cocos2dx/AndroidRelease/label_nodes/CCLabelAtlas.d @@ -0,0 +1,113 @@ +label_nodes/CCLabelAtlas.d label_nodes/CCLabelAtlas.o: \ + ../label_nodes/CCLabelAtlas.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: diff --git a/cocos2dx/AndroidRelease/label_nodes/CCLabelBMFont.d b/cocos2dx/AndroidRelease/label_nodes/CCLabelBMFont.d new file mode 100644 index 0000000000..8a226e0518 --- /dev/null +++ b/cocos2dx/AndroidRelease/label_nodes/CCLabelBMFont.d @@ -0,0 +1,140 @@ +label_nodes/CCLabelBMFont.d label_nodes/CCLabelBMFont.o: \ + ../label_nodes/CCLabelBMFont.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: diff --git a/cocos2dx/AndroidRelease/label_nodes/CCLabelTTF.d b/cocos2dx/AndroidRelease/label_nodes/CCLabelTTF.d new file mode 100644 index 0000000000..2f52241807 --- /dev/null +++ b/cocos2dx/AndroidRelease/label_nodes/CCLabelTTF.d @@ -0,0 +1,110 @@ +label_nodes/CCLabelTTF.d label_nodes/CCLabelTTF.o: \ + ../label_nodes/CCLabelTTF.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidRelease/label_nodes/subdir.mk b/cocos2dx/AndroidRelease/label_nodes/subdir.mk new file mode 100644 index 0000000000..997b7f987a --- /dev/null +++ b/cocos2dx/AndroidRelease/label_nodes/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../label_nodes/CCLabelAtlas.cpp \ +../label_nodes/CCLabelBMFont.cpp \ +../label_nodes/CCLabelTTF.cpp + +OBJS += \ +./label_nodes/CCLabelAtlas.o \ +./label_nodes/CCLabelBMFont.o \ +./label_nodes/CCLabelTTF.o + +CPP_DEPS += \ +./label_nodes/CCLabelAtlas.d \ +./label_nodes/CCLabelBMFont.d \ +./label_nodes/CCLabelTTF.d + + +# Each subdirectory must supply rules for building sources it contributes +label_nodes/%.o: ../label_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCLayer.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCLayer.d new file mode 100644 index 0000000000..be079c7c80 --- /dev/null +++ b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCLayer.d @@ -0,0 +1,144 @@ +layers_scenes_transitions_nodes/CCLayer.d \ + layers_scenes_transitions_nodes/CCLayer.o: \ + ../layers_scenes_transitions_nodes/CCLayer.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCScene.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCScene.d new file mode 100644 index 0000000000..a46f1d3abd --- /dev/null +++ b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCScene.d @@ -0,0 +1,102 @@ +layers_scenes_transitions_nodes/CCScene.d \ + layers_scenes_transitions_nodes/CCScene.o: \ + ../layers_scenes_transitions_nodes/CCScene.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.d new file mode 100644 index 0000000000..e898c55a68 --- /dev/null +++ b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.d @@ -0,0 +1,192 @@ +layers_scenes_transitions_nodes/CCTransition.d \ + layers_scenes_transitions_nodes/CCTransition.o: \ + ../layers_scenes_transitions_nodes/CCTransition.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id new file mode 100644 index 0000000000..34ef0d2255 --- /dev/null +++ b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id @@ -0,0 +1 @@ +d8b27f9251da56e0e772725222d00af0e051e12a \ No newline at end of file diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionPageTurn.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionPageTurn.d new file mode 100644 index 0000000000..091e1d1032 --- /dev/null +++ b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionPageTurn.d @@ -0,0 +1,147 @@ +layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ + layers_scenes_transitions_nodes/CCTransitionPageTurn.o: \ + ../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionRadial.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionRadial.d new file mode 100644 index 0000000000..dfc6351390 --- /dev/null +++ b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionRadial.d @@ -0,0 +1,153 @@ +layers_scenes_transitions_nodes/CCTransitionRadial.d \ + layers_scenes_transitions_nodes/CCTransitionRadial.o: \ + ../layers_scenes_transitions_nodes/CCTransitionRadial.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/subdir.mk b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/subdir.mk new file mode 100644 index 0000000000..f664b9769c --- /dev/null +++ b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/subdir.mk @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../layers_scenes_transitions_nodes/CCLayer.cpp \ +../layers_scenes_transitions_nodes/CCScene.cpp \ +../layers_scenes_transitions_nodes/CCTransition.cpp \ +../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ +../layers_scenes_transitions_nodes/CCTransitionRadial.cpp + +OBJS += \ +./layers_scenes_transitions_nodes/CCLayer.o \ +./layers_scenes_transitions_nodes/CCScene.o \ +./layers_scenes_transitions_nodes/CCTransition.o \ +./layers_scenes_transitions_nodes/CCTransitionPageTurn.o \ +./layers_scenes_transitions_nodes/CCTransitionRadial.o + +CPP_DEPS += \ +./layers_scenes_transitions_nodes/CCLayer.d \ +./layers_scenes_transitions_nodes/CCScene.d \ +./layers_scenes_transitions_nodes/CCTransition.d \ +./layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ +./layers_scenes_transitions_nodes/CCTransitionRadial.d + + +# Each subdirectory must supply rules for building sources it contributes +layers_scenes_transitions_nodes/%.o: ../layers_scenes_transitions_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/libcocos2dx-base.REMOVED.git-id b/cocos2dx/AndroidRelease/libcocos2dx-base.REMOVED.git-id new file mode 100644 index 0000000000..08d2dfaf43 --- /dev/null +++ b/cocos2dx/AndroidRelease/libcocos2dx-base.REMOVED.git-id @@ -0,0 +1 @@ +fce974f66e5fa717d51a772d72c953a041e3f1d4 \ No newline at end of file diff --git a/cocos2dx/AndroidRelease/libcocos2dx-base.so.REMOVED.git-id b/cocos2dx/AndroidRelease/libcocos2dx-base.so.REMOVED.git-id new file mode 100644 index 0000000000..60f77fb7b4 --- /dev/null +++ b/cocos2dx/AndroidRelease/libcocos2dx-base.so.REMOVED.git-id @@ -0,0 +1 @@ +36e0c7801ed8caccf471734133a5fa91531e9a6f \ No newline at end of file diff --git a/cocos2dx/AndroidRelease/makefile b/cocos2dx/AndroidRelease/makefile new file mode 100644 index 0000000000..0953befbda --- /dev/null +++ b/cocos2dx/AndroidRelease/makefile @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include touch_dispatcher/subdir.mk +-include tileMap_parallax_nodes/subdir.mk +-include textures/subdir.mk +-include text_input_node/subdir.mk +-include support/zip_support/subdir.mk +-include support/image_support/subdir.mk +-include support/subdir.mk +-include sprite_nodes/subdir.mk +-include script_support/subdir.mk +-include platform/subdir.mk +-include platform/android/jni/subdir.mk +-include platform/android/subdir.mk +-include particle_nodes/subdir.mk +-include misc_nodes/subdir.mk +-include menu_nodes/subdir.mk +-include layers_scenes_transitions_nodes/subdir.mk +-include label_nodes/subdir.mk +-include keypad_dispatcher/subdir.mk +-include effects/subdir.mk +-include cocoa/subdir.mk +-include base_nodes/subdir.mk +-include actions/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: libcocos2dx-base.so + +# Tool invocations +libcocos2dx-base.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + arm-linux-androideabi-g++ -shared -o "libcocos2dx-base.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libcocos2dx-base.so + -@echo ' ' + +post-build: + -@echo 'move all libs into the specific folder' + -sh ../../post.sh cocos2dx-base cocos2d + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/cocos2dx/AndroidRelease/menu_nodes/CCMenu.d b/cocos2dx/AndroidRelease/menu_nodes/CCMenu.d new file mode 100644 index 0000000000..90f7bbcf6f --- /dev/null +++ b/cocos2dx/AndroidRelease/menu_nodes/CCMenu.d @@ -0,0 +1,145 @@ +menu_nodes/CCMenu.d menu_nodes/CCMenu.o: ../menu_nodes/CCMenu.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: diff --git a/cocos2dx/AndroidRelease/menu_nodes/CCMenuItem.d b/cocos2dx/AndroidRelease/menu_nodes/CCMenuItem.d new file mode 100644 index 0000000000..8e9cc6edda --- /dev/null +++ b/cocos2dx/AndroidRelease/menu_nodes/CCMenuItem.d @@ -0,0 +1,149 @@ +menu_nodes/CCMenuItem.d menu_nodes/CCMenuItem.o: \ + ../menu_nodes/CCMenuItem.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: diff --git a/cocos2dx/AndroidRelease/menu_nodes/subdir.mk b/cocos2dx/AndroidRelease/menu_nodes/subdir.mk new file mode 100644 index 0000000000..db09576447 --- /dev/null +++ b/cocos2dx/AndroidRelease/menu_nodes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../menu_nodes/CCMenu.cpp \ +../menu_nodes/CCMenuItem.cpp + +OBJS += \ +./menu_nodes/CCMenu.o \ +./menu_nodes/CCMenuItem.o + +CPP_DEPS += \ +./menu_nodes/CCMenu.d \ +./menu_nodes/CCMenuItem.d + + +# Each subdirectory must supply rules for building sources it contributes +menu_nodes/%.o: ../menu_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/misc_nodes/CCMotionStreak.d b/cocos2dx/AndroidRelease/misc_nodes/CCMotionStreak.d new file mode 100644 index 0000000000..0602c1560d --- /dev/null +++ b/cocos2dx/AndroidRelease/misc_nodes/CCMotionStreak.d @@ -0,0 +1,107 @@ +misc_nodes/CCMotionStreak.d misc_nodes/CCMotionStreak.o: \ + ../misc_nodes/CCMotionStreak.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h: diff --git a/cocos2dx/AndroidRelease/misc_nodes/CCProgressTimer.d b/cocos2dx/AndroidRelease/misc_nodes/CCProgressTimer.d new file mode 100644 index 0000000000..1e541547cc --- /dev/null +++ b/cocos2dx/AndroidRelease/misc_nodes/CCProgressTimer.d @@ -0,0 +1,119 @@ +misc_nodes/CCProgressTimer.d misc_nodes/CCProgressTimer.o: \ + ../misc_nodes/CCProgressTimer.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/misc_nodes/CCRenderTexture.d b/cocos2dx/AndroidRelease/misc_nodes/CCRenderTexture.d new file mode 100644 index 0000000000..39b69ff436 --- /dev/null +++ b/cocos2dx/AndroidRelease/misc_nodes/CCRenderTexture.d @@ -0,0 +1,143 @@ +misc_nodes/CCRenderTexture.d misc_nodes/CCRenderTexture.o: \ + ../misc_nodes/CCRenderTexture.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d b/cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d new file mode 100644 index 0000000000..5b303e77d8 --- /dev/null +++ b/cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d @@ -0,0 +1,112 @@ +misc_nodes/CCRibbon.d misc_nodes/CCRibbon.o: ../misc_nodes/CCRibbon.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/misc_nodes/subdir.mk b/cocos2dx/AndroidRelease/misc_nodes/subdir.mk new file mode 100644 index 0000000000..37e51b88b6 --- /dev/null +++ b/cocos2dx/AndroidRelease/misc_nodes/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../misc_nodes/CCMotionStreak.cpp \ +../misc_nodes/CCProgressTimer.cpp \ +../misc_nodes/CCRenderTexture.cpp \ +../misc_nodes/CCRibbon.cpp + +OBJS += \ +./misc_nodes/CCMotionStreak.o \ +./misc_nodes/CCProgressTimer.o \ +./misc_nodes/CCRenderTexture.o \ +./misc_nodes/CCRibbon.o + +CPP_DEPS += \ +./misc_nodes/CCMotionStreak.d \ +./misc_nodes/CCProgressTimer.d \ +./misc_nodes/CCRenderTexture.d \ +./misc_nodes/CCRibbon.d + + +# Each subdirectory must supply rules for building sources it contributes +misc_nodes/%.o: ../misc_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/objects.mk b/cocos2dx/AndroidRelease/objects.mk new file mode 100644 index 0000000000..2333372ec2 --- /dev/null +++ b/cocos2dx/AndroidRelease/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := ../platform/third_party/android/libraries/libcurl.a ../platform/third_party/android/libraries/libpng.a ../platform/third_party/android/libraries/libxml2.a ..//platform/third_party/android/libraries/libjpeg.a + +LIBS := -lGLESv1_CM -llog -lz + diff --git a/cocos2dx/AndroidRelease/particle_nodes/CCParticleExamples.d b/cocos2dx/AndroidRelease/particle_nodes/CCParticleExamples.d new file mode 100644 index 0000000000..93030ec692 --- /dev/null +++ b/cocos2dx/AndroidRelease/particle_nodes/CCParticleExamples.d @@ -0,0 +1,128 @@ +particle_nodes/CCParticleExamples.d particle_nodes/CCParticleExamples.o: \ + ../particle_nodes/CCParticleExamples.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystem.d b/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystem.d new file mode 100644 index 0000000000..88561d2578 --- /dev/null +++ b/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystem.d @@ -0,0 +1,137 @@ +particle_nodes/CCParticleSystem.d particle_nodes/CCParticleSystem.o: \ + ../particle_nodes/CCParticleSystem.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: diff --git a/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystemQuad.d b/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystemQuad.d new file mode 100644 index 0000000000..ea503b316f --- /dev/null +++ b/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystemQuad.d @@ -0,0 +1,114 @@ +particle_nodes/CCParticleSystemQuad.d \ + particle_nodes/CCParticleSystemQuad.o: \ + ../particle_nodes/CCParticleSystemQuad.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: diff --git a/cocos2dx/AndroidRelease/particle_nodes/subdir.mk b/cocos2dx/AndroidRelease/particle_nodes/subdir.mk new file mode 100644 index 0000000000..93e80fe19e --- /dev/null +++ b/cocos2dx/AndroidRelease/particle_nodes/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../particle_nodes/CCParticleExamples.cpp \ +../particle_nodes/CCParticleSystem.cpp \ +../particle_nodes/CCParticleSystemQuad.cpp + +OBJS += \ +./particle_nodes/CCParticleExamples.o \ +./particle_nodes/CCParticleSystem.o \ +./particle_nodes/CCParticleSystemQuad.o + +CPP_DEPS += \ +./particle_nodes/CCParticleExamples.d \ +./particle_nodes/CCParticleSystem.d \ +./particle_nodes/CCParticleSystemQuad.d + + +# Each subdirectory must supply rules for building sources it contributes +particle_nodes/%.o: ../particle_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/platform/CCCommon.d b/cocos2dx/AndroidRelease/platform/CCCommon.d new file mode 100644 index 0000000000..5a35d2e759 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/CCCommon.d @@ -0,0 +1,17 @@ +platform/CCCommon.d platform/CCCommon.o: ../platform/CCCommon.cpp \ + ../platform/CCCommon.h ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h ../platform/android/jni/MessageJni.h + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: + +../platform/android/jni/MessageJni.h: diff --git a/cocos2dx/AndroidRelease/platform/CCFileUtils.d b/cocos2dx/AndroidRelease/platform/CCFileUtils.d new file mode 100644 index 0000000000..bb0d34ec90 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/CCFileUtils.d @@ -0,0 +1,164 @@ +platform/CCFileUtils.d platform/CCFileUtils.o: \ + ../platform/CCFileUtils.cpp ../platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h \ + ../platform/CCLibxml2.h ../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + ../platform/CCSAXParser.h ../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/unzip.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ioapi.h \ + ../platform/android/CCFileUtils_android.cpp \ + ../platform/android/jni/SystemInfoJni.h + +../platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: + +../platform/CCLibxml2.h: + +../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +../platform/CCSAXParser.h: + +../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/unzip.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ioapi.h: + +../platform/android/CCFileUtils_android.cpp: + +../platform/android/jni/SystemInfoJni.h: diff --git a/cocos2dx/AndroidRelease/platform/CCGL.d b/cocos2dx/AndroidRelease/platform/CCGL.d new file mode 100644 index 0000000000..1a491eaac6 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/CCGL.d @@ -0,0 +1,41 @@ +platform/CCGL.d platform/CCGL.o: ../platform/CCGL.cpp ../platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCCommon.h ../platform/CCStdC.h \ + ../platform/CCPlatformMacros.h + +../platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCCommon.h: + +../platform/CCStdC.h: + +../platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/platform/CCImage.d b/cocos2dx/AndroidRelease/platform/CCImage.d new file mode 100644 index 0000000000..948811a40e --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/CCImage.d @@ -0,0 +1,113 @@ +platform/CCImage.d platform/CCImage.o: ../platform/CCImage.cpp \ + ../platform/CCImage.h ../platform/CCCommon.h \ + ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h ../platform/CCStdC.h \ + ../platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/png.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/pngconf.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jpeglib.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig_linux.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jmorecfg.h \ + ../platform/android/CCImage_android.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + ../platform/android/jni/JniHelper.h + +../platform/CCImage.h: + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: + +../platform/CCStdC.h: + +../platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/png.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/pngconf.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jpeglib.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig_linux.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jmorecfg.h: + +../platform/android/CCImage_android.cpp: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +../platform/android/jni/JniHelper.h: diff --git a/cocos2dx/AndroidRelease/platform/CCSAXParser.d b/cocos2dx/AndroidRelease/platform/CCSAXParser.d new file mode 100644 index 0000000000..c6bbc8a6b6 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/CCSAXParser.d @@ -0,0 +1,149 @@ +platform/CCSAXParser.d platform/CCSAXParser.o: \ + ../platform/CCSAXParser.cpp ../platform/CCSAXParser.h \ + ../platform/CCPlatformConfig.h ../platform/CCCommon.h \ + ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h \ + ../platform/CCLibxml2.h ../platform/CCFileUtils.h + +../platform/CCSAXParser.h: + +../platform/CCPlatformConfig.h: + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: + +../platform/CCLibxml2.h: + +../platform/CCFileUtils.h: diff --git a/cocos2dx/AndroidRelease/platform/CCStdC.d b/cocos2dx/AndroidRelease/platform/CCStdC.d new file mode 100644 index 0000000000..1928d3f0fc --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/CCStdC.d @@ -0,0 +1,15 @@ +platform/CCStdC.d platform/CCStdC.o: ../platform/CCStdC.cpp \ + ../platform/CCStdC.h ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h + +../platform/CCStdC.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/platform/CCThread.d b/cocos2dx/AndroidRelease/platform/CCThread.d new file mode 100644 index 0000000000..c365ae5562 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/CCThread.d @@ -0,0 +1,18 @@ +platform/CCThread.d platform/CCThread.o: ../platform/CCThread.cpp \ + ../platform/CCThread.h ../platform/CCCommon.h \ + ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h + +../platform/CCThread.h: + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/platform/android/CCAccelerometer_android.d b/cocos2dx/AndroidRelease/platform/android/CCAccelerometer_android.d new file mode 100644 index 0000000000..012c8c72bf --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/CCAccelerometer_android.d @@ -0,0 +1,27 @@ +platform/android/CCAccelerometer_android.d \ + platform/android/CCAccelerometer_android.o: \ + ../platform/android/CCAccelerometer_android.cpp \ + ../platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + ../platform/android/jni/SensorJni.h + +../platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +../platform/android/jni/SensorJni.h: diff --git a/cocos2dx/AndroidRelease/platform/android/CCApplication_android.d b/cocos2dx/AndroidRelease/platform/android/CCApplication_android.d new file mode 100644 index 0000000000..6ba6c30683 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/CCApplication_android.d @@ -0,0 +1,81 @@ +platform/android/CCApplication_android.d \ + platform/android/CCApplication_android.o: \ + ../platform/android/CCApplication_android.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/jni/SystemInfoJni.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/jni/SystemInfoJni.h: diff --git a/cocos2dx/AndroidRelease/platform/android/CCEGLView_android.d b/cocos2dx/AndroidRelease/platform/android/CCEGLView_android.d new file mode 100644 index 0000000000..60dd838d0e --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/CCEGLView_android.d @@ -0,0 +1,121 @@ +platform/android/CCEGLView_android.d platform/android/CCEGLView_android.o: \ + ../platform/android/CCEGLView_android.cpp \ + ../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + ../platform/android/jni/IMEJni.h ../platform/android/jni/MessageJni.h + +../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +../platform/android/jni/IMEJni.h: + +../platform/android/jni/MessageJni.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/IMEJni.d b/cocos2dx/AndroidRelease/platform/android/jni/IMEJni.d new file mode 100644 index 0000000000..43c7360dab --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/jni/IMEJni.d @@ -0,0 +1,34 @@ +platform/android/jni/IMEJni.d platform/android/jni/IMEJni.o: \ + ../platform/android/jni/IMEJni.cpp ../platform/android/jni/IMEJni.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h + +../platform/android/jni/IMEJni.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/JniHelper.d b/cocos2dx/AndroidRelease/platform/android/jni/JniHelper.d new file mode 100644 index 0000000000..15082c04e4 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/jni/JniHelper.d @@ -0,0 +1,17 @@ +platform/android/jni/JniHelper.d platform/android/jni/JniHelper.o: \ + ../platform/android/jni/JniHelper.cpp \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/MessageJni.d b/cocos2dx/AndroidRelease/platform/android/jni/MessageJni.d new file mode 100644 index 0000000000..8d10d23a7c --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/jni/MessageJni.d @@ -0,0 +1,98 @@ +platform/android/jni/MessageJni.d platform/android/jni/MessageJni.o: \ + ../platform/android/jni/MessageJni.cpp \ + ../platform/android/jni/MessageJni.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h + +../platform/android/jni/MessageJni.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/SensorJni.d b/cocos2dx/AndroidRelease/platform/android/jni/SensorJni.d new file mode 100644 index 0000000000..e31a2cf6e9 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/jni/SensorJni.d @@ -0,0 +1,56 @@ +platform/android/jni/SensorJni.d platform/android/jni/SensorJni.o: \ + ../platform/android/jni/SensorJni.cpp \ + ../platform/android/jni/SensorJni.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h + +../platform/android/jni/SensorJni.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/SystemInfoJni.d b/cocos2dx/AndroidRelease/platform/android/jni/SystemInfoJni.d new file mode 100644 index 0000000000..536a60218e --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/jni/SystemInfoJni.d @@ -0,0 +1,32 @@ +platform/android/jni/SystemInfoJni.d platform/android/jni/SystemInfoJni.o: \ + ../platform/android/jni/SystemInfoJni.cpp \ + ../platform/android/jni/SystemInfoJni.h \ + ../platform/android/jni/JniHelper.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h + +../platform/android/jni/SystemInfoJni.h: + +../platform/android/jni/JniHelper.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/TouchesJni.d b/cocos2dx/AndroidRelease/platform/android/jni/TouchesJni.d new file mode 100644 index 0000000000..ce5014132d --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/jni/TouchesJni.d @@ -0,0 +1,122 @@ +platform/android/jni/TouchesJni.d platform/android/jni/TouchesJni.o: \ + ../platform/android/jni/TouchesJni.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/subdir.mk b/cocos2dx/AndroidRelease/platform/android/jni/subdir.mk new file mode 100644 index 0000000000..75276350d6 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/jni/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/android/jni/IMEJni.cpp \ +../platform/android/jni/JniHelper.cpp \ +../platform/android/jni/MessageJni.cpp \ +../platform/android/jni/SensorJni.cpp \ +../platform/android/jni/SystemInfoJni.cpp \ +../platform/android/jni/TouchesJni.cpp + +OBJS += \ +./platform/android/jni/IMEJni.o \ +./platform/android/jni/JniHelper.o \ +./platform/android/jni/MessageJni.o \ +./platform/android/jni/SensorJni.o \ +./platform/android/jni/SystemInfoJni.o \ +./platform/android/jni/TouchesJni.o + +CPP_DEPS += \ +./platform/android/jni/IMEJni.d \ +./platform/android/jni/JniHelper.d \ +./platform/android/jni/MessageJni.d \ +./platform/android/jni/SensorJni.d \ +./platform/android/jni/SystemInfoJni.d \ +./platform/android/jni/TouchesJni.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/android/jni/%.o: ../platform/android/jni/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/platform/android/subdir.mk b/cocos2dx/AndroidRelease/platform/android/subdir.mk new file mode 100644 index 0000000000..62dd5a9853 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/android/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/android/CCAccelerometer_android.cpp \ +../platform/android/CCApplication_android.cpp \ +../platform/android/CCEGLView_android.cpp + +OBJS += \ +./platform/android/CCAccelerometer_android.o \ +./platform/android/CCApplication_android.o \ +./platform/android/CCEGLView_android.o + +CPP_DEPS += \ +./platform/android/CCAccelerometer_android.d \ +./platform/android/CCApplication_android.d \ +./platform/android/CCEGLView_android.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/android/%.o: ../platform/android/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/platform/platform.d b/cocos2dx/AndroidRelease/platform/platform.d new file mode 100644 index 0000000000..bd8466f541 --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/platform.d @@ -0,0 +1,22 @@ +platform/platform.d platform/platform.o: ../platform/platform.cpp \ + ../platform/platform.h ../platform/CCThread.h ../platform/CCCommon.h \ + ../platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + ../platform/CCPlatformConfig.h ../platform/CCStdC.h + +../platform/platform.h: + +../platform/CCThread.h: + +../platform/CCCommon.h: + +../platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +../platform/CCPlatformConfig.h: + +../platform/CCStdC.h: diff --git a/cocos2dx/AndroidRelease/platform/subdir.mk b/cocos2dx/AndroidRelease/platform/subdir.mk new file mode 100644 index 0000000000..80fe156b3a --- /dev/null +++ b/cocos2dx/AndroidRelease/platform/subdir.mk @@ -0,0 +1,45 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/CCCommon.cpp \ +../platform/CCFileUtils.cpp \ +../platform/CCGL.cpp \ +../platform/CCImage.cpp \ +../platform/CCSAXParser.cpp \ +../platform/CCStdC.cpp \ +../platform/CCThread.cpp \ +../platform/platform.cpp + +OBJS += \ +./platform/CCCommon.o \ +./platform/CCFileUtils.o \ +./platform/CCGL.o \ +./platform/CCImage.o \ +./platform/CCSAXParser.o \ +./platform/CCStdC.o \ +./platform/CCThread.o \ +./platform/platform.o + +CPP_DEPS += \ +./platform/CCCommon.d \ +./platform/CCFileUtils.d \ +./platform/CCGL.d \ +./platform/CCImage.d \ +./platform/CCSAXParser.d \ +./platform/CCStdC.d \ +./platform/CCThread.d \ +./platform/platform.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/%.o: ../platform/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/script_support/CCScriptSupport.d b/cocos2dx/AndroidRelease/script_support/CCScriptSupport.d new file mode 100644 index 0000000000..d8cbd34f37 --- /dev/null +++ b/cocos2dx/AndroidRelease/script_support/CCScriptSupport.d @@ -0,0 +1,101 @@ +script_support/CCScriptSupport.d script_support/CCScriptSupport.o: \ + ../script_support/CCScriptSupport.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: diff --git a/cocos2dx/AndroidRelease/script_support/subdir.mk b/cocos2dx/AndroidRelease/script_support/subdir.mk new file mode 100644 index 0000000000..e4586171ef --- /dev/null +++ b/cocos2dx/AndroidRelease/script_support/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../script_support/CCScriptSupport.cpp + +OBJS += \ +./script_support/CCScriptSupport.o + +CPP_DEPS += \ +./script_support/CCScriptSupport.d + + +# Each subdirectory must supply rules for building sources it contributes +script_support/%.o: ../script_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/sources.mk b/cocos2dx/AndroidRelease/sources.mk new file mode 100644 index 0000000000..c2f95fd8fc --- /dev/null +++ b/cocos2dx/AndroidRelease/sources.mk @@ -0,0 +1,49 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +touch_dispatcher \ +tileMap_parallax_nodes \ +textures \ +text_input_node \ +support/zip_support \ +support/image_support \ +support \ +sprite_nodes \ +script_support \ +platform \ +platform/android/jni \ +platform/android \ +particle_nodes \ +misc_nodes \ +menu_nodes \ +layers_scenes_transitions_nodes \ +label_nodes \ +keypad_dispatcher \ +effects \ +. \ +cocoa \ +base_nodes \ +actions \ + diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCAnimation.d b/cocos2dx/AndroidRelease/sprite_nodes/CCAnimation.d new file mode 100644 index 0000000000..09e0d8816f --- /dev/null +++ b/cocos2dx/AndroidRelease/sprite_nodes/CCAnimation.d @@ -0,0 +1,116 @@ +sprite_nodes/CCAnimation.d sprite_nodes/CCAnimation.o: \ + ../sprite_nodes/CCAnimation.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCAnimationCache.d b/cocos2dx/AndroidRelease/sprite_nodes/CCAnimationCache.d new file mode 100644 index 0000000000..a54dc2df26 --- /dev/null +++ b/cocos2dx/AndroidRelease/sprite_nodes/CCAnimationCache.d @@ -0,0 +1,110 @@ +sprite_nodes/CCAnimationCache.d sprite_nodes/CCAnimationCache.o: \ + ../sprite_nodes/CCAnimationCache.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCSprite.d b/cocos2dx/AndroidRelease/sprite_nodes/CCSprite.d new file mode 100644 index 0000000000..c71f77af3d --- /dev/null +++ b/cocos2dx/AndroidRelease/sprite_nodes/CCSprite.d @@ -0,0 +1,143 @@ +sprite_nodes/CCSprite.d sprite_nodes/CCSprite.o: \ + ../sprite_nodes/CCSprite.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteBatchNode.d b/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteBatchNode.d new file mode 100644 index 0000000000..47734d1e3d --- /dev/null +++ b/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteBatchNode.d @@ -0,0 +1,137 @@ +sprite_nodes/CCSpriteBatchNode.d sprite_nodes/CCSpriteBatchNode.o: \ + ../sprite_nodes/CCSpriteBatchNode.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrame.d b/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrame.d new file mode 100644 index 0000000000..d5dbb45369 --- /dev/null +++ b/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrame.d @@ -0,0 +1,101 @@ +sprite_nodes/CCSpriteFrame.d sprite_nodes/CCSpriteFrame.o: \ + ../sprite_nodes/CCSpriteFrame.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrameCache.d b/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrameCache.d new file mode 100644 index 0000000000..e33d26165b --- /dev/null +++ b/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrameCache.d @@ -0,0 +1,140 @@ +sprite_nodes/CCSpriteFrameCache.d sprite_nodes/CCSpriteFrameCache.o: \ + ../sprite_nodes/CCSpriteFrameCache.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/cocoa/CCNS.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/cocoa/CCNS.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/subdir.mk b/cocos2dx/AndroidRelease/sprite_nodes/subdir.mk new file mode 100644 index 0000000000..7726cae97f --- /dev/null +++ b/cocos2dx/AndroidRelease/sprite_nodes/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../sprite_nodes/CCAnimation.cpp \ +../sprite_nodes/CCAnimationCache.cpp \ +../sprite_nodes/CCSprite.cpp \ +../sprite_nodes/CCSpriteBatchNode.cpp \ +../sprite_nodes/CCSpriteFrame.cpp \ +../sprite_nodes/CCSpriteFrameCache.cpp + +OBJS += \ +./sprite_nodes/CCAnimation.o \ +./sprite_nodes/CCAnimationCache.o \ +./sprite_nodes/CCSprite.o \ +./sprite_nodes/CCSpriteBatchNode.o \ +./sprite_nodes/CCSpriteFrame.o \ +./sprite_nodes/CCSpriteFrameCache.o + +CPP_DEPS += \ +./sprite_nodes/CCAnimation.d \ +./sprite_nodes/CCAnimationCache.d \ +./sprite_nodes/CCSprite.d \ +./sprite_nodes/CCSpriteBatchNode.d \ +./sprite_nodes/CCSpriteFrame.d \ +./sprite_nodes/CCSpriteFrameCache.d + + +# Each subdirectory must supply rules for building sources it contributes +sprite_nodes/%.o: ../sprite_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/subdir.mk b/cocos2dx/AndroidRelease/subdir.mk new file mode 100644 index 0000000000..849211a106 --- /dev/null +++ b/cocos2dx/AndroidRelease/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../CCCamera.cpp \ +../CCConfiguration.cpp \ +../CCDirector.cpp \ +../CCDrawingPrimitives.cpp \ +../CCScheduler.cpp \ +../cocos2d.cpp + +OBJS += \ +./CCCamera.o \ +./CCConfiguration.o \ +./CCDirector.o \ +./CCDrawingPrimitives.o \ +./CCScheduler.o \ +./cocos2d.o + +CPP_DEPS += \ +./CCCamera.d \ +./CCConfiguration.d \ +./CCDirector.d \ +./CCDrawingPrimitives.d \ +./CCScheduler.d \ +./cocos2d.d + + +# Each subdirectory must supply rules for building sources it contributes +%.o: ../%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/support/CCArray.d b/cocos2dx/AndroidRelease/support/CCArray.d new file mode 100644 index 0000000000..fe80a9267c --- /dev/null +++ b/cocos2dx/AndroidRelease/support/CCArray.d @@ -0,0 +1,79 @@ +support/CCArray.d support/CCArray.o: ../support/CCArray.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/support/CCPointExtension.d b/cocos2dx/AndroidRelease/support/CCPointExtension.d new file mode 100644 index 0000000000..bfc1aa7914 --- /dev/null +++ b/cocos2dx/AndroidRelease/support/CCPointExtension.d @@ -0,0 +1,74 @@ +support/CCPointExtension.d support/CCPointExtension.o: \ + ../support/CCPointExtension.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/support/CCProfiling.d b/cocos2dx/AndroidRelease/support/CCProfiling.d new file mode 100644 index 0000000000..1847592f61 --- /dev/null +++ b/cocos2dx/AndroidRelease/support/CCProfiling.d @@ -0,0 +1,10 @@ +support/CCProfiling.d support/CCProfiling.o: ../support/CCProfiling.cpp \ + ../support/CCProfiling.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../support/CCProfiling.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/support/CCUserDefault.d b/cocos2dx/AndroidRelease/support/CCUserDefault.d new file mode 100644 index 0000000000..c6b7643068 --- /dev/null +++ b/cocos2dx/AndroidRelease/support/CCUserDefault.d @@ -0,0 +1,146 @@ +support/CCUserDefault.d support/CCUserDefault.o: \ + ../support/CCUserDefault.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: diff --git a/cocos2dx/AndroidRelease/support/TransformUtils.d b/cocos2dx/AndroidRelease/support/TransformUtils.d new file mode 100644 index 0000000000..3331f5d5ed --- /dev/null +++ b/cocos2dx/AndroidRelease/support/TransformUtils.d @@ -0,0 +1,49 @@ +support/TransformUtils.d support/TransformUtils.o: \ + ../support/TransformUtils.cpp ../support/TransformUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h + +../support/TransformUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: diff --git a/cocos2dx/AndroidRelease/support/base64.d b/cocos2dx/AndroidRelease/support/base64.d new file mode 100644 index 0000000000..e8d0a13c78 --- /dev/null +++ b/cocos2dx/AndroidRelease/support/base64.d @@ -0,0 +1,4 @@ +support/base64.d support/base64.o: ../support/base64.cpp \ + ../support/base64.h + +../support/base64.h: diff --git a/cocos2dx/AndroidRelease/support/ccUtils.d b/cocos2dx/AndroidRelease/support/ccUtils.d new file mode 100644 index 0000000000..ff1c424af7 --- /dev/null +++ b/cocos2dx/AndroidRelease/support/ccUtils.d @@ -0,0 +1,4 @@ +support/ccUtils.d support/ccUtils.o: ../support/ccUtils.cpp \ + ../support/ccUtils.h + +../support/ccUtils.h: diff --git a/cocos2dx/AndroidRelease/support/image_support/TGAlib.d b/cocos2dx/AndroidRelease/support/image_support/TGAlib.d new file mode 100644 index 0000000000..8fb930a570 --- /dev/null +++ b/cocos2dx/AndroidRelease/support/image_support/TGAlib.d @@ -0,0 +1,79 @@ +support/image_support/TGAlib.d support/image_support/TGAlib.o: \ + ../support/image_support/TGAlib.cpp ../support/image_support/TGAlib.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h + +../support/image_support/TGAlib.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/support/image_support/subdir.mk b/cocos2dx/AndroidRelease/support/image_support/subdir.mk new file mode 100644 index 0000000000..731264c3a3 --- /dev/null +++ b/cocos2dx/AndroidRelease/support/image_support/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/image_support/TGAlib.cpp + +OBJS += \ +./support/image_support/TGAlib.o + +CPP_DEPS += \ +./support/image_support/TGAlib.d + + +# Each subdirectory must supply rules for building sources it contributes +support/image_support/%.o: ../support/image_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/support/subdir.mk b/cocos2dx/AndroidRelease/support/subdir.mk new file mode 100644 index 0000000000..a5bfdfd25e --- /dev/null +++ b/cocos2dx/AndroidRelease/support/subdir.mk @@ -0,0 +1,42 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/CCArray.cpp \ +../support/CCPointExtension.cpp \ +../support/CCProfiling.cpp \ +../support/CCUserDefault.cpp \ +../support/TransformUtils.cpp \ +../support/base64.cpp \ +../support/ccUtils.cpp + +OBJS += \ +./support/CCArray.o \ +./support/CCPointExtension.o \ +./support/CCProfiling.o \ +./support/CCUserDefault.o \ +./support/TransformUtils.o \ +./support/base64.o \ +./support/ccUtils.o + +CPP_DEPS += \ +./support/CCArray.d \ +./support/CCPointExtension.d \ +./support/CCProfiling.d \ +./support/CCUserDefault.d \ +./support/TransformUtils.d \ +./support/base64.d \ +./support/ccUtils.d + + +# Each subdirectory must supply rules for building sources it contributes +support/%.o: ../support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/support/zip_support/ZipUtils.d b/cocos2dx/AndroidRelease/support/zip_support/ZipUtils.d new file mode 100644 index 0000000000..0ca3161f19 --- /dev/null +++ b/cocos2dx/AndroidRelease/support/zip_support/ZipUtils.d @@ -0,0 +1,82 @@ +support/zip_support/ZipUtils.d support/zip_support/ZipUtils.o: \ + ../support/zip_support/ZipUtils.cpp ../support/zip_support/ZipUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h + +../support/zip_support/ZipUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: diff --git a/cocos2dx/AndroidRelease/support/zip_support/ioapi.d b/cocos2dx/AndroidRelease/support/zip_support/ioapi.d new file mode 100644 index 0000000000..865d39ce8d --- /dev/null +++ b/cocos2dx/AndroidRelease/support/zip_support/ioapi.d @@ -0,0 +1,7 @@ +support/zip_support/ioapi.d support/zip_support/ioapi.o: \ + ../support/zip_support/ioapi.cpp ../support/zip_support/ioapi.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../support/zip_support/ioapi.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/support/zip_support/subdir.mk b/cocos2dx/AndroidRelease/support/zip_support/subdir.mk new file mode 100644 index 0000000000..b9107ba147 --- /dev/null +++ b/cocos2dx/AndroidRelease/support/zip_support/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/zip_support/ZipUtils.cpp \ +../support/zip_support/ioapi.cpp \ +../support/zip_support/unzip.cpp + +OBJS += \ +./support/zip_support/ZipUtils.o \ +./support/zip_support/ioapi.o \ +./support/zip_support/unzip.o + +CPP_DEPS += \ +./support/zip_support/ZipUtils.d \ +./support/zip_support/ioapi.d \ +./support/zip_support/unzip.d + + +# Each subdirectory must supply rules for building sources it contributes +support/zip_support/%.o: ../support/zip_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/support/zip_support/unzip.d b/cocos2dx/AndroidRelease/support/zip_support/unzip.d new file mode 100644 index 0000000000..055c8ef71b --- /dev/null +++ b/cocos2dx/AndroidRelease/support/zip_support/unzip.d @@ -0,0 +1,10 @@ +support/zip_support/unzip.d support/zip_support/unzip.o: \ + ../support/zip_support/unzip.cpp ../support/zip_support/unzip.h \ + ../support/zip_support/ioapi.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +../support/zip_support/unzip.h: + +../support/zip_support/ioapi.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/text_input_node/CCIMEDispatcher.d b/cocos2dx/AndroidRelease/text_input_node/CCIMEDispatcher.d new file mode 100644 index 0000000000..04cc4b1c57 --- /dev/null +++ b/cocos2dx/AndroidRelease/text_input_node/CCIMEDispatcher.d @@ -0,0 +1,26 @@ +text_input_node/CCIMEDispatcher.d text_input_node/CCIMEDispatcher.o: \ + ../text_input_node/CCIMEDispatcher.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/text_input_node/CCTextFieldTTF.d b/cocos2dx/AndroidRelease/text_input_node/CCTextFieldTTF.d new file mode 100644 index 0000000000..baddf4e4f2 --- /dev/null +++ b/cocos2dx/AndroidRelease/text_input_node/CCTextFieldTTF.d @@ -0,0 +1,131 @@ +text_input_node/CCTextFieldTTF.d text_input_node/CCTextFieldTTF.o: \ + ../text_input_node/CCTextFieldTTF.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidRelease/text_input_node/subdir.mk b/cocos2dx/AndroidRelease/text_input_node/subdir.mk new file mode 100644 index 0000000000..975fdc5b69 --- /dev/null +++ b/cocos2dx/AndroidRelease/text_input_node/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../text_input_node/CCIMEDispatcher.cpp \ +../text_input_node/CCTextFieldTTF.cpp + +OBJS += \ +./text_input_node/CCIMEDispatcher.o \ +./text_input_node/CCTextFieldTTF.o + +CPP_DEPS += \ +./text_input_node/CCIMEDispatcher.d \ +./text_input_node/CCTextFieldTTF.d + + +# Each subdirectory must supply rules for building sources it contributes +text_input_node/%.o: ../text_input_node/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/textures/CCTexture2D.d b/cocos2dx/AndroidRelease/textures/CCTexture2D.d new file mode 100644 index 0000000000..c5b9616ffa --- /dev/null +++ b/cocos2dx/AndroidRelease/textures/CCTexture2D.d @@ -0,0 +1,110 @@ +textures/CCTexture2D.d textures/CCTexture2D.o: \ + ../textures/CCTexture2D.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/textures/CCTextureAtlas.d b/cocos2dx/AndroidRelease/textures/CCTextureAtlas.d new file mode 100644 index 0000000000..efe1dfe84b --- /dev/null +++ b/cocos2dx/AndroidRelease/textures/CCTextureAtlas.d @@ -0,0 +1,92 @@ +textures/CCTextureAtlas.d textures/CCTextureAtlas.o: \ + ../textures/CCTextureAtlas.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/textures/CCTextureCache.d b/cocos2dx/AndroidRelease/textures/CCTextureCache.d new file mode 100644 index 0000000000..6ffa2a8219 --- /dev/null +++ b/cocos2dx/AndroidRelease/textures/CCTextureCache.d @@ -0,0 +1,110 @@ +textures/CCTextureCache.d textures/CCTextureCache.o: \ + ../textures/CCTextureCache.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: diff --git a/cocos2dx/AndroidRelease/textures/CCTexturePVR.d b/cocos2dx/AndroidRelease/textures/CCTexturePVR.d new file mode 100644 index 0000000000..0417f7990e --- /dev/null +++ b/cocos2dx/AndroidRelease/textures/CCTexturePVR.d @@ -0,0 +1,104 @@ +textures/CCTexturePVR.d textures/CCTexturePVR.o: \ + ../textures/CCTexturePVR.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: diff --git a/cocos2dx/AndroidRelease/textures/subdir.mk b/cocos2dx/AndroidRelease/textures/subdir.mk new file mode 100644 index 0000000000..b65025b817 --- /dev/null +++ b/cocos2dx/AndroidRelease/textures/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../textures/CCTexture2D.cpp \ +../textures/CCTextureAtlas.cpp \ +../textures/CCTextureCache.cpp \ +../textures/CCTexturePVR.cpp + +OBJS += \ +./textures/CCTexture2D.o \ +./textures/CCTextureAtlas.o \ +./textures/CCTextureCache.o \ +./textures/CCTexturePVR.o + +CPP_DEPS += \ +./textures/CCTexture2D.d \ +./textures/CCTextureAtlas.d \ +./textures/CCTextureCache.d \ +./textures/CCTexturePVR.d + + +# Each subdirectory must supply rules for building sources it contributes +textures/%.o: ../textures/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCParallaxNode.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCParallaxNode.d new file mode 100644 index 0000000000..30927ff830 --- /dev/null +++ b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCParallaxNode.d @@ -0,0 +1,99 @@ +tileMap_parallax_nodes/CCParallaxNode.d \ + tileMap_parallax_nodes/CCParallaxNode.o: \ + ../tileMap_parallax_nodes/CCParallaxNode.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXLayer.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXLayer.d new file mode 100644 index 0000000000..10f9be4fb5 --- /dev/null +++ b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXLayer.d @@ -0,0 +1,143 @@ +tileMap_parallax_nodes/CCTMXLayer.d tileMap_parallax_nodes/CCTMXLayer.o: \ + ../tileMap_parallax_nodes/CCTMXLayer.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXObjectGroup.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXObjectGroup.d new file mode 100644 index 0000000000..7b62478c80 --- /dev/null +++ b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXObjectGroup.d @@ -0,0 +1,84 @@ +tileMap_parallax_nodes/CCTMXObjectGroup.d \ + tileMap_parallax_nodes/CCTMXObjectGroup.o: \ + ../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXTiledMap.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXTiledMap.d new file mode 100644 index 0000000000..bab28656ef --- /dev/null +++ b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXTiledMap.d @@ -0,0 +1,138 @@ +tileMap_parallax_nodes/CCTMXTiledMap.d \ + tileMap_parallax_nodes/CCTMXTiledMap.o: \ + ../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXXMLParser.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXXMLParser.d new file mode 100644 index 0000000000..c47fff7a9d --- /dev/null +++ b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXXMLParser.d @@ -0,0 +1,135 @@ +tileMap_parallax_nodes/CCTMXXMLParser.d \ + tileMap_parallax_nodes/CCTMXXMLParser.o: \ + ../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTileMapAtlas.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTileMapAtlas.d new file mode 100644 index 0000000000..9035448b51 --- /dev/null +++ b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTileMapAtlas.d @@ -0,0 +1,117 @@ +tileMap_parallax_nodes/CCTileMapAtlas.d \ + tileMap_parallax_nodes/CCTileMapAtlas.o: \ + ../tileMap_parallax_nodes/CCTileMapAtlas.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/image_support/TGAlib.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/image_support/TGAlib.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/subdir.mk b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/subdir.mk new file mode 100644 index 0000000000..81eb86844f --- /dev/null +++ b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../tileMap_parallax_nodes/CCParallaxNode.cpp \ +../tileMap_parallax_nodes/CCTMXLayer.cpp \ +../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ +../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ +../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ +../tileMap_parallax_nodes/CCTileMapAtlas.cpp + +OBJS += \ +./tileMap_parallax_nodes/CCParallaxNode.o \ +./tileMap_parallax_nodes/CCTMXLayer.o \ +./tileMap_parallax_nodes/CCTMXObjectGroup.o \ +./tileMap_parallax_nodes/CCTMXTiledMap.o \ +./tileMap_parallax_nodes/CCTMXXMLParser.o \ +./tileMap_parallax_nodes/CCTileMapAtlas.o + +CPP_DEPS += \ +./tileMap_parallax_nodes/CCParallaxNode.d \ +./tileMap_parallax_nodes/CCTMXLayer.d \ +./tileMap_parallax_nodes/CCTMXObjectGroup.d \ +./tileMap_parallax_nodes/CCTMXTiledMap.d \ +./tileMap_parallax_nodes/CCTMXXMLParser.d \ +./tileMap_parallax_nodes/CCTileMapAtlas.d + + +# Each subdirectory must supply rules for building sources it contributes +tileMap_parallax_nodes/%.o: ../tileMap_parallax_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchDispatcher.d b/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchDispatcher.d new file mode 100644 index 0000000000..acff62c5a9 --- /dev/null +++ b/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchDispatcher.d @@ -0,0 +1,125 @@ +touch_dispatcher/CCTouchDispatcher.d touch_dispatcher/CCTouchDispatcher.o: \ + ../touch_dispatcher/CCTouchDispatcher.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchHandler.d b/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchHandler.d new file mode 100644 index 0000000000..837b1e5440 --- /dev/null +++ b/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchHandler.d @@ -0,0 +1,110 @@ +touch_dispatcher/CCTouchHandler.d touch_dispatcher/CCTouchHandler.o: \ + ../touch_dispatcher/CCTouchHandler.cpp \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ + /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: + +/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: diff --git a/cocos2dx/AndroidRelease/touch_dispatcher/subdir.mk b/cocos2dx/AndroidRelease/touch_dispatcher/subdir.mk new file mode 100644 index 0000000000..d64b80e8b1 --- /dev/null +++ b/cocos2dx/AndroidRelease/touch_dispatcher/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../touch_dispatcher/CCTouchDispatcher.cpp \ +../touch_dispatcher/CCTouchHandler.cpp + +OBJS += \ +./touch_dispatcher/CCTouchDispatcher.o \ +./touch_dispatcher/CCTouchHandler.o + +CPP_DEPS += \ +./touch_dispatcher/CCTouchDispatcher.d \ +./touch_dispatcher/CCTouchHandler.d + + +# Each subdirectory must supply rules for building sources it contributes +touch_dispatcher/%.o: ../touch_dispatcher/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/CCConfiguration.cpp b/cocos2dx/CCConfiguration.cpp index 2b83f88551..88b78855b5 100644 --- a/cocos2dx/CCConfiguration.cpp +++ b/cocos2dx/CCConfiguration.cpp @@ -100,8 +100,13 @@ CCGlesVersion CCConfiguration::getGlesVersion() { return GLES_VER_2_0; } +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + return GLES_VER_2_0; +#else + return GLES_VER_INVALID; +#endif } CCConfiguration* CCConfiguration::sharedConfiguration(void) diff --git a/cocos2dx/CCConfiguration.h b/cocos2dx/CCConfiguration.h index 007d5fa846..49d3cb20c0 100644 --- a/cocos2dx/CCConfiguration.h +++ b/cocos2dx/CCConfiguration.h @@ -57,7 +57,7 @@ namespace cocos2d { GLES_VER_INVALID, GLES_VER_1_0, GLES_VER_1_1, - GLES_VER_2_0 + GLES_VER_2_0, } CCGlesVersion; /** diff --git a/cocos2dx/actions/CCActionGrid3D.cpp b/cocos2dx/actions/CCActionGrid3D.cpp index e29e8d8297..2185e4784f 100644 --- a/cocos2dx/actions/CCActionGrid3D.cpp +++ b/cocos2dx/actions/CCActionGrid3D.cpp @@ -91,13 +91,13 @@ namespace cocos2d void CCWaves3D::update(ccTime time) { int i, j; - for (i = 0; i < m_sGridSize.x + 1; ++i) { for (j = 0; j < m_sGridSize.y + 1; ++j) { ccVertex3F v = originalVertex(ccg(i ,j)); v.z += (sinf((CGFloat)M_PI * time * m_nWaves * 2 + (v.y+v.x) * .01f) * m_fAmplitude * m_fAmplitudeRate); + CCLog("v.z offset is %f\n", (sinf((CGFloat)M_PI * time * m_nWaves * 2 + (v.y+v.x) * .01f) * m_fAmplitude * m_fAmplitudeRate)); setVertex(ccg(i, j), v); } } diff --git a/cocos2dx/platform/Linux/CCAplication_linux.cpp b/cocos2dx/platform/Linux/CCAplication_linux.cpp index 65e7efd658..11a0ce624f 100644 --- a/cocos2dx/platform/Linux/CCAplication_linux.cpp +++ b/cocos2dx/platform/Linux/CCAplication_linux.cpp @@ -5,7 +5,8 @@ * Author: laschweinski */ #include "CCApplication.h" - +#include +#include #include "CCDirector.h" @@ -14,6 +15,15 @@ NS_CC_BEGIN; // sharedApplication pointer CCApplication * CCApplication::sm_pSharedApplication = 0; +static long getCurrentMillSecond() { + long lLastTime; + struct timeval stCurrentTime; + + gettimeofday(&stCurrentTime,NULL); + lLastTime = stCurrentTime.tv_sec*1000+stCurrentTime.tv_usec*0.001; //millseconds + return lLastTime; +} + CCApplication::CCApplication() { CC_ASSERT(! sm_pSharedApplication); @@ -24,6 +34,7 @@ CCApplication::~CCApplication() { CC_ASSERT(this == sm_pSharedApplication); sm_pSharedApplication = NULL; + m_nAnimationInterval = 1.0f/60.0f*1000.0f; } int CCApplication::run() @@ -34,38 +45,44 @@ int CCApplication::run() return 0; } - for (;;){ - //TODO will wait for some second based on the m_nAnimationInterval + + for (;;) { + long iLastTime = getCurrentMillSecond(); CCDirector::sharedDirector()->mainLoop(); + long iCurTime = getCurrentMillSecond(); + if (iCurTime-iLastTimegetOpenGLView(); - if (pView) - { - return (Orientation)pView->setDeviceOrientation(orientation); - } - return (Orientation)CCDirector::sharedDirector()->getDeviceOrientation(); + // swap width and height + CCEGLView * pView = CCDirector::sharedDirector()->getOpenGLView(); + if (pView) + { + return (Orientation)pView->setDeviceOrientation(orientation); + } + return (Orientation)CCDirector::sharedDirector()->getDeviceOrientation(); } -void CCApplication::statusBarFrame(CCRect * rect){ +void CCApplication::statusBarFrame(CCRect * rect) { - if (rect) - { - // linux doesn't have status bar. - *rect = CCRectMake(0, 0, 0, 0); - } + if (rect) + { + // linux doesn't have status bar. + *rect = CCRectMake(0, 0, 0, 0); + } } void CCApplication::setAnimationInterval(double interval) { //TODO do something else - m_nAnimationInterval = interval; + m_nAnimationInterval = interval*1000.0f; } ////////////////////////////////////////////////////////////////////////// diff --git a/cocos2dx/platform/Linux/CCAplication_linux.h b/cocos2dx/platform/Linux/CCAplication_linux.h index 8e2ea1934b..ea0659e183 100644 --- a/cocos2dx/platform/Linux/CCAplication_linux.h +++ b/cocos2dx/platform/Linux/CCAplication_linux.h @@ -89,7 +89,7 @@ public: */ static ccLanguageType getCurrentLanguage(); protected: - double m_nAnimationInterval; + long m_nAnimationInterval; //micro second static CCApplication * sm_pSharedApplication; }; diff --git a/cocos2dx/platform/Linux/CCImage_Linux.cpp b/cocos2dx/platform/Linux/CCImage_Linux.cpp index ab157958d4..2ed911f104 100644 --- a/cocos2dx/platform/Linux/CCImage_Linux.cpp +++ b/cocos2dx/platform/Linux/CCImage_Linux.cpp @@ -176,7 +176,7 @@ public: if (iError) { //no valid font found use default - CCLog("no valid font, use default %s\n", pFontName); +// CCLog("no valid font, use default %s\n", pFontName); iError = FT_New_Face( library, "/usr/share/fonts/truetype/freefont/FreeSans.ttf", 0, &face ); } CC_BREAK_IF(iError); diff --git a/mycreate-android-project.sh b/mycreate-android-project.sh index b0f3993896..08fdf35aa9 100755 --- a/mycreate-android-project.sh +++ b/mycreate-android-project.sh @@ -49,6 +49,8 @@ create_android_project(){ echo "input your project name:" read PROJECT_NAME PROJECT_DIR=`pwd`/$PROJECT_NAME + PROREAL_DIR=$PROJECT_NAME + PROJECT_NAME=An$PROJECT_NAME $ANDROID_SDK_ROOT/tools/android create project -n $PROJECT_NAME -t $TARGET_ID -k $PACKAGE_PATH -a $PROJECT_NAME -p $PROJECT_DIR } @@ -57,4 +59,4 @@ create_android_project(){ create_android_project # invoke template/android/copy_files.sh -sh $COCOS2DX_ROOT/template/android/mycopy_files.sh $COCOS2DX_ROOT $PROJECT_NAME $NDK_ROOT $PACKAGE_PATH +sh $COCOS2DX_ROOT/template/android/mycopy_files.sh $COCOS2DX_ROOT $PROJECT_NAME $NDK_ROOT $PACKAGE_PATH $PROREAL_DIR diff --git a/post.sh b/post.sh new file mode 100644 index 0000000000..b7d9b1bac2 --- /dev/null +++ b/post.sh @@ -0,0 +1,8 @@ +#!/bin/bash +echo $1 $2 +test -e ../Debug/lib$1.so&& cp ../Debug/lib$1.so ../../lib/linux/Debug/lib$2.so +test -e ../Release/lib$1.so&& cp ../Release/lib$1.so ../../lib/linux/Release/lib$2.so + +test -e ../AndroidDebug/lib$1.so&& cp ../AndroidDebug/lib$1.so ../../lib/android/Debug/lib$2.so +test -e ../AndroidRelease/lib$1.so&& cp ../AndroidRelease/lib$1.so ../../lib/android/Release/lib$2.so + diff --git a/template/android/mycopy_files.sh b/template/android/mycopy_files.sh index 4c1bf7bb08..a3743457cf 100644 --- a/template/android/mycopy_files.sh +++ b/template/android/mycopy_files.sh @@ -3,11 +3,13 @@ APP_NAME=$2 COCOS2DX_ROOT=$1 -APP_DIR=`pwd`/$APP_NAME +APP_DIR=`pwd`/$5 HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloCocos2dx NDK_ROOT=$3 PACKAGE_PATH=$4 +echo $APP_DIR + # xxx.yyy.zzz -> xxx/yyy/zzz convert_package_path_to_dir(){ PACKAGE_PATH_DIR=`echo $1 | sed -e "s/\./\//g"` @@ -50,6 +52,11 @@ move_eclipse_configures_into(){ done } +#copy shell script +copy_shells(){ + cp $HELLOWORLD_ROOT/postCompiled.sh $APP_DIR/ +} + #copy main sources copy_cpp_h_from_helloworld(){ mkdir $APP_DIR/Classes @@ -118,6 +125,7 @@ modify_layout(){ move_files_into_android move_files_into_linux move_eclipse_configures_into +copy_shells copy_cpp_h_from_helloworld copy_resouces copy_src_and_jni diff --git a/tests/AppDelegate.cpp b/tests/AppDelegate.cpp index ff730d1228..b33d5c744b 100644 --- a/tests/AppDelegate.cpp +++ b/tests/AppDelegate.cpp @@ -69,7 +69,7 @@ bool AppDelegate::initInstance() // The HelloWorld is designed as HVGA. CCEGLView * pMainWnd = new CCEGLView(); CC_BREAK_IF(! pMainWnd - || ! pMainWnd->Create("cocos2d: tests", 800, 480, 480, 320)); + || ! pMainWnd->Create("cocos2d: tests", 480, 320, 480, 320)); //set the base resource folder pay attention to add "/" CCFileUtils::setResourcePath("Res/"); diff --git a/tests/test.linux/Res b/tests/test.linux/Res new file mode 120000 index 0000000000..5c9957695c --- /dev/null +++ b/tests/test.linux/Res @@ -0,0 +1 @@ +/home/laschweinski/git/cocos2d-x/tests/Res \ No newline at end of file diff --git a/tests/test.linux/Res/Images/PlanetCute-1024x1024.png.REMOVED.git-id b/tests/test.linux/Res/Images/PlanetCute-1024x1024.png.REMOVED.git-id deleted file mode 100644 index 840b1569f8..0000000000 --- a/tests/test.linux/Res/Images/PlanetCute-1024x1024.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -c839baf9990fed7ddcaca66167188203ceaf9370 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/atlastest.png.REMOVED.git-id b/tests/test.linux/Res/Images/atlastest.png.REMOVED.git-id deleted file mode 100644 index 835f70a6c7..0000000000 --- a/tests/test.linux/Res/Images/atlastest.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -2aaf84affb08908ea5aa5fd7ce5de973b88109bc \ No newline at end of file diff --git a/tests/test.linux/Res/Images/background1-hd.png.REMOVED.git-id b/tests/test.linux/Res/Images/background1-hd.png.REMOVED.git-id deleted file mode 100644 index 0666bb0757..0000000000 --- a/tests/test.linux/Res/Images/background1-hd.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -79a3a895ba8a3568400db39e819a15d110045d6c \ No newline at end of file diff --git a/tests/test.linux/Res/Images/background1.png.REMOVED.git-id b/tests/test.linux/Res/Images/background1.png.REMOVED.git-id deleted file mode 100644 index d09b5d1a5e..0000000000 --- a/tests/test.linux/Res/Images/background1.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -abd4b23cdfdb825428fdd2a1c7381671ce83bbed \ No newline at end of file diff --git a/tests/test.linux/Res/Images/background2-hd.png.REMOVED.git-id b/tests/test.linux/Res/Images/background2-hd.png.REMOVED.git-id deleted file mode 100644 index 1ef2da98a2..0000000000 --- a/tests/test.linux/Res/Images/background2-hd.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -33b72a10558b874067b03ec1fd2a38a53b31d044 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/background2.png.REMOVED.git-id b/tests/test.linux/Res/Images/background2.png.REMOVED.git-id deleted file mode 100644 index dcbc6e2095..0000000000 --- a/tests/test.linux/Res/Images/background2.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -b56dda22b7fe9d89ae31e8dbec799917405ed5e2 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/bugs/bug886.png.REMOVED.git-id b/tests/test.linux/Res/Images/bugs/bug886.png.REMOVED.git-id deleted file mode 100644 index 936cf762a1..0000000000 --- a/tests/test.linux/Res/Images/bugs/bug886.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -6b9dcb4915a36e3aefef3f153949a96b145fba0d \ No newline at end of file diff --git a/tests/test.linux/Res/Images/grossini_dance_atlas-mono.png.REMOVED.git-id b/tests/test.linux/Res/Images/grossini_dance_atlas-mono.png.REMOVED.git-id deleted file mode 100644 index 9e2d81b2cf..0000000000 --- a/tests/test.linux/Res/Images/grossini_dance_atlas-mono.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -0a08f47624fb92eef7de9fed051d92a25e3c6ff8 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/landscape-1024x1024.png.REMOVED.git-id b/tests/test.linux/Res/Images/landscape-1024x1024.png.REMOVED.git-id deleted file mode 100644 index bed5c69dcd..0000000000 --- a/tests/test.linux/Res/Images/landscape-1024x1024.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -365a14b28310b73a048597cc8d87609975705172 \ No newline at end of file diff --git a/tests/test.linux/Res/Images/spritesheet1.png.REMOVED.git-id b/tests/test.linux/Res/Images/spritesheet1.png.REMOVED.git-id deleted file mode 100644 index b828d6a4fb..0000000000 --- a/tests/test.linux/Res/Images/spritesheet1.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -9246a8bc975c764e4aa71f54a50d5f4e4bce7a18 \ No newline at end of file diff --git a/tests/test.linux/Res/TileMaps/hexa-tiles.png.REMOVED.git-id b/tests/test.linux/Res/TileMaps/hexa-tiles.png.REMOVED.git-id deleted file mode 100644 index 12596d37ed..0000000000 --- a/tests/test.linux/Res/TileMaps/hexa-tiles.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -6869c5352bc6510dba54803f5f4459b0a6a3fcf2 \ No newline at end of file diff --git a/tests/test.linux/Res/TileMaps/ortho-test1.png.REMOVED.git-id b/tests/test.linux/Res/TileMaps/ortho-test1.png.REMOVED.git-id deleted file mode 100644 index 303efad475..0000000000 --- a/tests/test.linux/Res/TileMaps/ortho-test1.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -d13ddb0931c1772127b38010990140adce837bc8 \ No newline at end of file diff --git a/tests/test.linux/Res/animations/grossini.plist.xml b/tests/test.linux/Res/animations/grossini.plist.xml deleted file mode 100644 index 2c894b6f3a..0000000000 --- a/tests/test.linux/Res/animations/grossini.plist.xml +++ /dev/null @@ -1,282 +0,0 @@ - - - - - texture - - width - 512 - height - 256 - - frames - - grossini_dance_01.png - - x - 347 - y - 1 - width - 51 - height - 109 - offsetX - 0 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_02.png - - x - 215 - y - 111 - width - 63 - height - 109 - offsetX - -6 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_03.png - - x - 151 - y - 111 - width - 63 - height - 109 - offsetX - -6 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_04.png - - x - 1 - y - 111 - width - 74 - height - 109 - offsetX - -0.5 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_05.png - - x - 76 - y - 111 - width - 74 - height - 109 - offsetX - -0.5 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_06.png - - x - 399 - y - 1 - width - 63 - height - 109 - offsetX - -6 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_07.png - - x - 105 - y - 1 - width - 63 - height - 109 - offsetX - -6 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_08.png - - x - 1 - y - 1 - width - 51 - height - 109 - offsetX - 0 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_09.png - - x - 295 - y - 1 - width - 51 - height - 109 - offsetX - 0 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_10.png - - x - 232 - y - 1 - width - 62 - height - 109 - offsetX - 5.5 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_11.png - - x - 169 - y - 1 - width - 62 - height - 109 - offsetX - 5.5 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_12.png - - x - 279 - y - 111 - width - 51 - height - 106 - offsetX - 0 - offsetY - -2.5 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_13.png - - x - 53 - y - 1 - width - 51 - height - 109 - offsetX - 0 - offsetY - -1 - originalWidth - 85 - originalHeight - -121 - - grossini_dance_14.png - - x - 331 - y - 111 - width - 51 - height - 106 - offsetX - 0 - offsetY - -2.5 - originalWidth - 85 - originalHeight - -121 - - - - diff --git a/tests/test.linux/Res/app.config.txt b/tests/test.linux/Res/app.config.txt deleted file mode 100644 index 104530ed60..0000000000 --- a/tests/test.linux/Res/app.config.txt +++ /dev/null @@ -1,5 +0,0 @@ -[Trace] -GAME <0 or 1> Game Channel - -[Assert] -GAME <0 or 1> Game Assert Channel \ No newline at end of file diff --git a/tests/test.linux/Res/background.mp3.REMOVED.git-id b/tests/test.linux/Res/background.mp3.REMOVED.git-id deleted file mode 100644 index cfc16a8a4e..0000000000 --- a/tests/test.linux/Res/background.mp3.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -aec1c0a8c8068377fddca5ddd32084d8c3c3c419 \ No newline at end of file diff --git a/tests/test.linux/Res/fonts/bitmapFontTest.png.REMOVED.git-id b/tests/test.linux/Res/fonts/bitmapFontTest.png.REMOVED.git-id deleted file mode 100644 index 726316927e..0000000000 --- a/tests/test.linux/Res/fonts/bitmapFontTest.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -112328fdb03b8966c8cb7b62a5fc51ce0d4570b1 \ No newline at end of file diff --git a/tests/test.linux/Res/fonts/bitmapFontTest2.png.REMOVED.git-id b/tests/test.linux/Res/fonts/bitmapFontTest2.png.REMOVED.git-id deleted file mode 100644 index d025022480..0000000000 --- a/tests/test.linux/Res/fonts/bitmapFontTest2.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -9975e4961272d5bda6d5f3bbd61ea0fc02222199 \ No newline at end of file diff --git a/tests/test.linux/Res/fonts/futura-48.png.REMOVED.git-id b/tests/test.linux/Res/fonts/futura-48.png.REMOVED.git-id deleted file mode 100644 index 451874e3f2..0000000000 --- a/tests/test.linux/Res/fonts/futura-48.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -6a89fbfbe3c98e2d72c84e4d76873375eca87802 \ No newline at end of file diff --git a/tests/test.linux/Res/fonts/tuffy_bold_italic-charmap-hd.png.REMOVED.git-id b/tests/test.linux/Res/fonts/tuffy_bold_italic-charmap-hd.png.REMOVED.git-id deleted file mode 100644 index 5696ae5bfc..0000000000 --- a/tests/test.linux/Res/fonts/tuffy_bold_italic-charmap-hd.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -8167faf6c40ffd95a03028f1dcee1abdaa48b222 \ No newline at end of file From 005a2b4cf46c8e7b9785dc81f24e2a857c41a7bc Mon Sep 17 00:00:00 2001 From: root Date: Tue, 23 Aug 2011 11:37:41 +0800 Subject: [PATCH 11/31] new file: lib/android/Debug/libcocos2d.so new file: lib/android/Debug/libcocosdenshion.so new file: lib/android/Release/libcocos2d.so new file: lib/android/Release/libcocosdenshion.so new file: lib/linux/Debug/libcocos2d.so new file: lib/linux/Debug/libcocosdenshion.so new file: lib/linux/Release/libcocos2d.so new file: lib/linux/Release/libcocosdenshion.so HelloCocos2dx/postCompiled.sh installLinuxLib.sh --- lib/android/Debug/libcocos2d.so.REMOVED.git-id | 1 + lib/android/Debug/libcocosdenshion.so.REMOVED.git-id | 1 + lib/android/Release/libcocos2d.so.REMOVED.git-id | 1 + lib/android/Release/libcocosdenshion.so.REMOVED.git-id | 1 + lib/linux/Debug/libcocos2d.so.REMOVED.git-id | 1 + lib/linux/Debug/libcocosdenshion.so.REMOVED.git-id | 1 + lib/linux/Release/libcocos2d.so.REMOVED.git-id | 1 + 7 files changed, 7 insertions(+) create mode 100644 lib/android/Debug/libcocos2d.so.REMOVED.git-id create mode 100644 lib/android/Debug/libcocosdenshion.so.REMOVED.git-id create mode 100644 lib/android/Release/libcocos2d.so.REMOVED.git-id create mode 100644 lib/android/Release/libcocosdenshion.so.REMOVED.git-id create mode 100644 lib/linux/Debug/libcocos2d.so.REMOVED.git-id create mode 100644 lib/linux/Debug/libcocosdenshion.so.REMOVED.git-id create mode 100644 lib/linux/Release/libcocos2d.so.REMOVED.git-id diff --git a/lib/android/Debug/libcocos2d.so.REMOVED.git-id b/lib/android/Debug/libcocos2d.so.REMOVED.git-id new file mode 100644 index 0000000000..37ef4cbaab --- /dev/null +++ b/lib/android/Debug/libcocos2d.so.REMOVED.git-id @@ -0,0 +1 @@ +058f3d792df02e6e30b4b1b1dd02e4bd94b0df8d \ No newline at end of file diff --git a/lib/android/Debug/libcocosdenshion.so.REMOVED.git-id b/lib/android/Debug/libcocosdenshion.so.REMOVED.git-id new file mode 100644 index 0000000000..d9aca5d6f6 --- /dev/null +++ b/lib/android/Debug/libcocosdenshion.so.REMOVED.git-id @@ -0,0 +1 @@ +44df184b33ff13c8b7f673ff651334bca3a50fdd \ No newline at end of file diff --git a/lib/android/Release/libcocos2d.so.REMOVED.git-id b/lib/android/Release/libcocos2d.so.REMOVED.git-id new file mode 100644 index 0000000000..60f77fb7b4 --- /dev/null +++ b/lib/android/Release/libcocos2d.so.REMOVED.git-id @@ -0,0 +1 @@ +36e0c7801ed8caccf471734133a5fa91531e9a6f \ No newline at end of file diff --git a/lib/android/Release/libcocosdenshion.so.REMOVED.git-id b/lib/android/Release/libcocosdenshion.so.REMOVED.git-id new file mode 100644 index 0000000000..e1cefd40e3 --- /dev/null +++ b/lib/android/Release/libcocosdenshion.so.REMOVED.git-id @@ -0,0 +1 @@ +273438a6408c82cbe725fd85c3519c44833e65db \ No newline at end of file diff --git a/lib/linux/Debug/libcocos2d.so.REMOVED.git-id b/lib/linux/Debug/libcocos2d.so.REMOVED.git-id new file mode 100644 index 0000000000..0cf88f8f79 --- /dev/null +++ b/lib/linux/Debug/libcocos2d.so.REMOVED.git-id @@ -0,0 +1 @@ +7e130f723717c5ce7d1f6e7baa6d78796da621c4 \ No newline at end of file diff --git a/lib/linux/Debug/libcocosdenshion.so.REMOVED.git-id b/lib/linux/Debug/libcocosdenshion.so.REMOVED.git-id new file mode 100644 index 0000000000..a6b88daf01 --- /dev/null +++ b/lib/linux/Debug/libcocosdenshion.so.REMOVED.git-id @@ -0,0 +1 @@ +f8f188972e435954a454dcdf92107622dd417e76 \ No newline at end of file diff --git a/lib/linux/Release/libcocos2d.so.REMOVED.git-id b/lib/linux/Release/libcocos2d.so.REMOVED.git-id new file mode 100644 index 0000000000..a059617d0a --- /dev/null +++ b/lib/linux/Release/libcocos2d.so.REMOVED.git-id @@ -0,0 +1 @@ +af4fe8dafa9bcf8671ec0a7161a50105d229241e \ No newline at end of file From 606c8803bcf9ac6c01afd8f366e110e1fe2739e7 Mon Sep 17 00:00:00 2001 From: laschweinski Date: Thu, 25 Aug 2011 19:04:29 +0800 Subject: [PATCH 12/31] modified: CocosDenshion/Linux/FmodAudioPlayer.cpp modified: CocosDenshion/Linux/FmodAudioPlayer.h deleted: HelloWorld/AppDelegate.cpp deleted: HelloWorld/AppDelegate.h deleted: HelloWorld/HelloWorldScene.cpp deleted: HelloWorld/HelloWorldScene.h modified: cocos2dx/.cproject modified: cocos2dx/actions/CCActionInstant.cpp modified: cocos2dx/include/CCActionInstant.h modified: lib/android/Debug/libcocos2d.so modified: lib/android/Release/libcocos2d.so modified: lib/linux/Debug/libcocos2d.so modified: lib/linux/Debug/libcocosdenshion.so modified: lib/linux/Release/libcocos2d.so modified: lib/linux/Release/libcocosdenshion.so HelloWorld/AndroidDebug/ HelloWorld/AndroidRelease/ HelloWorld/Classes/ HelloWorld/android/assets HelloWorld/postCompiled.sh cocos2dx/platform/third_party/linux/ installLinuxLib.sh tests/Res/gui_close.WAV --- CocosDenshion/Linux/FmodAudioPlayer.cpp | 15 ++- CocosDenshion/Linux/FmodAudioPlayer.h | 4 + .../Classes/HelloWorldScene.o.REMOVED.git-id | 2 +- HelloCocos2dx/AndroidDebug/Classes/subdir.mk | 2 +- .../android/jni/helloworld/main.d | 4 +- .../jni/helloworld/main.o.REMOVED.git-id | 2 +- .../android/jni/helloworld/subdir.mk | 2 +- .../libHelloCocos2dx.so.REMOVED.git-id | 2 +- HelloCocos2dx/AndroidDebug/makefile | 2 +- HelloCocos2dx/AndroidDebug/objects.mk | 2 +- .../Classes/HelloWorldScene.o.REMOVED.git-id | 2 +- .../AndroidRelease/Classes/subdir.mk | 2 +- .../android/jni/helloworld/main.d | 4 +- .../jni/helloworld/main.o.REMOVED.git-id | 2 +- .../android/jni/helloworld/subdir.mk | 2 +- .../libHelloCocos2dx.so.REMOVED.git-id | 2 +- HelloCocos2dx/AndroidRelease/makefile | 2 +- HelloCocos2dx/AndroidRelease/objects.mk | 2 +- HelloWorld/AppDelegate.cpp | 115 ------------------ HelloWorld/AppDelegate.h | 43 ------- HelloWorld/HelloWorldScene.cpp | 82 ------------- HelloWorld/HelloWorldScene.h | 22 ---- cocos2dx/.cproject | 63 ++++++---- .../AndroidDebug/CCDirector.o.REMOVED.git-id | 2 +- .../AndroidDebug/CCScheduler.o.REMOVED.git-id | 2 +- .../actions/CCAction.o.REMOVED.git-id | 2 +- .../actions/CCActionEase.o.REMOVED.git-id | 2 +- .../actions/CCActionGrid.o.REMOVED.git-id | 2 +- .../actions/CCActionGrid3D.o.REMOVED.git-id | 2 +- .../actions/CCActionInstant.o.REMOVED.git-id | 2 +- .../actions/CCActionInterval.o.REMOVED.git-id | 2 +- .../actions/CCActionManager.o.REMOVED.git-id | 2 +- .../CCActionTiledGrid.o.REMOVED.git-id | 2 +- .../base_nodes/CCAtlasNode.o.REMOVED.git-id | 2 +- .../base_nodes/CCNode.o.REMOVED.git-id | 2 +- .../cocoa/CCAutoreleasePool.o.REMOVED.git-id | 2 +- .../effects/CCGrid.o.REMOVED.git-id | 2 +- .../CCKeypadDispatcher.o.REMOVED.git-id | 2 +- .../label_nodes/CCLabelAtlas.o.REMOVED.git-id | 2 +- .../CCLabelBMFont.o.REMOVED.git-id | 2 +- .../label_nodes/CCLabelTTF.o.REMOVED.git-id | 2 +- .../CCLayer.o.REMOVED.git-id | 2 +- .../CCTransition.o.REMOVED.git-id | 2 +- .../CCTransitionRadial.o.REMOVED.git-id | 2 +- .../libcocos2dx-base.so.REMOVED.git-id | 2 +- .../menu_nodes/CCMenu.o.REMOVED.git-id | 2 +- .../menu_nodes/CCMenuItem.o.REMOVED.git-id | 2 +- .../CCMotionStreak.o.REMOVED.git-id | 2 +- .../CCProgressTimer.o.REMOVED.git-id | 2 +- .../CCRenderTexture.o.REMOVED.git-id | 2 +- .../misc_nodes/CCRibbon.o.REMOVED.git-id | 2 +- .../CCParticleExamples.o.REMOVED.git-id | 2 +- .../CCParticleSystem.o.REMOVED.git-id | 2 +- .../CCParticleSystemQuad.o.REMOVED.git-id | 2 +- .../platform/CCFileUtils.o.REMOVED.git-id | 2 +- .../platform/CCImage.o.REMOVED.git-id | 2 +- .../CCApplication_android.o.REMOVED.git-id | 2 +- .../android/jni/MessageJni.o.REMOVED.git-id | 2 +- .../android/jni/TouchesJni.o.REMOVED.git-id | 2 +- .../sprite_nodes/CCAnimation.o.REMOVED.git-id | 2 +- .../CCAnimationCache.o.REMOVED.git-id | 2 +- .../sprite_nodes/CCSprite.o.REMOVED.git-id | 2 +- .../CCSpriteBatchNode.o.REMOVED.git-id | 2 +- .../CCSpriteFrameCache.o.REMOVED.git-id | 2 +- .../support/CCUserDefault.o.REMOVED.git-id | 2 +- .../CCTextFieldTTF.o.REMOVED.git-id | 2 +- .../textures/CCTexture2D.o.REMOVED.git-id | 2 +- .../textures/CCTextureCache.o.REMOVED.git-id | 2 +- .../textures/CCTexturePVR.o.REMOVED.git-id | 2 +- .../CCParallaxNode.o.REMOVED.git-id | 2 +- .../CCTMXLayer.o.REMOVED.git-id | 2 +- .../CCTMXObjectGroup.o.REMOVED.git-id | 2 +- .../CCTMXTiledMap.o.REMOVED.git-id | 2 +- .../CCTMXXMLParser.o.REMOVED.git-id | 2 +- .../CCTileMapAtlas.o.REMOVED.git-id | 2 +- .../CCTouchDispatcher.o.REMOVED.git-id | 2 +- .../CCTouchHandler.o.REMOVED.git-id | 2 +- .../CCTransition.o.REMOVED.git-id | 2 +- .../libcocos2dx-base.so.REMOVED.git-id | 2 +- cocos2dx/AndroidRelease/objects.mk | 2 +- cocos2dx/actions/CCActionInstant.cpp | 34 ++++++ cocos2dx/include/CCAccelerometer.h | 0 cocos2dx/include/CCAccelerometerDelegate.h | 0 cocos2dx/include/CCAction.h | 0 cocos2dx/include/CCActionCamera.h | 0 cocos2dx/include/CCActionEase.h | 0 cocos2dx/include/CCActionGrid.h | 0 cocos2dx/include/CCActionGrid3D.h | 0 cocos2dx/include/CCActionInstant.h | 6 + cocos2dx/include/CCActionInterval.h | 0 cocos2dx/include/CCActionManager.h | 0 cocos2dx/include/CCActionPageTurn3D.h | 0 cocos2dx/include/CCActionProgressTimer.h | 0 cocos2dx/include/CCActionTiledGrid.h | 0 cocos2dx/include/CCAffineTransform.h | 0 cocos2dx/include/CCAnimation.h | 0 cocos2dx/include/CCAnimationCache.h | 0 cocos2dx/include/CCApplication.h | 0 cocos2dx/include/CCArray.h | 0 cocos2dx/include/CCAtlasNode.h | 0 cocos2dx/include/CCAutoreleasePool.h | 0 cocos2dx/include/CCCamera.h | 0 cocos2dx/include/CCData.h | 0 cocos2dx/include/CCDirector.h | 0 cocos2dx/include/CCDrawingPrimitives.h | 0 cocos2dx/include/CCEGLView.h | 0 cocos2dx/include/CCGL.h | 0 cocos2dx/include/CCGeometry.h | 0 cocos2dx/include/CCIMEDelegate.h | 0 cocos2dx/include/CCIMEDispatcher.h | 0 cocos2dx/include/CCKeypadDelegate.h | 0 cocos2dx/include/CCKeypadDispatcher.h | 0 cocos2dx/include/CCLabelAtlas.h | 0 cocos2dx/include/CCLabelBMFont.h | 0 cocos2dx/include/CCLabelTTF.h | 0 cocos2dx/include/CCLayer.h | 0 cocos2dx/include/CCMenu.h | 0 cocos2dx/include/CCMenuItem.h | 0 cocos2dx/include/CCMotionStreak.h | 0 cocos2dx/include/CCMutableArray.h | 0 cocos2dx/include/CCMutableDictionary.h | 0 cocos2dx/include/CCNode.h | 0 cocos2dx/include/CCObject.h | 0 cocos2dx/include/CCParallaxNode.h | 0 cocos2dx/include/CCParticleExamples.h | 0 cocos2dx/include/CCParticleSystem.h | 0 cocos2dx/include/CCParticleSystemPoint.h | 0 cocos2dx/include/CCParticleSystemQuad.h | 0 cocos2dx/include/CCPointExtension.h | 0 cocos2dx/include/CCProgressTimer.h | 0 cocos2dx/include/CCProtocols.h | 0 cocos2dx/include/CCRenderTexture.h | 0 cocos2dx/include/CCRibbon.h | 0 cocos2dx/include/CCScene.h | 0 cocos2dx/include/CCScheduler.h | 0 cocos2dx/include/CCScriptSupport.h | 0 cocos2dx/include/CCSet.h | 0 cocos2dx/include/CCSprite.h | 0 cocos2dx/include/CCSpriteBatchNode.h | 0 cocos2dx/include/CCSpriteFrame.h | 0 cocos2dx/include/CCSpriteFrameCache.h | 0 cocos2dx/include/CCString.h | 0 cocos2dx/include/CCTMXLayer.h | 0 cocos2dx/include/CCTMXObjectGroup.h | 0 cocos2dx/include/CCTMXTiledMap.h | 0 cocos2dx/include/CCTMXXMLParser.h | 0 cocos2dx/include/CCTextFieldTTF.h | 0 cocos2dx/include/CCTexture2D.h | 0 cocos2dx/include/CCTextureAtlas.h | 0 cocos2dx/include/CCTextureCache.h | 0 cocos2dx/include/CCTileMapAtlas.h | 0 cocos2dx/include/CCTouch.h | 0 cocos2dx/include/CCTouchDelegateProtocol.h | 0 cocos2dx/include/CCTouchDispatcher.h | 0 cocos2dx/include/CCTouchHandler.h | 0 cocos2dx/include/CCTransition.h | 0 cocos2dx/include/CCTransitionPageTurn.h | 0 cocos2dx/include/CCTransitionRadial.h | 0 cocos2dx/include/CCUserDefault.h | 0 cocos2dx/include/CCZone.h | 0 cocos2dx/include/ccConfig.h | 0 cocos2dx/include/ccMacros.h | 0 cocos2dx/include/ccTypes.h | 0 cocos2dx/include/cocos2d.h | 0 cocos2dx/include/selector_protocol.h | 0 cocos2dx/platform/Linux/CCFileUtils_Linux.cpp | 9 +- .../Debug/libcocos2d.so.REMOVED.git-id | 2 +- .../Release/libcocos2d.so.REMOVED.git-id | 2 +- lib/linux/Debug/libcocos2d.so.REMOVED.git-id | 2 +- .../Debug/libcocosdenshion.so.REMOVED.git-id | 2 +- .../Release/libcocos2d.so.REMOVED.git-id | 2 +- .../CocosDenshionTest/CocosDenshionTest.cpp | 2 +- 172 files changed, 184 insertions(+), 371 deletions(-) delete mode 100644 HelloWorld/AppDelegate.cpp delete mode 100644 HelloWorld/AppDelegate.h delete mode 100644 HelloWorld/HelloWorldScene.cpp delete mode 100644 HelloWorld/HelloWorldScene.h mode change 100644 => 100755 cocos2dx/include/CCAccelerometer.h mode change 100644 => 100755 cocos2dx/include/CCAccelerometerDelegate.h mode change 100644 => 100755 cocos2dx/include/CCAction.h mode change 100644 => 100755 cocos2dx/include/CCActionCamera.h mode change 100644 => 100755 cocos2dx/include/CCActionEase.h mode change 100644 => 100755 cocos2dx/include/CCActionGrid.h mode change 100644 => 100755 cocos2dx/include/CCActionGrid3D.h mode change 100644 => 100755 cocos2dx/include/CCActionInstant.h mode change 100644 => 100755 cocos2dx/include/CCActionInterval.h mode change 100644 => 100755 cocos2dx/include/CCActionManager.h mode change 100644 => 100755 cocos2dx/include/CCActionPageTurn3D.h mode change 100644 => 100755 cocos2dx/include/CCActionProgressTimer.h mode change 100644 => 100755 cocos2dx/include/CCActionTiledGrid.h mode change 100644 => 100755 cocos2dx/include/CCAffineTransform.h mode change 100644 => 100755 cocos2dx/include/CCAnimation.h mode change 100644 => 100755 cocos2dx/include/CCAnimationCache.h mode change 100644 => 100755 cocos2dx/include/CCApplication.h mode change 100644 => 100755 cocos2dx/include/CCArray.h mode change 100644 => 100755 cocos2dx/include/CCAtlasNode.h mode change 100644 => 100755 cocos2dx/include/CCAutoreleasePool.h mode change 100644 => 100755 cocos2dx/include/CCCamera.h mode change 100644 => 100755 cocos2dx/include/CCData.h mode change 100644 => 100755 cocos2dx/include/CCDirector.h mode change 100644 => 100755 cocos2dx/include/CCDrawingPrimitives.h mode change 100644 => 100755 cocos2dx/include/CCEGLView.h mode change 100644 => 100755 cocos2dx/include/CCGL.h mode change 100644 => 100755 cocos2dx/include/CCGeometry.h mode change 100644 => 100755 cocos2dx/include/CCIMEDelegate.h mode change 100644 => 100755 cocos2dx/include/CCIMEDispatcher.h mode change 100644 => 100755 cocos2dx/include/CCKeypadDelegate.h mode change 100644 => 100755 cocos2dx/include/CCKeypadDispatcher.h mode change 100644 => 100755 cocos2dx/include/CCLabelAtlas.h mode change 100644 => 100755 cocos2dx/include/CCLabelBMFont.h mode change 100644 => 100755 cocos2dx/include/CCLabelTTF.h mode change 100644 => 100755 cocos2dx/include/CCLayer.h mode change 100644 => 100755 cocos2dx/include/CCMenu.h mode change 100644 => 100755 cocos2dx/include/CCMenuItem.h mode change 100644 => 100755 cocos2dx/include/CCMotionStreak.h mode change 100644 => 100755 cocos2dx/include/CCMutableArray.h mode change 100644 => 100755 cocos2dx/include/CCMutableDictionary.h mode change 100644 => 100755 cocos2dx/include/CCNode.h mode change 100644 => 100755 cocos2dx/include/CCObject.h mode change 100644 => 100755 cocos2dx/include/CCParallaxNode.h mode change 100644 => 100755 cocos2dx/include/CCParticleExamples.h mode change 100644 => 100755 cocos2dx/include/CCParticleSystem.h mode change 100644 => 100755 cocos2dx/include/CCParticleSystemPoint.h mode change 100644 => 100755 cocos2dx/include/CCParticleSystemQuad.h mode change 100644 => 100755 cocos2dx/include/CCPointExtension.h mode change 100644 => 100755 cocos2dx/include/CCProgressTimer.h mode change 100644 => 100755 cocos2dx/include/CCProtocols.h mode change 100644 => 100755 cocos2dx/include/CCRenderTexture.h mode change 100644 => 100755 cocos2dx/include/CCRibbon.h mode change 100644 => 100755 cocos2dx/include/CCScene.h mode change 100644 => 100755 cocos2dx/include/CCScheduler.h mode change 100644 => 100755 cocos2dx/include/CCScriptSupport.h mode change 100644 => 100755 cocos2dx/include/CCSet.h mode change 100644 => 100755 cocos2dx/include/CCSprite.h mode change 100644 => 100755 cocos2dx/include/CCSpriteBatchNode.h mode change 100644 => 100755 cocos2dx/include/CCSpriteFrame.h mode change 100644 => 100755 cocos2dx/include/CCSpriteFrameCache.h mode change 100644 => 100755 cocos2dx/include/CCString.h mode change 100644 => 100755 cocos2dx/include/CCTMXLayer.h mode change 100644 => 100755 cocos2dx/include/CCTMXObjectGroup.h mode change 100644 => 100755 cocos2dx/include/CCTMXTiledMap.h mode change 100644 => 100755 cocos2dx/include/CCTMXXMLParser.h mode change 100644 => 100755 cocos2dx/include/CCTextFieldTTF.h mode change 100644 => 100755 cocos2dx/include/CCTexture2D.h mode change 100644 => 100755 cocos2dx/include/CCTextureAtlas.h mode change 100644 => 100755 cocos2dx/include/CCTextureCache.h mode change 100644 => 100755 cocos2dx/include/CCTileMapAtlas.h mode change 100644 => 100755 cocos2dx/include/CCTouch.h mode change 100644 => 100755 cocos2dx/include/CCTouchDelegateProtocol.h mode change 100644 => 100755 cocos2dx/include/CCTouchDispatcher.h mode change 100644 => 100755 cocos2dx/include/CCTouchHandler.h mode change 100644 => 100755 cocos2dx/include/CCTransition.h mode change 100644 => 100755 cocos2dx/include/CCTransitionPageTurn.h mode change 100644 => 100755 cocos2dx/include/CCTransitionRadial.h mode change 100644 => 100755 cocos2dx/include/CCUserDefault.h mode change 100644 => 100755 cocos2dx/include/CCZone.h mode change 100644 => 100755 cocos2dx/include/ccConfig.h mode change 100644 => 100755 cocos2dx/include/ccMacros.h mode change 100644 => 100755 cocos2dx/include/ccTypes.h mode change 100644 => 100755 cocos2dx/include/cocos2d.h mode change 100644 => 100755 cocos2dx/include/selector_protocol.h diff --git a/CocosDenshion/Linux/FmodAudioPlayer.cpp b/CocosDenshion/Linux/FmodAudioPlayer.cpp index 25fe17768a..808689a5c6 100644 --- a/CocosDenshion/Linux/FmodAudioPlayer.cpp +++ b/CocosDenshion/Linux/FmodAudioPlayer.cpp @@ -29,6 +29,10 @@ void ERRCHECK(FMOD_RESULT result) { FmodAudioPlayer::FmodAudioPlayer() : pMusic(0), pBGMChannel(0), iSoundChannelCount(0) { + init(); +} + +void FmodAudioPlayer::init(){ //init FMOD_RESULT result; FMOD::ChannelGroup *masterChannelGroup; @@ -74,9 +78,16 @@ void FmodAudioPlayer::close() { pMusic = 0; } - result = pChannelGroup->stop(); + result = pChannelGroup->release(); ERRCHECK(result); sMusicPath.clear(); + + result = pSystem->close(); + ERRCHECK(result); + result = pSystem->release(); + ERRCHECK(result); + + init(); } FmodAudioPlayer::~FmodAudioPlayer() { @@ -160,7 +171,7 @@ void FmodAudioPlayer::stopBackgroundMusic(bool bReleaseData) { FMOD_RESULT result; pSystem->update(); - if (pBGMChannel==NULL||pMusic==NULL){ + if (pBGMChannel == NULL || pMusic == NULL) { return; } if (bReleaseData) { diff --git a/CocosDenshion/Linux/FmodAudioPlayer.h b/CocosDenshion/Linux/FmodAudioPlayer.h index 2c04422e9f..13e86f3afb 100644 --- a/CocosDenshion/Linux/FmodAudioPlayer.h +++ b/CocosDenshion/Linux/FmodAudioPlayer.h @@ -28,6 +28,8 @@ public: virtual void close(); + + /** @brief Preload background music @param pszFilePath The path of the background music file,or the FileName of T_SoundResInfo @@ -121,6 +123,8 @@ public: virtual void unloadEffect(const char* pszFilePath); private: + + void init(); map mapEffectSound; map mapEffectSoundChannel; diff --git a/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id b/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id index dedf7d4933..e221f421f8 100644 --- a/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id +++ b/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id @@ -1 +1 @@ -453094a6d3170f8ea16f0bcd4c723a8221fd0d01 \ No newline at end of file +78435769b6dc52e742295817bc2ba43400432cfd \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/Classes/subdir.mk b/HelloCocos2dx/AndroidDebug/Classes/subdir.mk index dc8e6cdc1f..6533054a66 100644 --- a/HelloCocos2dx/AndroidDebug/Classes/subdir.mk +++ b/HelloCocos2dx/AndroidDebug/Classes/subdir.mk @@ -20,7 +20,7 @@ CPP_DEPS += \ Classes/%.o: ../Classes/%.cpp @echo 'Building file: $<' @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" @echo 'Finished building: $<' @echo ' ' diff --git a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d index 9e33e995ab..84169efede 100644 --- a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d +++ b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d @@ -1,6 +1,6 @@ android/jni/helloworld/main.d android/jni/helloworld/main.o: \ ../android/jni/helloworld/main.cpp \ - /home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes/AppDelegate.h \ + /home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes/AppDelegate.h \ /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ @@ -115,7 +115,7 @@ android/jni/helloworld/main.d android/jni/helloworld/main.o: \ /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h -/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes/AppDelegate.h: +/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes/AppDelegate.h: /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: diff --git a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id index 1009cfa0d4..6b303311f2 100644 --- a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id +++ b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id @@ -1 +1 @@ -e13ea8d34c5243fe0c4411413cd8754cb17d37a9 \ No newline at end of file +4330544731a84b2e6d0a8fe9da5f26919e09c19f \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk index f0040eed34..60ec2a8fbb 100644 --- a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk +++ b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk @@ -17,7 +17,7 @@ CPP_DEPS += \ android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp @echo 'Building file: $<' @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" @echo 'Finished building: $<' @echo ' ' diff --git a/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id b/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id index ddf09b9856..6e1f1db672 100644 --- a/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id +++ b/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id @@ -1 +1 @@ -3a08a36529cd9ddf587bf5523658debe8bd7a6bc \ No newline at end of file +ece2ba6a510b124dba424cd549570d05ad8482ed \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/makefile b/HelloCocos2dx/AndroidDebug/makefile index 65f752e675..bfe085f019 100644 --- a/HelloCocos2dx/AndroidDebug/makefile +++ b/HelloCocos2dx/AndroidDebug/makefile @@ -45,7 +45,7 @@ all: libHelloCocos2dx.so libHelloCocos2dx.so: $(OBJS) $(USER_OBJS) @echo 'Building target: $@' @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/cocos2dx/AndroidDebug" -shared -o "libHelloCocos2dx.so" $(OBJS) $(USER_OBJS) $(LIBS) + arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/lib/android/Debug/" -shared -o "libHelloCocos2dx.so" $(OBJS) $(USER_OBJS) $(LIBS) @echo 'Finished building target: $@' @echo ' ' $(MAKE) --no-print-directory post-build diff --git a/HelloCocos2dx/AndroidDebug/objects.mk b/HelloCocos2dx/AndroidDebug/objects.mk index 1eff89eb05..028c82493e 100644 --- a/HelloCocos2dx/AndroidDebug/objects.mk +++ b/HelloCocos2dx/AndroidDebug/objects.mk @@ -4,5 +4,5 @@ USER_OBJS := -LIBS := -lcocos2d +LIBS := -lcocos2d -lcocosdenshion diff --git a/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id b/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id index c174400d5b..3dd60254cf 100644 --- a/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id +++ b/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id @@ -1 +1 @@ -7832bb4b575305a3d11a72dc82b080d83dc4ba7b \ No newline at end of file +6860430294917685d44747b03858b35bda1066bf \ No newline at end of file diff --git a/HelloCocos2dx/AndroidRelease/Classes/subdir.mk b/HelloCocos2dx/AndroidRelease/Classes/subdir.mk index dc8e6cdc1f..6533054a66 100644 --- a/HelloCocos2dx/AndroidRelease/Classes/subdir.mk +++ b/HelloCocos2dx/AndroidRelease/Classes/subdir.mk @@ -20,7 +20,7 @@ CPP_DEPS += \ Classes/%.o: ../Classes/%.cpp @echo 'Building file: $<' @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" @echo 'Finished building: $<' @echo ' ' diff --git a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d index 9e33e995ab..84169efede 100644 --- a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d +++ b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d @@ -1,6 +1,6 @@ android/jni/helloworld/main.d android/jni/helloworld/main.o: \ ../android/jni/helloworld/main.cpp \ - /home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes/AppDelegate.h \ + /home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes/AppDelegate.h \ /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ @@ -115,7 +115,7 @@ android/jni/helloworld/main.d android/jni/helloworld/main.o: \ /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h -/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes/AppDelegate.h: +/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes/AppDelegate.h: /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: diff --git a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id index 553d6b7115..99e3a305d6 100644 --- a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id +++ b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id @@ -1 +1 @@ -2781efdadfac8b455c12ac2a887b9e0adcffc538 \ No newline at end of file +78500e568b8ec72bfff2e753dd20a77408a2d9a8 \ No newline at end of file diff --git a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk index f0040eed34..60ec2a8fbb 100644 --- a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk +++ b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk @@ -17,7 +17,7 @@ CPP_DEPS += \ android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp @echo 'Building file: $<' @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/Documents/workspace/orxworkspace/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" @echo 'Finished building: $<' @echo ' ' diff --git a/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id b/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id index d953b10836..a6f32bcab2 100644 --- a/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id +++ b/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id @@ -1 +1 @@ -ea6261944b22de9c415a49482a137a4d93d0f07a \ No newline at end of file +b2f6fa8c671555d49d1e36f4efb60f783e546b76 \ No newline at end of file diff --git a/HelloCocos2dx/AndroidRelease/makefile b/HelloCocos2dx/AndroidRelease/makefile index 1204013f5b..54b9a1cc7b 100644 --- a/HelloCocos2dx/AndroidRelease/makefile +++ b/HelloCocos2dx/AndroidRelease/makefile @@ -45,7 +45,7 @@ all: libHelloCocos2dx.so libHelloCocos2dx.so: $(OBJS) $(USER_OBJS) @echo 'Building target: $@' @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/cocos2dx/AndroidDebug" -shared -o "libHelloCocos2dx.so" $(OBJS) $(USER_OBJS) $(LIBS) + arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/lib/android/Release/" -shared -o "libHelloCocos2dx.so" $(OBJS) $(USER_OBJS) $(LIBS) @echo 'Finished building target: $@' @echo ' ' $(MAKE) --no-print-directory post-build diff --git a/HelloCocos2dx/AndroidRelease/objects.mk b/HelloCocos2dx/AndroidRelease/objects.mk index 1eff89eb05..028c82493e 100644 --- a/HelloCocos2dx/AndroidRelease/objects.mk +++ b/HelloCocos2dx/AndroidRelease/objects.mk @@ -4,5 +4,5 @@ USER_OBJS := -LIBS := -lcocos2d +LIBS := -lcocos2d -lcocosdenshion diff --git a/HelloWorld/AppDelegate.cpp b/HelloWorld/AppDelegate.cpp deleted file mode 100644 index 80fd446ce8..0000000000 --- a/HelloWorld/AppDelegate.cpp +++ /dev/null @@ -1,115 +0,0 @@ -#include "AppDelegate.h" - -#include "cocos2d.h" -#include "HelloWorldScene.h" - -#include "CCEGLView.h" - -USING_NS_CC; - -AppDelegate::AppDelegate() { - -} - -AppDelegate::~AppDelegate() { -} - -bool AppDelegate::initInstance() { - bool bRet = false; - do { -#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) - - // Initialize OpenGLView instance, that release by CCDirector when application terminate. - // The HelloWorld is designed as HVGA. - CCEGLView * pMainWnd = new CCEGLView(); - CC_BREAK_IF(! pMainWnd - || ! pMainWnd->Create(TEXT("cocos2d: Hello World"), 480, 320)); - -#endif // CC_PLATFORM_WIN32 -#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) - - // OpenGLView initialized in testsAppDelegate.mm on ios platform, nothing need to do here. - -#endif // CC_PLATFORM_IOS -#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) - - // OpenGLView initialized in HelloWorld/android/jni/helloworld/main.cpp - // the default setting is to create a fullscreen view - // if you want to use auto-scale, please enable view->create(320,480) in main.cpp - // if the resources under '/sdcard" or other writeable path, set it. - // warning: the audio source should in assets/ - // cocos2d::CCFileUtils::setResourcePath("/sdcard"); - -#endif // CC_PLATFORM_ANDROID -#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) - - // Initialize OpenGLView instance, that release by CCDirector when application terminate. - // The HelloWorld is designed as HVGA. - CCEGLView* pMainWnd = new CCEGLView(this); - CC_BREAK_IF(! pMainWnd || ! pMainWnd->Create(320,480, WM_WINDOW_ROTATE_MODE_CW)); - -#ifndef _TRANZDA_VM_ - // on wophone emulator, we copy resources files to Work7/NEWPLUS/TDA_DATA/Data/ folder instead of zip file - cocos2d::CCFileUtils::setResource("HelloWorld.zip"); -#endif - -#endif // CC_PLATFORM_WOPHONE -#if (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) - // MaxAksenov said it's NOT a very elegant solution. I agree, haha - CCDirector::sharedDirector()->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); -#endif -#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) - - // Initialize OpenGLView instance, that release by CCDirector when application terminate. - // The HelloWorld is designed as HVGA. - CCEGLView * pMainWnd = new CCEGLView(); - CC_BREAK_IF(! pMainWnd - || ! pMainWnd->Create("cocos2d: Hello World", 800, 480,480, 320)); - -#endif // CC_PLATFORM_LINUX - bRet = true; - } while (0); - return bRet; -} - -bool AppDelegate::applicationDidFinishLaunching() { - // initialize director - CCDirector *pDirector = CCDirector::sharedDirector(); - - pDirector->setOpenGLView(&CCEGLView::sharedOpenGLView()); - - // enable High Resource Mode(2x, such as iphone4) and maintains low resource on other devices. -// pDirector->enableRetinaDisplay(true); - - // turn on display FPS - pDirector->setDisplayFPS(true); - - // pDirector->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); - - // set FPS. the default value is 1.0/60 if you don't call this - pDirector->setAnimationInterval(1.0 / 60); - - // create a scene. it's an autorelease object - CCScene *pScene = HelloWorld::scene(); - - // run - pDirector->runWithScene(pScene); - - return true; -} - -// This function will be called when the app is inactive. When comes a phone call,it's be invoked too -void AppDelegate::applicationDidEnterBackground() { - CCDirector::sharedDirector()->pause(); - - // if you use SimpleAudioEngine, it must be pause - // SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); -} - -// this function will be called when the app is active again -void AppDelegate::applicationWillEnterForeground() { - CCDirector::sharedDirector()->resume(); - - // if you use SimpleAudioEngine, it must resume here - // SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); -} diff --git a/HelloWorld/AppDelegate.h b/HelloWorld/AppDelegate.h deleted file mode 100644 index 6a7b537389..0000000000 --- a/HelloWorld/AppDelegate.h +++ /dev/null @@ -1,43 +0,0 @@ -#ifndef _APP_DELEGATE_H_ -#define _APP_DELEGATE_H_ - -#include "CCApplication.h" - -/** -@brief The cocos2d Application. - -The reason for implement as private inheritance is to hide some interface call by CCDirector. -*/ -class AppDelegate : private cocos2d::CCApplication -{ -public: - AppDelegate(); - virtual ~AppDelegate(); - - /** - @brief Implement for initialize OpenGL instance, set source path, etc... - */ - virtual bool initInstance(); - - /** - @brief Implement CCDirector and CCScene init code here. - @return true Initialize success, app continue. - @return false Initialize failed, app terminate. - */ - virtual bool applicationDidFinishLaunching(); - - /** - @brief The function be called when the application enter background - @param the pointer of the application - */ - virtual void applicationDidEnterBackground(); - - /** - @brief The function be called when the application enter foreground - @param the pointer of the application - */ - virtual void applicationWillEnterForeground(); -}; - -#endif // _APP_DELEGATE_H_ - diff --git a/HelloWorld/HelloWorldScene.cpp b/HelloWorld/HelloWorldScene.cpp deleted file mode 100644 index 794823e80f..0000000000 --- a/HelloWorld/HelloWorldScene.cpp +++ /dev/null @@ -1,82 +0,0 @@ -#include "HelloWorldScene.h" - -USING_NS_CC; - -CCScene* HelloWorld::scene() -{ - // 'scene' is an autorelease object - CCScene *scene = CCScene::node(); - - // 'layer' is an autorelease object - HelloWorld *layer = HelloWorld::node(); - - // add layer as a child to scene - scene->addChild(layer); - - // return the scene - return scene; -} - -// on "init" you need to initialize your instance -bool HelloWorld::init() -{ - ////////////////////////////// - // 1. super init first - if ( !CCLayer::init() ) - { - return false; - } - - ///////////////////////////// - // 2. add a menu item with "X" image, which is clicked to quit the program - // you may modify it. - - // add a "close" icon to exit the progress. it's an autorelease object - CCMenuItemImage *pCloseItem = CCMenuItemImage::itemFromNormalImage( - "CloseNormal.png", - "CloseSelected.png", - this, - menu_selector(HelloWorld::menuCloseCallback) ); - pCloseItem->setPosition( ccp(CCDirector::sharedDirector()->getWinSize().width - 20, 20) ); - - // create menu, it's an autorelease object - CCMenu* pMenu = CCMenu::menuWithItems(pCloseItem, NULL); - pMenu->setPosition( CCPointZero ); - this->addChild(pMenu, 1); - - ///////////////////////////// - // 3. add your codes below... - - // add a label shows "Hello World" - // create and initialize a label - CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello\nWorld", CCSize(0,0), CCTextAlignmentCenter,"Materhorn.", 34); - - // ask director the window size - CCSize size = CCDirector::sharedDirector()->getWinSize(); - - // position the label on the center of the screen - pLabel->setPosition( ccp(size.width / 2, size.height - 200) ); - - // add the label as a child to this layer - this->addChild(pLabel, 1); - - // add "HelloWorld" splash screen" - CCSprite* pSprite = CCSprite::spriteWithFile("HelloWorld.png"); - - // position the sprite on the center of the screen - pSprite->setPosition( ccp(size.width/2, size.height/2) ); - - // add the sprite as a child to this layer - this->addChild(pSprite, 0); - - return true; -} - -void HelloWorld::menuCloseCallback(CCObject* pSender) -{ - CCDirector::sharedDirector()->end(); - -#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) - exit(0); -#endif -} diff --git a/HelloWorld/HelloWorldScene.h b/HelloWorld/HelloWorldScene.h deleted file mode 100644 index 274a176df0..0000000000 --- a/HelloWorld/HelloWorldScene.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef __HELLOWORLD_SCENE_H__ -#define __HELLOWORLD_SCENE_H__ - -#include "cocos2d.h" - -class HelloWorld : public cocos2d::CCLayer -{ -public: - // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone - virtual bool init(); - - // there's no 'id' in cpp, so we recommand to return the exactly class pointer - static cocos2d::CCScene* scene(); - - // a selector callback - virtual void menuCloseCallback(CCObject* pSender); - - // implement the "static node()" method manually - LAYER_NODE_FUNC(HelloWorld); -}; - -#endif // __HELLOWORLD_SCENE_H__ diff --git a/cocos2dx/.cproject b/cocos2dx/.cproject index 19aab4f7fa..3058658ec4 100644 --- a/cocos2dx/.cproject +++ b/cocos2dx/.cproject @@ -27,16 +27,18 @@ - + - + @@ -85,7 +91,7 @@ - + @@ -115,16 +121,18 @@ - + - + @@ -172,7 +184,7 @@ - + @@ -268,7 +280,7 @@ - + @@ -342,11 +354,12 @@

*/ + /* basic_types */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* */ + /* FT_Int16 */ + /* */ + /* */ + /* A typedef for a 16bit signed integer type. */ + /* */ + typedef signed short FT_Int16; + + + /*************************************************************************/ + /* */ + /* */ + /* FT_UInt16 */ + /* */ + /* */ + /* A typedef for a 16bit unsigned integer type. */ + /* */ + typedef unsigned short FT_UInt16; + + /* */ + + + /* this #if 0 ... #endif clause is for documentation purposes */ +#if 0 + + /*************************************************************************/ + /* */ + /* */ + /* FT_Int32 */ + /* */ + /* */ + /* A typedef for a 32bit signed integer type. The size depends on */ + /* the configuration. */ + /* */ + typedef signed XXX FT_Int32; + + + /*************************************************************************/ + /* */ + /* */ + /* FT_UInt32 */ + /* */ + /* A typedef for a 32bit unsigned integer type. The size depends on */ + /* the configuration. */ + /* */ + typedef unsigned XXX FT_UInt32; + + /* */ + +#endif + +#if FT_SIZEOF_INT == (32 / FT_CHAR_BIT) + + typedef signed int FT_Int32; + typedef unsigned int FT_UInt32; + +#elif FT_SIZEOF_LONG == (32 / FT_CHAR_BIT) + + typedef signed long FT_Int32; + typedef unsigned long FT_UInt32; + +#else +#error "no 32bit type found -- please check your configuration files" +#endif + + + /* look up an integer type that is at least 32 bits */ +#if FT_SIZEOF_INT >= (32 / FT_CHAR_BIT) + + typedef int FT_Fast; + typedef unsigned int FT_UFast; + +#elif FT_SIZEOF_LONG >= (32 / FT_CHAR_BIT) + + typedef long FT_Fast; + typedef unsigned long FT_UFast; + +#endif + + + /* determine whether we have a 64-bit int type for platforms without */ + /* Autoconf */ +#if FT_SIZEOF_LONG == (64 / FT_CHAR_BIT) + + /* FT_LONG64 must be defined if a 64-bit type is available */ +#define FT_LONG64 +#define FT_INT64 long + +#elif defined( _MSC_VER ) && _MSC_VER >= 900 /* Visual C++ (and Intel C++) */ + + /* this compiler provides the __int64 type */ +#define FT_LONG64 +#define FT_INT64 __int64 + +#elif defined( __BORLANDC__ ) /* Borland C++ */ + + /* XXXX: We should probably check the value of __BORLANDC__ in order */ + /* to test the compiler version. */ + + /* this compiler provides the __int64 type */ +#define FT_LONG64 +#define FT_INT64 __int64 + +#elif defined( __WATCOMC__ ) /* Watcom C++ */ + + /* Watcom doesn't provide 64-bit data types */ + +#elif defined( __MWERKS__ ) /* Metrowerks CodeWarrior */ + +#define FT_LONG64 +#define FT_INT64 long long int + +#elif defined( __GNUC__ ) + + /* GCC provides the `long long' type */ +#define FT_LONG64 +#define FT_INT64 long long int + +#endif /* FT_SIZEOF_LONG == (64 / FT_CHAR_BIT) */ + + + /*************************************************************************/ + /* */ + /* A 64-bit data type will create compilation problems if you compile */ + /* in strict ANSI mode. To avoid them, we disable its use if __STDC__ */ + /* is defined. You can however ignore this rule by defining the */ + /* FT_CONFIG_OPTION_FORCE_INT64 configuration macro. */ + /* */ +#if defined( FT_LONG64 ) && !defined( FT_CONFIG_OPTION_FORCE_INT64 ) + +#ifdef __STDC__ + + /* undefine the 64-bit macros in strict ANSI compilation mode */ +#undef FT_LONG64 +#undef FT_INT64 + +#endif /* __STDC__ */ + +#endif /* FT_LONG64 && !FT_CONFIG_OPTION_FORCE_INT64 */ + + +#define FT_BEGIN_STMNT do { +#define FT_END_STMNT } while ( 0 ) +#define FT_DUMMY_STMNT FT_BEGIN_STMNT FT_END_STMNT + + +#ifndef FT_CONFIG_OPTION_NO_ASSEMBLER + /* Provide assembler fragments for performance-critical functions. */ + /* These must be defined `static __inline__' with GCC. */ + +#if defined( __CC_ARM ) || defined( __ARMCC__ ) /* RVCT */ +#define FT_MULFIX_ASSEMBLER FT_MulFix_arm + + /* documentation is in freetype.h */ + + static __inline FT_Int32 + FT_MulFix_arm( FT_Int32 a, + FT_Int32 b ) + { + register FT_Int32 t, t2; + + + __asm + { + smull t2, t, b, a /* (lo=t2,hi=t) = a*b */ + mov a, t, asr #31 /* a = (hi >> 31) */ + add a, a, #0x8000 /* a += 0x8000 */ + adds t2, t2, a /* t2 += a */ + adc t, t, #0 /* t += carry */ + mov a, t2, lsr #16 /* a = t2 >> 16 */ + orr a, a, t, lsl #16 /* a |= t << 16 */ + } + return a; + } + +#endif /* __CC_ARM || __ARMCC__ */ + + +#ifdef __GNUC__ + +#if defined( __arm__ ) && !defined( __thumb__ ) && \ + !( defined( __CC_ARM ) || defined( __ARMCC__ ) ) +#define FT_MULFIX_ASSEMBLER FT_MulFix_arm + + /* documentation is in freetype.h */ + + static __inline__ FT_Int32 + FT_MulFix_arm( FT_Int32 a, + FT_Int32 b ) + { + register FT_Int32 t, t2; + + + __asm__ __volatile__ ( + "smull %1, %2, %4, %3\n\t" /* (lo=%1,hi=%2) = a*b */ + "mov %0, %2, asr #31\n\t" /* %0 = (hi >> 31) */ + "add %0, %0, #0x8000\n\t" /* %0 += 0x8000 */ + "adds %1, %1, %0\n\t" /* %1 += %0 */ + "adc %2, %2, #0\n\t" /* %2 += carry */ + "mov %0, %1, lsr #16\n\t" /* %0 = %1 >> 16 */ + "orr %0, %0, %2, lsl #16\n\t" /* %0 |= %2 << 16 */ + : "=r"(a), "=&r"(t2), "=&r"(t) + : "r"(a), "r"(b) ); + return a; + } + +#endif /* __arm__ && !__thumb__ && !( __CC_ARM || __ARMCC__ ) */ + +#if defined( __i386__ ) +#define FT_MULFIX_ASSEMBLER FT_MulFix_i386 + + /* documentation is in freetype.h */ + + static __inline__ FT_Int32 + FT_MulFix_i386( FT_Int32 a, + FT_Int32 b ) + { + register FT_Int32 result; + + + __asm__ __volatile__ ( + "imul %%edx\n" + "movl %%edx, %%ecx\n" + "sarl $31, %%ecx\n" + "addl $0x8000, %%ecx\n" + "addl %%ecx, %%eax\n" + "adcl $0, %%edx\n" + "shrl $16, %%eax\n" + "shll $16, %%edx\n" + "addl %%edx, %%eax\n" + : "=a"(result), "=d"(b) + : "a"(a), "d"(b) + : "%ecx", "cc" ); + return result; + } + +#endif /* i386 */ + +#endif /* __GNUC__ */ + + +#ifdef _MSC_VER /* Visual C++ */ + +#ifdef _M_IX86 + +#define FT_MULFIX_ASSEMBLER FT_MulFix_i386 + + /* documentation is in freetype.h */ + + static __inline FT_Int32 + FT_MulFix_i386( FT_Int32 a, + FT_Int32 b ) + { + register FT_Int32 result; + + __asm + { + mov eax, a + mov edx, b + imul edx + mov ecx, edx + sar ecx, 31 + add ecx, 8000h + add eax, ecx + adc edx, 0 + shr eax, 16 + shl edx, 16 + add eax, edx + mov result, eax + } + return result; + } + +#endif /* _M_IX86 */ + +#endif /* _MSC_VER */ + +#endif /* !FT_CONFIG_OPTION_NO_ASSEMBLER */ + + +#ifdef FT_CONFIG_OPTION_INLINE_MULFIX +#ifdef FT_MULFIX_ASSEMBLER +#define FT_MULFIX_INLINED FT_MULFIX_ASSEMBLER +#endif +#endif + + +#ifdef FT_MAKE_OPTION_SINGLE_OBJECT + +#define FT_LOCAL( x ) static x +#define FT_LOCAL_DEF( x ) static x + +#else + +#ifdef __cplusplus +#define FT_LOCAL( x ) extern "C" x +#define FT_LOCAL_DEF( x ) extern "C" x +#else +#define FT_LOCAL( x ) extern x +#define FT_LOCAL_DEF( x ) x +#endif + +#endif /* FT_MAKE_OPTION_SINGLE_OBJECT */ + + +#ifndef FT_BASE + +#ifdef __cplusplus +#define FT_BASE( x ) extern "C" x +#else +#define FT_BASE( x ) extern x +#endif + +#endif /* !FT_BASE */ + + +#ifndef FT_BASE_DEF + +#ifdef __cplusplus +#define FT_BASE_DEF( x ) x +#else +#define FT_BASE_DEF( x ) x +#endif + +#endif /* !FT_BASE_DEF */ + + +#ifndef FT_EXPORT + +#ifdef __cplusplus +#define FT_EXPORT( x ) extern "C" x +#else +#define FT_EXPORT( x ) extern x +#endif + +#endif /* !FT_EXPORT */ + + +#ifndef FT_EXPORT_DEF + +#ifdef __cplusplus +#define FT_EXPORT_DEF( x ) extern "C" x +#else +#define FT_EXPORT_DEF( x ) extern x +#endif + +#endif /* !FT_EXPORT_DEF */ + + +#ifndef FT_EXPORT_VAR + +#ifdef __cplusplus +#define FT_EXPORT_VAR( x ) extern "C" x +#else +#define FT_EXPORT_VAR( x ) extern x +#endif + +#endif /* !FT_EXPORT_VAR */ + + /* The following macros are needed to compile the library with a */ + /* C++ compiler and with 16bit compilers. */ + /* */ + + /* This is special. Within C++, you must specify `extern "C"' for */ + /* functions which are used via function pointers, and you also */ + /* must do that for structures which contain function pointers to */ + /* assure C linkage -- it's not possible to have (local) anonymous */ + /* functions which are accessed by (global) function pointers. */ + /* */ + /* */ + /* FT_CALLBACK_DEF is used to _define_ a callback function. */ + /* */ + /* FT_CALLBACK_TABLE is used to _declare_ a constant variable that */ + /* contains pointers to callback functions. */ + /* */ + /* FT_CALLBACK_TABLE_DEF is used to _define_ a constant variable */ + /* that contains pointers to callback functions. */ + /* */ + /* */ + /* Some 16bit compilers have to redefine these macros to insert */ + /* the infamous `_cdecl' or `__fastcall' declarations. */ + /* */ +#ifndef FT_CALLBACK_DEF +#ifdef __cplusplus +#define FT_CALLBACK_DEF( x ) extern "C" x +#else +#define FT_CALLBACK_DEF( x ) static x +#endif +#endif /* FT_CALLBACK_DEF */ + +#ifndef FT_CALLBACK_TABLE +#ifdef __cplusplus +#define FT_CALLBACK_TABLE extern "C" +#define FT_CALLBACK_TABLE_DEF extern "C" +#else +#define FT_CALLBACK_TABLE extern +#define FT_CALLBACK_TABLE_DEF /* nothing */ +#endif +#endif /* FT_CALLBACK_TABLE */ + + +FT_END_HEADER + + +#endif /* __FTCONFIG_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftheader.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftheader.h new file mode 100644 index 0000000000..2a7b8c4e0d --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftheader.h @@ -0,0 +1,793 @@ +/***************************************************************************/ +/* */ +/* ftheader.h */ +/* */ +/* Build macros of the FreeType 2 library. */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + +#ifndef __FT_HEADER_H__ +#define __FT_HEADER_H__ + + + /*@***********************************************************************/ + /* */ + /* */ + /* FT_BEGIN_HEADER */ + /* */ + /* */ + /* This macro is used in association with @FT_END_HEADER in header */ + /* files to ensure that the declarations within are properly */ + /* encapsulated in an `extern "C" { .. }' block when included from a */ + /* C++ compiler. */ + /* */ +#ifdef __cplusplus +#define FT_BEGIN_HEADER extern "C" { +#else +#define FT_BEGIN_HEADER /* nothing */ +#endif + + + /*@***********************************************************************/ + /* */ + /* */ + /* FT_END_HEADER */ + /* */ + /* */ + /* This macro is used in association with @FT_BEGIN_HEADER in header */ + /* files to ensure that the declarations within are properly */ + /* encapsulated in an `extern "C" { .. }' block when included from a */ + /* C++ compiler. */ + /* */ +#ifdef __cplusplus +#define FT_END_HEADER } +#else +#define FT_END_HEADER /* nothing */ +#endif + + + /*************************************************************************/ + /* */ + /* Aliases for the FreeType 2 public and configuration files. */ + /* */ + /*************************************************************************/ + + /*************************************************************************/ + /* */ + /*
*/ + /* header_file_macros */ + /* */ + /* */ + /* Header File Macros */ + /* */ + /* <Abstract> */ + /* Macro definitions used to #include specific header files. */ + /* */ + /* <Description> */ + /* The following macros are defined to the name of specific */ + /* FreeType~2 header files. They can be used directly in #include */ + /* statements as in: */ + /* */ + /* { */ + /* #include FT_FREETYPE_H */ + /* #include FT_MULTIPLE_MASTERS_H */ + /* #include FT_GLYPH_H */ + /* } */ + /* */ + /* There are several reasons why we are now using macros to name */ + /* public header files. The first one is that such macros are not */ + /* limited to the infamous 8.3~naming rule required by DOS (and */ + /* `FT_MULTIPLE_MASTERS_H' is a lot more meaningful than `ftmm.h'). */ + /* */ + /* The second reason is that it allows for more flexibility in the */ + /* way FreeType~2 is installed on a given system. */ + /* */ + /*************************************************************************/ + + + /* configuration files */ + + /************************************************************************* + * + * @macro: + * FT_CONFIG_CONFIG_H + * + * @description: + * A macro used in #include statements to name the file containing + * FreeType~2 configuration data. + * + */ +#ifndef FT_CONFIG_CONFIG_H +#define FT_CONFIG_CONFIG_H <freetype/config/ftconfig.h> +#endif + + + /************************************************************************* + * + * @macro: + * FT_CONFIG_STANDARD_LIBRARY_H + * + * @description: + * A macro used in #include statements to name the file containing + * FreeType~2 interface to the standard C library functions. + * + */ +#ifndef FT_CONFIG_STANDARD_LIBRARY_H +#define FT_CONFIG_STANDARD_LIBRARY_H <freetype/config/ftstdlib.h> +#endif + + + /************************************************************************* + * + * @macro: + * FT_CONFIG_OPTIONS_H + * + * @description: + * A macro used in #include statements to name the file containing + * FreeType~2 project-specific configuration options. + * + */ +#ifndef FT_CONFIG_OPTIONS_H +#define FT_CONFIG_OPTIONS_H <freetype/config/ftoption.h> +#endif + + + /************************************************************************* + * + * @macro: + * FT_CONFIG_MODULES_H + * + * @description: + * A macro used in #include statements to name the file containing the + * list of FreeType~2 modules that are statically linked to new library + * instances in @FT_Init_FreeType. + * + */ +#ifndef FT_CONFIG_MODULES_H +#define FT_CONFIG_MODULES_H <freetype/config/ftmodule.h> +#endif + + /* */ + + /* public headers */ + + /************************************************************************* + * + * @macro: + * FT_FREETYPE_H + * + * @description: + * A macro used in #include statements to name the file containing the + * base FreeType~2 API. + * + */ +#define FT_FREETYPE_H <freetype/freetype.h> + + + /************************************************************************* + * + * @macro: + * FT_ERRORS_H + * + * @description: + * A macro used in #include statements to name the file containing the + * list of FreeType~2 error codes (and messages). + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_ERRORS_H <freetype/fterrors.h> + + + /************************************************************************* + * + * @macro: + * FT_MODULE_ERRORS_H + * + * @description: + * A macro used in #include statements to name the file containing the + * list of FreeType~2 module error offsets (and messages). + * + */ +#define FT_MODULE_ERRORS_H <freetype/ftmoderr.h> + + + /************************************************************************* + * + * @macro: + * FT_SYSTEM_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 interface to low-level operations (i.e., memory management + * and stream i/o). + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_SYSTEM_H <freetype/ftsystem.h> + + + /************************************************************************* + * + * @macro: + * FT_IMAGE_H + * + * @description: + * A macro used in #include statements to name the file containing type + * definitions related to glyph images (i.e., bitmaps, outlines, + * scan-converter parameters). + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_IMAGE_H <freetype/ftimage.h> + + + /************************************************************************* + * + * @macro: + * FT_TYPES_H + * + * @description: + * A macro used in #include statements to name the file containing the + * basic data types defined by FreeType~2. + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_TYPES_H <freetype/fttypes.h> + + + /************************************************************************* + * + * @macro: + * FT_LIST_H + * + * @description: + * A macro used in #include statements to name the file containing the + * list management API of FreeType~2. + * + * (Most applications will never need to include this file.) + * + */ +#define FT_LIST_H <freetype/ftlist.h> + + + /************************************************************************* + * + * @macro: + * FT_OUTLINE_H + * + * @description: + * A macro used in #include statements to name the file containing the + * scalable outline management API of FreeType~2. + * + */ +#define FT_OUTLINE_H <freetype/ftoutln.h> + + + /************************************************************************* + * + * @macro: + * FT_SIZES_H + * + * @description: + * A macro used in #include statements to name the file containing the + * API which manages multiple @FT_Size objects per face. + * + */ +#define FT_SIZES_H <freetype/ftsizes.h> + + + /************************************************************************* + * + * @macro: + * FT_MODULE_H + * + * @description: + * A macro used in #include statements to name the file containing the + * module management API of FreeType~2. + * + */ +#define FT_MODULE_H <freetype/ftmodapi.h> + + + /************************************************************************* + * + * @macro: + * FT_RENDER_H + * + * @description: + * A macro used in #include statements to name the file containing the + * renderer module management API of FreeType~2. + * + */ +#define FT_RENDER_H <freetype/ftrender.h> + + + /************************************************************************* + * + * @macro: + * FT_TYPE1_TABLES_H + * + * @description: + * A macro used in #include statements to name the file containing the + * types and API specific to the Type~1 format. + * + */ +#define FT_TYPE1_TABLES_H <freetype/t1tables.h> + + + /************************************************************************* + * + * @macro: + * FT_TRUETYPE_IDS_H + * + * @description: + * A macro used in #include statements to name the file containing the + * enumeration values which identify name strings, languages, encodings, + * etc. This file really contains a _large_ set of constant macro + * definitions, taken from the TrueType and OpenType specifications. + * + */ +#define FT_TRUETYPE_IDS_H <freetype/ttnameid.h> + + + /************************************************************************* + * + * @macro: + * FT_TRUETYPE_TABLES_H + * + * @description: + * A macro used in #include statements to name the file containing the + * types and API specific to the TrueType (as well as OpenType) format. + * + */ +#define FT_TRUETYPE_TABLES_H <freetype/tttables.h> + + + /************************************************************************* + * + * @macro: + * FT_TRUETYPE_TAGS_H + * + * @description: + * A macro used in #include statements to name the file containing the + * definitions of TrueType four-byte `tags' which identify blocks in + * SFNT-based font formats (i.e., TrueType and OpenType). + * + */ +#define FT_TRUETYPE_TAGS_H <freetype/tttags.h> + + + /************************************************************************* + * + * @macro: + * FT_BDF_H + * + * @description: + * A macro used in #include statements to name the file containing the + * definitions of an API which accesses BDF-specific strings from a + * face. + * + */ +#define FT_BDF_H <freetype/ftbdf.h> + + + /************************************************************************* + * + * @macro: + * FT_CID_H + * + * @description: + * A macro used in #include statements to name the file containing the + * definitions of an API which access CID font information from a + * face. + * + */ +#define FT_CID_H <freetype/ftcid.h> + + + /************************************************************************* + * + * @macro: + * FT_GZIP_H + * + * @description: + * A macro used in #include statements to name the file containing the + * definitions of an API which supports gzip-compressed files. + * + */ +#define FT_GZIP_H <freetype/ftgzip.h> + + + /************************************************************************* + * + * @macro: + * FT_LZW_H + * + * @description: + * A macro used in #include statements to name the file containing the + * definitions of an API which supports LZW-compressed files. + * + */ +#define FT_LZW_H <freetype/ftlzw.h> + + + /************************************************************************* + * + * @macro: + * FT_BZIP2_H + * + * @description: + * A macro used in #include statements to name the file containing the + * definitions of an API which supports bzip2-compressed files. + * + */ +#define FT_BZIP2_H <freetype/ftbzip2.h> + + + /************************************************************************* + * + * @macro: + * FT_WINFONTS_H + * + * @description: + * A macro used in #include statements to name the file containing the + * definitions of an API which supports Windows FNT files. + * + */ +#define FT_WINFONTS_H <freetype/ftwinfnt.h> + + + /************************************************************************* + * + * @macro: + * FT_GLYPH_H + * + * @description: + * A macro used in #include statements to name the file containing the + * API of the optional glyph management component. + * + */ +#define FT_GLYPH_H <freetype/ftglyph.h> + + + /************************************************************************* + * + * @macro: + * FT_BITMAP_H + * + * @description: + * A macro used in #include statements to name the file containing the + * API of the optional bitmap conversion component. + * + */ +#define FT_BITMAP_H <freetype/ftbitmap.h> + + + /************************************************************************* + * + * @macro: + * FT_BBOX_H + * + * @description: + * A macro used in #include statements to name the file containing the + * API of the optional exact bounding box computation routines. + * + */ +#define FT_BBOX_H <freetype/ftbbox.h> + + + /************************************************************************* + * + * @macro: + * FT_CACHE_H + * + * @description: + * A macro used in #include statements to name the file containing the + * API of the optional FreeType~2 cache sub-system. + * + */ +#define FT_CACHE_H <freetype/ftcache.h> + + + /************************************************************************* + * + * @macro: + * FT_CACHE_IMAGE_H + * + * @description: + * A macro used in #include statements to name the file containing the + * `glyph image' API of the FreeType~2 cache sub-system. + * + * It is used to define a cache for @FT_Glyph elements. You can also + * use the API defined in @FT_CACHE_SMALL_BITMAPS_H if you only need to + * store small glyph bitmaps, as it will use less memory. + * + * This macro is deprecated. Simply include @FT_CACHE_H to have all + * glyph image-related cache declarations. + * + */ +#define FT_CACHE_IMAGE_H FT_CACHE_H + + + /************************************************************************* + * + * @macro: + * FT_CACHE_SMALL_BITMAPS_H + * + * @description: + * A macro used in #include statements to name the file containing the + * `small bitmaps' API of the FreeType~2 cache sub-system. + * + * It is used to define a cache for small glyph bitmaps in a relatively + * memory-efficient way. You can also use the API defined in + * @FT_CACHE_IMAGE_H if you want to cache arbitrary glyph images, + * including scalable outlines. + * + * This macro is deprecated. Simply include @FT_CACHE_H to have all + * small bitmaps-related cache declarations. + * + */ +#define FT_CACHE_SMALL_BITMAPS_H FT_CACHE_H + + + /************************************************************************* + * + * @macro: + * FT_CACHE_CHARMAP_H + * + * @description: + * A macro used in #include statements to name the file containing the + * `charmap' API of the FreeType~2 cache sub-system. + * + * This macro is deprecated. Simply include @FT_CACHE_H to have all + * charmap-based cache declarations. + * + */ +#define FT_CACHE_CHARMAP_H FT_CACHE_H + + + /************************************************************************* + * + * @macro: + * FT_MAC_H + * + * @description: + * A macro used in #include statements to name the file containing the + * Macintosh-specific FreeType~2 API. The latter is used to access + * fonts embedded in resource forks. + * + * This header file must be explicitly included by client applications + * compiled on the Mac (note that the base API still works though). + * + */ +#define FT_MAC_H <freetype/ftmac.h> + + + /************************************************************************* + * + * @macro: + * FT_MULTIPLE_MASTERS_H + * + * @description: + * A macro used in #include statements to name the file containing the + * optional multiple-masters management API of FreeType~2. + * + */ +#define FT_MULTIPLE_MASTERS_H <freetype/ftmm.h> + + + /************************************************************************* + * + * @macro: + * FT_SFNT_NAMES_H + * + * @description: + * A macro used in #include statements to name the file containing the + * optional FreeType~2 API which accesses embedded `name' strings in + * SFNT-based font formats (i.e., TrueType and OpenType). + * + */ +#define FT_SFNT_NAMES_H <freetype/ftsnames.h> + + + /************************************************************************* + * + * @macro: + * FT_OPENTYPE_VALIDATE_H + * + * @description: + * A macro used in #include statements to name the file containing the + * optional FreeType~2 API which validates OpenType tables (BASE, GDEF, + * GPOS, GSUB, JSTF). + * + */ +#define FT_OPENTYPE_VALIDATE_H <freetype/ftotval.h> + + + /************************************************************************* + * + * @macro: + * FT_GX_VALIDATE_H + * + * @description: + * A macro used in #include statements to name the file containing the + * optional FreeType~2 API which validates TrueTypeGX/AAT tables (feat, + * mort, morx, bsln, just, kern, opbd, trak, prop). + * + */ +#define FT_GX_VALIDATE_H <freetype/ftgxval.h> + + + /************************************************************************* + * + * @macro: + * FT_PFR_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which accesses PFR-specific data. + * + */ +#define FT_PFR_H <freetype/ftpfr.h> + + + /************************************************************************* + * + * @macro: + * FT_STROKER_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which provides functions to stroke outline paths. + */ +#define FT_STROKER_H <freetype/ftstroke.h> + + + /************************************************************************* + * + * @macro: + * FT_SYNTHESIS_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which performs artificial obliquing and emboldening. + */ +#define FT_SYNTHESIS_H <freetype/ftsynth.h> + + + /************************************************************************* + * + * @macro: + * FT_XFREE86_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which provides functions specific to the XFree86 and + * X.Org X11 servers. + */ +#define FT_XFREE86_H <freetype/ftxf86.h> + + + /************************************************************************* + * + * @macro: + * FT_TRIGONOMETRY_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which performs trigonometric computations (e.g., + * cosines and arc tangents). + */ +#define FT_TRIGONOMETRY_H <freetype/fttrigon.h> + + + /************************************************************************* + * + * @macro: + * FT_LCD_FILTER_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which performs color filtering for subpixel rendering. + */ +#define FT_LCD_FILTER_H <freetype/ftlcdfil.h> + + + /************************************************************************* + * + * @macro: + * FT_UNPATENTED_HINTING_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which performs color filtering for subpixel rendering. + */ +#define FT_UNPATENTED_HINTING_H <freetype/ttunpat.h> + + + /************************************************************************* + * + * @macro: + * FT_INCREMENTAL_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which performs color filtering for subpixel rendering. + */ +#define FT_INCREMENTAL_H <freetype/ftincrem.h> + + + /************************************************************************* + * + * @macro: + * FT_GASP_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which returns entries from the TrueType GASP table. + */ +#define FT_GASP_H <freetype/ftgasp.h> + + + /************************************************************************* + * + * @macro: + * FT_ADVANCES_H + * + * @description: + * A macro used in #include statements to name the file containing the + * FreeType~2 API which returns individual and ranged glyph advances. + */ +#define FT_ADVANCES_H <freetype/ftadvanc.h> + + + /* */ + +#define FT_ERROR_DEFINITIONS_H <freetype/fterrdef.h> + + + /* The internals of the cache sub-system are no longer exposed. We */ + /* default to FT_CACHE_H at the moment just in case, but we know of */ + /* no rogue client that uses them. */ + /* */ +#define FT_CACHE_MANAGER_H <freetype/ftcache.h> +#define FT_CACHE_INTERNAL_MRU_H <freetype/ftcache.h> +#define FT_CACHE_INTERNAL_MANAGER_H <freetype/ftcache.h> +#define FT_CACHE_INTERNAL_CACHE_H <freetype/ftcache.h> +#define FT_CACHE_INTERNAL_GLYPH_H <freetype/ftcache.h> +#define FT_CACHE_INTERNAL_IMAGE_H <freetype/ftcache.h> +#define FT_CACHE_INTERNAL_SBITS_H <freetype/ftcache.h> + + +#define FT_INCREMENTAL_H <freetype/ftincrem.h> + +#define FT_TRUETYPE_UNPATENTED_H <freetype/ttunpat.h> + + + /* + * Include internal headers definitions from <freetype/internal/...> + * only when building the library. + */ +#ifdef FT2_BUILD_LIBRARY +#define FT_INTERNAL_INTERNAL_H <freetype/internal/internal.h> +#include FT_INTERNAL_INTERNAL_H +#endif /* FT2_BUILD_LIBRARY */ + + +#endif /* __FT2_BUILD_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftmodule.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftmodule.h new file mode 100644 index 0000000000..76d271a74b --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftmodule.h @@ -0,0 +1,32 @@ +/* + * This file registers the FreeType modules compiled into the library. + * + * If you use GNU make, this file IS NOT USED! Instead, it is created in + * the objects directory (normally `<topdir>/objs/') based on information + * from `<topdir>/modules.cfg'. + * + * Please read `docs/INSTALL.ANY' and `docs/CUSTOMIZE' how to compile + * FreeType without GNU make. + * + */ + +FT_USE_MODULE( FT_Module_Class, autofit_module_class ) +FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, t1_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, cff_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, t1cid_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, pfr_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, t42_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, winfnt_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, pcf_driver_class ) +FT_USE_MODULE( FT_Module_Class, psaux_module_class ) +FT_USE_MODULE( FT_Module_Class, psnames_module_class ) +FT_USE_MODULE( FT_Module_Class, pshinter_module_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_raster1_renderer_class ) +FT_USE_MODULE( FT_Module_Class, sfnt_module_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_smooth_renderer_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcd_renderer_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcdv_renderer_class ) +FT_USE_MODULE( FT_Driver_ClassRec, bdf_driver_class ) + +/* EOF */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftoption.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftoption.h new file mode 100644 index 0000000000..041e24a31b --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftoption.h @@ -0,0 +1,805 @@ +/***************************************************************************/ +/* */ +/* ftoption.h */ +/* */ +/* User-selectable configuration macros (specification only). */ +/* */ +/* Copyright 1996-2011 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTOPTION_H__ +#define __FTOPTION_H__ + + +#include <ft2build.h> + + +FT_BEGIN_HEADER + + /*************************************************************************/ + /* */ + /* USER-SELECTABLE CONFIGURATION MACROS */ + /* */ + /* This file contains the default configuration macro definitions for */ + /* a standard build of the FreeType library. There are three ways to */ + /* use this file to build project-specific versions of the library: */ + /* */ + /* - You can modify this file by hand, but this is not recommended in */ + /* cases where you would like to build several versions of the */ + /* library from a single source directory. */ + /* */ + /* - You can put a copy of this file in your build directory, more */ + /* precisely in `$BUILD/freetype/config/ftoption.h', where `$BUILD' */ + /* is the name of a directory that is included _before_ the FreeType */ + /* include path during compilation. */ + /* */ + /* The default FreeType Makefiles and Jamfiles use the build */ + /* directory `builds/<system>' by default, but you can easily change */ + /* that for your own projects. */ + /* */ + /* - Copy the file <ft2build.h> to `$BUILD/ft2build.h' and modify it */ + /* slightly to pre-define the macro FT_CONFIG_OPTIONS_H used to */ + /* locate this file during the build. For example, */ + /* */ + /* #define FT_CONFIG_OPTIONS_H <myftoptions.h> */ + /* #include <freetype/config/ftheader.h> */ + /* */ + /* will use `$BUILD/myftoptions.h' instead of this file for macro */ + /* definitions. */ + /* */ + /* Note also that you can similarly pre-define the macro */ + /* FT_CONFIG_MODULES_H used to locate the file listing of the modules */ + /* that are statically linked to the library at compile time. By */ + /* default, this file is <freetype/config/ftmodule.h>. */ + /* */ + /* We highly recommend using the third method whenever possible. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** G E N E R A L F R E E T Y P E 2 C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* Uncomment the line below if you want to activate sub-pixel rendering */ + /* (a.k.a. LCD rendering, or ClearType) in this build of the library. */ + /* */ + /* Note that this feature is covered by several Microsoft patents */ + /* and should not be activated in any default build of the library. */ + /* */ + /* This macro has no impact on the FreeType API, only on its */ + /* _implementation_. For example, using FT_RENDER_MODE_LCD when calling */ + /* FT_Render_Glyph still generates a bitmap that is 3 times wider than */ + /* the original size in case this macro isn't defined; however, each */ + /* triplet of subpixels has R=G=B. */ + /* */ + /* This is done to allow FreeType clients to run unmodified, forcing */ + /* them to display normal gray-level anti-aliased glyphs. */ + /* */ +/* #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING */ + + + /*************************************************************************/ + /* */ + /* Many compilers provide a non-ANSI 64-bit data type that can be used */ + /* by FreeType to speed up some computations. However, this will create */ + /* some problems when compiling the library in strict ANSI mode. */ + /* */ + /* For this reason, the use of 64-bit integers is normally disabled when */ + /* the __STDC__ macro is defined. You can however disable this by */ + /* defining the macro FT_CONFIG_OPTION_FORCE_INT64 here. */ + /* */ + /* For most compilers, this will only create compilation warnings when */ + /* building the library. */ + /* */ + /* ObNote: The compiler-specific 64-bit integers are detected in the */ + /* file `ftconfig.h' either statically or through the */ + /* `configure' script on supported platforms. */ + /* */ +#undef FT_CONFIG_OPTION_FORCE_INT64 + + + /*************************************************************************/ + /* */ + /* If this macro is defined, do not try to use an assembler version of */ + /* performance-critical functions (e.g. FT_MulFix). You should only do */ + /* that to verify that the assembler function works properly, or to */ + /* execute benchmark tests of the various implementations. */ +/* #define FT_CONFIG_OPTION_NO_ASSEMBLER */ + + + /*************************************************************************/ + /* */ + /* If this macro is defined, try to use an inlined assembler version of */ + /* the `FT_MulFix' function, which is a `hotspot' when loading and */ + /* hinting glyphs, and which should be executed as fast as possible. */ + /* */ + /* Note that if your compiler or CPU is not supported, this will default */ + /* to the standard and portable implementation found in `ftcalc.c'. */ + /* */ +#define FT_CONFIG_OPTION_INLINE_MULFIX + + + /*************************************************************************/ + /* */ + /* LZW-compressed file support. */ + /* */ + /* FreeType now handles font files that have been compressed with the */ + /* `compress' program. This is mostly used to parse many of the PCF */ + /* files that come with various X11 distributions. The implementation */ + /* uses NetBSD's `zopen' to partially uncompress the file on the fly */ + /* (see src/lzw/ftgzip.c). */ + /* */ + /* Define this macro if you want to enable this `feature'. */ + /* */ +#define FT_CONFIG_OPTION_USE_LZW + + + /*************************************************************************/ + /* */ + /* Gzip-compressed file support. */ + /* */ + /* FreeType now handles font files that have been compressed with the */ + /* `gzip' program. This is mostly used to parse many of the PCF files */ + /* that come with XFree86. The implementation uses `zlib' to */ + /* partially uncompress the file on the fly (see src/gzip/ftgzip.c). */ + /* */ + /* Define this macro if you want to enable this `feature'. See also */ + /* the macro FT_CONFIG_OPTION_SYSTEM_ZLIB below. */ + /* */ +#define FT_CONFIG_OPTION_USE_ZLIB + + + /*************************************************************************/ + /* */ + /* ZLib library selection */ + /* */ + /* This macro is only used when FT_CONFIG_OPTION_USE_ZLIB is defined. */ + /* It allows FreeType's `ftgzip' component to link to the system's */ + /* installation of the ZLib library. This is useful on systems like */ + /* Unix or VMS where it generally is already available. */ + /* */ + /* If you let it undefined, the component will use its own copy */ + /* of the zlib sources instead. These have been modified to be */ + /* included directly within the component and *not* export external */ + /* function names. This allows you to link any program with FreeType */ + /* _and_ ZLib without linking conflicts. */ + /* */ + /* Do not #undef this macro here since the build system might define */ + /* it for certain configurations only. */ + /* */ +/* #define FT_CONFIG_OPTION_SYSTEM_ZLIB */ + + + /*************************************************************************/ + /* */ + /* Bzip2-compressed file support. */ + /* */ + /* FreeType now handles font files that have been compressed with the */ + /* `bzip2' program. This is mostly used to parse many of the PCF */ + /* files that come with XFree86. The implementation uses `libbz2' to */ + /* partially uncompress the file on the fly (see src/bzip2/ftbzip2.c). */ + /* Contrary to gzip, bzip2 currently is not included and need to use */ + /* the system available bzip2 implementation. */ + /* */ + /* Define this macro if you want to enable this `feature'. */ + /* */ +/* #define FT_CONFIG_OPTION_USE_BZIP2 */ + + + /*************************************************************************/ + /* */ + /* Define to disable the use of file stream functions and types, FILE, */ + /* fopen() etc. Enables the use of smaller system libraries on embedded */ + /* systems that have multiple system libraries, some with or without */ + /* file stream support, in the cases where file stream support is not */ + /* necessary such as memory loading of font files. */ + /* */ +/* #define FT_CONFIG_OPTION_DISABLE_STREAM_SUPPORT */ + + + /*************************************************************************/ + /* */ + /* DLL export compilation */ + /* */ + /* When compiling FreeType as a DLL, some systems/compilers need a */ + /* special keyword in front OR after the return type of function */ + /* declarations. */ + /* */ + /* Two macros are used within the FreeType source code to define */ + /* exported library functions: FT_EXPORT and FT_EXPORT_DEF. */ + /* */ + /* FT_EXPORT( return_type ) */ + /* */ + /* is used in a function declaration, as in */ + /* */ + /* FT_EXPORT( FT_Error ) */ + /* FT_Init_FreeType( FT_Library* alibrary ); */ + /* */ + /* */ + /* FT_EXPORT_DEF( return_type ) */ + /* */ + /* is used in a function definition, as in */ + /* */ + /* FT_EXPORT_DEF( FT_Error ) */ + /* FT_Init_FreeType( FT_Library* alibrary ) */ + /* { */ + /* ... some code ... */ + /* return FT_Err_Ok; */ + /* } */ + /* */ + /* You can provide your own implementation of FT_EXPORT and */ + /* FT_EXPORT_DEF here if you want. If you leave them undefined, they */ + /* will be later automatically defined as `extern return_type' to */ + /* allow normal compilation. */ + /* */ + /* Do not #undef these macros here since the build system might define */ + /* them for certain configurations only. */ + /* */ +/* #define FT_EXPORT(x) extern x */ +/* #define FT_EXPORT_DEF(x) x */ + + + /*************************************************************************/ + /* */ + /* Glyph Postscript Names handling */ + /* */ + /* By default, FreeType 2 is compiled with the `psnames' module. This */ + /* module is in charge of converting a glyph name string into a */ + /* Unicode value, or return a Macintosh standard glyph name for the */ + /* use with the TrueType `post' table. */ + /* */ + /* Undefine this macro if you do not want `psnames' compiled in your */ + /* build of FreeType. This has the following effects: */ + /* */ + /* - The TrueType driver will provide its own set of glyph names, */ + /* if you build it to support postscript names in the TrueType */ + /* `post' table. */ + /* */ + /* - The Type 1 driver will not be able to synthesize a Unicode */ + /* charmap out of the glyphs found in the fonts. */ + /* */ + /* You would normally undefine this configuration macro when building */ + /* a version of FreeType that doesn't contain a Type 1 or CFF driver. */ + /* */ +#define FT_CONFIG_OPTION_POSTSCRIPT_NAMES + + + /*************************************************************************/ + /* */ + /* Postscript Names to Unicode Values support */ + /* */ + /* By default, FreeType 2 is built with the `PSNames' module compiled */ + /* in. Among other things, the module is used to convert a glyph name */ + /* into a Unicode value. This is especially useful in order to */ + /* synthesize on the fly a Unicode charmap from the CFF/Type 1 driver */ + /* through a big table named the `Adobe Glyph List' (AGL). */ + /* */ + /* Undefine this macro if you do not want the Adobe Glyph List */ + /* compiled in your `PSNames' module. The Type 1 driver will not be */ + /* able to synthesize a Unicode charmap out of the glyphs found in the */ + /* fonts. */ + /* */ +#define FT_CONFIG_OPTION_ADOBE_GLYPH_LIST + + + /*************************************************************************/ + /* */ + /* Support for Mac fonts */ + /* */ + /* Define this macro if you want support for outline fonts in Mac */ + /* format (mac dfont, mac resource, macbinary containing a mac */ + /* resource) on non-Mac platforms. */ + /* */ + /* Note that the `FOND' resource isn't checked. */ + /* */ +#define FT_CONFIG_OPTION_MAC_FONTS + + + /*************************************************************************/ + /* */ + /* Guessing methods to access embedded resource forks */ + /* */ + /* Enable extra Mac fonts support on non-Mac platforms (e.g. */ + /* GNU/Linux). */ + /* */ + /* Resource forks which include fonts data are stored sometimes in */ + /* locations which users or developers don't expected. In some cases, */ + /* resource forks start with some offset from the head of a file. In */ + /* other cases, the actual resource fork is stored in file different */ + /* from what the user specifies. If this option is activated, */ + /* FreeType tries to guess whether such offsets or different file */ + /* names must be used. */ + /* */ + /* Note that normal, direct access of resource forks is controlled via */ + /* the FT_CONFIG_OPTION_MAC_FONTS option. */ + /* */ +#ifdef FT_CONFIG_OPTION_MAC_FONTS +#define FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK +#endif + + + /*************************************************************************/ + /* */ + /* Allow the use of FT_Incremental_Interface to load typefaces that */ + /* contain no glyph data, but supply it via a callback function. */ + /* This is required by clients supporting document formats which */ + /* supply font data incrementally as the document is parsed, such */ + /* as the Ghostscript interpreter for the PostScript language. */ + /* */ +#define FT_CONFIG_OPTION_INCREMENTAL + + + /*************************************************************************/ + /* */ + /* The size in bytes of the render pool used by the scan-line converter */ + /* to do all of its work. */ + /* */ + /* This must be greater than 4KByte if you use FreeType to rasterize */ + /* glyphs; otherwise, you may set it to zero to avoid unnecessary */ + /* allocation of the render pool. */ + /* */ +#define FT_RENDER_POOL_SIZE 16384L + + + /*************************************************************************/ + /* */ + /* FT_MAX_MODULES */ + /* */ + /* The maximum number of modules that can be registered in a single */ + /* FreeType library object. 32 is the default. */ + /* */ +#define FT_MAX_MODULES 32 + + + /*************************************************************************/ + /* */ + /* Debug level */ + /* */ + /* FreeType can be compiled in debug or trace mode. In debug mode, */ + /* errors are reported through the `ftdebug' component. In trace */ + /* mode, additional messages are sent to the standard output during */ + /* execution. */ + /* */ + /* Define FT_DEBUG_LEVEL_ERROR to build the library in debug mode. */ + /* Define FT_DEBUG_LEVEL_TRACE to build it in trace mode. */ + /* */ + /* Don't define any of these macros to compile in `release' mode! */ + /* */ + /* Do not #undef these macros here since the build system might define */ + /* them for certain configurations only. */ + /* */ +/* #define FT_DEBUG_LEVEL_ERROR */ +/* #define FT_DEBUG_LEVEL_TRACE */ + + + /*************************************************************************/ + /* */ + /* Autofitter debugging */ + /* */ + /* If FT_DEBUG_AUTOFIT is defined, FreeType provides some means to */ + /* control the autofitter behaviour for debugging purposes with global */ + /* boolean variables (consequently, you should *never* enable this */ + /* while compiling in `release' mode): */ + /* */ + /* _af_debug_disable_horz_hints */ + /* _af_debug_disable_vert_hints */ + /* _af_debug_disable_blue_hints */ + /* */ + /* Additionally, the following functions provide dumps of various */ + /* internal autofit structures to stdout (using `printf'): */ + /* */ + /* af_glyph_hints_dump_points */ + /* af_glyph_hints_dump_segments */ + /* af_glyph_hints_dump_edges */ + /* */ + /* As an argument, they use another global variable: */ + /* */ + /* _af_debug_hints */ + /* */ + /* Please have a look at the `ftgrid' demo program to see how those */ + /* variables and macros should be used. */ + /* */ + /* Do not #undef these macros here since the build system might define */ + /* them for certain configurations only. */ + /* */ +/* #define FT_DEBUG_AUTOFIT */ + + + /*************************************************************************/ + /* */ + /* Memory Debugging */ + /* */ + /* FreeType now comes with an integrated memory debugger that is */ + /* capable of detecting simple errors like memory leaks or double */ + /* deletes. To compile it within your build of the library, you */ + /* should define FT_DEBUG_MEMORY here. */ + /* */ + /* Note that the memory debugger is only activated at runtime when */ + /* when the _environment_ variable `FT2_DEBUG_MEMORY' is defined also! */ + /* */ + /* Do not #undef this macro here since the build system might define */ + /* it for certain configurations only. */ + /* */ +/* #define FT_DEBUG_MEMORY */ + + + /*************************************************************************/ + /* */ + /* Module errors */ + /* */ + /* If this macro is set (which is _not_ the default), the higher byte */ + /* of an error code gives the module in which the error has occurred, */ + /* while the lower byte is the real error code. */ + /* */ + /* Setting this macro makes sense for debugging purposes only, since */ + /* it would break source compatibility of certain programs that use */ + /* FreeType 2. */ + /* */ + /* More details can be found in the files ftmoderr.h and fterrors.h. */ + /* */ +#undef FT_CONFIG_OPTION_USE_MODULE_ERRORS + + + /*************************************************************************/ + /* */ + /* Position Independent Code */ + /* */ + /* If this macro is set (which is _not_ the default), FreeType2 will */ + /* avoid creating constants that require address fixups. Instead the */ + /* constants will be moved into a struct and additional intialization */ + /* code will be used. */ + /* */ + /* Setting this macro is needed for systems that prohibit address */ + /* fixups, such as BREW. */ + /* */ +/* #define FT_CONFIG_OPTION_PIC */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** S F N T D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* Define TT_CONFIG_OPTION_EMBEDDED_BITMAPS if you want to support */ + /* embedded bitmaps in all formats using the SFNT module (namely */ + /* TrueType & OpenType). */ + /* */ +#define TT_CONFIG_OPTION_EMBEDDED_BITMAPS + + + /*************************************************************************/ + /* */ + /* Define TT_CONFIG_OPTION_POSTSCRIPT_NAMES if you want to be able to */ + /* load and enumerate the glyph Postscript names in a TrueType or */ + /* OpenType file. */ + /* */ + /* Note that when you do not compile the `PSNames' module by undefining */ + /* the above FT_CONFIG_OPTION_POSTSCRIPT_NAMES, the `sfnt' module will */ + /* contain additional code used to read the PS Names table from a font. */ + /* */ + /* (By default, the module uses `PSNames' to extract glyph names.) */ + /* */ +#define TT_CONFIG_OPTION_POSTSCRIPT_NAMES + + + /*************************************************************************/ + /* */ + /* Define TT_CONFIG_OPTION_SFNT_NAMES if your applications need to */ + /* access the internal name table in a SFNT-based format like TrueType */ + /* or OpenType. The name table contains various strings used to */ + /* describe the font, like family name, copyright, version, etc. It */ + /* does not contain any glyph name though. */ + /* */ + /* Accessing SFNT names is done through the functions declared in */ + /* `freetype/ftsnames.h'. */ + /* */ +#define TT_CONFIG_OPTION_SFNT_NAMES + + + /*************************************************************************/ + /* */ + /* TrueType CMap support */ + /* */ + /* Here you can fine-tune which TrueType CMap table format shall be */ + /* supported. */ +#define TT_CONFIG_CMAP_FORMAT_0 +#define TT_CONFIG_CMAP_FORMAT_2 +#define TT_CONFIG_CMAP_FORMAT_4 +#define TT_CONFIG_CMAP_FORMAT_6 +#define TT_CONFIG_CMAP_FORMAT_8 +#define TT_CONFIG_CMAP_FORMAT_10 +#define TT_CONFIG_CMAP_FORMAT_12 +#define TT_CONFIG_CMAP_FORMAT_13 +#define TT_CONFIG_CMAP_FORMAT_14 + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** T R U E T Y P E D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + /*************************************************************************/ + /* */ + /* Define TT_CONFIG_OPTION_BYTECODE_INTERPRETER if you want to compile */ + /* a bytecode interpreter in the TrueType driver. */ + /* */ + /* By undefining this, you will only compile the code necessary to load */ + /* TrueType glyphs without hinting. */ + /* */ + /* Do not #undef this macro here, since the build system might */ + /* define it for certain configurations only. */ + /* */ +#define TT_CONFIG_OPTION_BYTECODE_INTERPRETER + + + /*************************************************************************/ + /* */ + /* If you define TT_CONFIG_OPTION_UNPATENTED_HINTING, a special version */ + /* of the TrueType bytecode interpreter is used that doesn't implement */ + /* any of the patented opcodes and algorithms. The patents related to */ + /* TrueType hinting have expired worldwide since May 2010; this option */ + /* is now deprecated. */ + /* */ + /* Note that the TT_CONFIG_OPTION_UNPATENTED_HINTING macro is *ignored* */ + /* if you define TT_CONFIG_OPTION_BYTECODE_INTERPRETER; in other words, */ + /* either define TT_CONFIG_OPTION_BYTECODE_INTERPRETER or */ + /* TT_CONFIG_OPTION_UNPATENTED_HINTING but not both at the same time. */ + /* */ + /* This macro is only useful for a small number of font files (mostly */ + /* for Asian scripts) that require bytecode interpretation to properly */ + /* load glyphs. For all other fonts, this produces unpleasant results, */ + /* thus the unpatented interpreter is never used to load glyphs from */ + /* TrueType fonts unless one of the following two options is used. */ + /* */ + /* - The unpatented interpreter is explicitly activated by the user */ + /* through the FT_PARAM_TAG_UNPATENTED_HINTING parameter tag */ + /* when opening the FT_Face. */ + /* */ + /* - FreeType detects that the FT_Face corresponds to one of the */ + /* `trick' fonts (e.g., `Mingliu') it knows about. The font engine */ + /* contains a hard-coded list of font names and other matching */ + /* parameters (see function `tt_face_init' in file */ + /* `src/truetype/ttobjs.c'). */ + /* */ + /* Here a sample code snippet for using FT_PARAM_TAG_UNPATENTED_HINTING. */ + /* */ + /* { */ + /* FT_Parameter parameter; */ + /* FT_Open_Args open_args; */ + /* */ + /* */ + /* parameter.tag = FT_PARAM_TAG_UNPATENTED_HINTING; */ + /* */ + /* open_args.flags = FT_OPEN_PATHNAME | FT_OPEN_PARAMS; */ + /* open_args.pathname = my_font_pathname; */ + /* open_args.num_params = 1; */ + /* open_args.params = ¶meter; */ + /* */ + /* error = FT_Open_Face( library, &open_args, index, &face ); */ + /* ... */ + /* } */ + /* */ +/* #define TT_CONFIG_OPTION_UNPATENTED_HINTING */ + + + /*************************************************************************/ + /* */ + /* Define TT_CONFIG_OPTION_INTERPRETER_SWITCH to compile the TrueType */ + /* bytecode interpreter with a huge switch statement, rather than a call */ + /* table. This results in smaller and faster code for a number of */ + /* architectures. */ + /* */ + /* Note however that on some compiler/processor combinations, undefining */ + /* this macro will generate faster, though larger, code. */ + /* */ +#define TT_CONFIG_OPTION_INTERPRETER_SWITCH + + + /*************************************************************************/ + /* */ + /* Define TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED to compile the */ + /* TrueType glyph loader to use Apple's definition of how to handle */ + /* component offsets in composite glyphs. */ + /* */ + /* Apple and MS disagree on the default behavior of component offsets */ + /* in composites. Apple says that they should be scaled by the scaling */ + /* factors in the transformation matrix (roughly, it's more complex) */ + /* while MS says they should not. OpenType defines two bits in the */ + /* composite flags array which can be used to disambiguate, but old */ + /* fonts will not have them. */ + /* */ + /* http://www.microsoft.com/typography/otspec/glyf.htm */ + /* http://fonts.apple.com/TTRefMan/RM06/Chap6glyf.html */ + /* */ +#undef TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED + + + /*************************************************************************/ + /* */ + /* Define TT_CONFIG_OPTION_GX_VAR_SUPPORT if you want to include */ + /* support for Apple's distortable font technology (fvar, gvar, cvar, */ + /* and avar tables). This has many similarities to Type 1 Multiple */ + /* Masters support. */ + /* */ +#define TT_CONFIG_OPTION_GX_VAR_SUPPORT + + + /*************************************************************************/ + /* */ + /* Define TT_CONFIG_OPTION_BDF if you want to include support for */ + /* an embedded `BDF ' table within SFNT-based bitmap formats. */ + /* */ +#define TT_CONFIG_OPTION_BDF + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** T Y P E 1 D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* T1_MAX_DICT_DEPTH is the maximal depth of nest dictionaries and */ + /* arrays in the Type 1 stream (see t1load.c). A minimum of 4 is */ + /* required. */ + /* */ +#define T1_MAX_DICT_DEPTH 5 + + + /*************************************************************************/ + /* */ + /* T1_MAX_SUBRS_CALLS details the maximum number of nested sub-routine */ + /* calls during glyph loading. */ + /* */ +#define T1_MAX_SUBRS_CALLS 16 + + + /*************************************************************************/ + /* */ + /* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */ + /* minimum of 16 is required. */ + /* */ + /* The Chinese font MingTiEG-Medium (CNS 11643 character set) needs 256. */ + /* */ +#define T1_MAX_CHARSTRINGS_OPERANDS 256 + + + /*************************************************************************/ + /* */ + /* Define this configuration macro if you want to prevent the */ + /* compilation of `t1afm', which is in charge of reading Type 1 AFM */ + /* files into an existing face. Note that if set, the T1 driver will be */ + /* unable to produce kerning distances. */ + /* */ +#undef T1_CONFIG_OPTION_NO_AFM + + + /*************************************************************************/ + /* */ + /* Define this configuration macro if you want to prevent the */ + /* compilation of the Multiple Masters font support in the Type 1 */ + /* driver. */ + /* */ +#undef T1_CONFIG_OPTION_NO_MM_SUPPORT + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** A U T O F I T M O D U L E C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* Compile autofit module with CJK (Chinese, Japanese, Korean) script */ + /* support. */ + /* */ +#define AF_CONFIG_OPTION_CJK + + /*************************************************************************/ + /* */ + /* Compile autofit module with Indic script support. */ + /* */ +#define AF_CONFIG_OPTION_INDIC + + /*************************************************************************/ + /* */ + /* Compile autofit module with warp hinting. The idea of the warping */ + /* code is to slightly scale and shift a glyph within a single dimension */ + /* so that as much of its segments are aligned (more or less) on the */ + /* grid. To find out the optimal scaling and shifting value, various */ + /* parameter combinations are tried and scored. */ + /* */ + /* This experimental option is only active if the render mode is */ + /* FT_RENDER_MODE_LIGHT. */ + /* */ +/* #define AF_CONFIG_OPTION_USE_WARPER */ + + /* */ + + + /* + * Define this variable if you want to keep the layout of internal + * structures that was used prior to FreeType 2.2. This also compiles in + * a few obsolete functions to avoid linking problems on typical Unix + * distributions. + * + * For embedded systems or building a new distribution from scratch, it + * is recommended to disable the macro since it reduces the library's code + * size and activates a few memory-saving optimizations as well. + */ +#define FT_CONFIG_OPTION_OLD_INTERNALS + + + /* + * To detect legacy cache-lookup call from a rogue client (<= 2.1.7), + * we restrict the number of charmaps in a font. The current API of + * FTC_CMapCache_Lookup() takes cmap_index & charcode, but old API + * takes charcode only. To determine the passed value is for cmap_index + * or charcode, the possible cmap_index is restricted not to exceed + * the minimum possible charcode by a rogue client. It is also very + * unlikely that a rogue client is interested in Unicode values 0 to 15. + * + * NOTE: The original threshold was 4 deduced from popular number of + * cmap subtables in UCS-4 TrueType fonts, but now it is not + * irregular for OpenType fonts to have more than 4 subtables, + * because variation selector subtables are available for Apple + * and Microsoft platforms. + */ + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS +#define FT_MAX_CHARMAP_CACHEABLE 15 +#endif + + + /* + * This macro is defined if either unpatented or native TrueType + * hinting is requested by the definitions above. + */ +#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER +#define TT_USE_BYTECODE_INTERPRETER +#undef TT_CONFIG_OPTION_UNPATENTED_HINTING +#elif defined TT_CONFIG_OPTION_UNPATENTED_HINTING +#define TT_USE_BYTECODE_INTERPRETER +#endif + +FT_END_HEADER + + +#endif /* __FTOPTION_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftstdlib.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftstdlib.h new file mode 100644 index 0000000000..30ec14e74e --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/config/ftstdlib.h @@ -0,0 +1,173 @@ +/***************************************************************************/ +/* */ +/* ftstdlib.h */ +/* */ +/* ANSI-specific library and header configuration file (specification */ +/* only). */ +/* */ +/* Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This file is used to group all #includes to the ANSI C library that */ + /* FreeType normally requires. It also defines macros to rename the */ + /* standard functions within the FreeType source code. */ + /* */ + /* Load a file which defines __FTSTDLIB_H__ before this one to override */ + /* it. */ + /* */ + /*************************************************************************/ + + +#ifndef __FTSTDLIB_H__ +#define __FTSTDLIB_H__ + + +#include <stddef.h> + +#define ft_ptrdiff_t ptrdiff_t + + + /**********************************************************************/ + /* */ + /* integer limits */ + /* */ + /* UINT_MAX and ULONG_MAX are used to automatically compute the size */ + /* of `int' and `long' in bytes at compile-time. So far, this works */ + /* for all platforms the library has been tested on. */ + /* */ + /* Note that on the extremely rare platforms that do not provide */ + /* integer types that are _exactly_ 16 and 32 bits wide (e.g. some */ + /* old Crays where `int' is 36 bits), we do not make any guarantee */ + /* about the correct behaviour of FT2 with all fonts. */ + /* */ + /* In these case, `ftconfig.h' will refuse to compile anyway with a */ + /* message like `couldn't find 32-bit type' or something similar. */ + /* */ + /**********************************************************************/ + + +#include <limits.h> + +#define FT_CHAR_BIT CHAR_BIT +#define FT_INT_MAX INT_MAX +#define FT_INT_MIN INT_MIN +#define FT_UINT_MAX UINT_MAX +#define FT_ULONG_MAX ULONG_MAX + + + /**********************************************************************/ + /* */ + /* character and string processing */ + /* */ + /**********************************************************************/ + + +#include <string.h> + +#define ft_memchr memchr +#define ft_memcmp memcmp +#define ft_memcpy memcpy +#define ft_memmove memmove +#define ft_memset memset +#define ft_strcat strcat +#define ft_strcmp strcmp +#define ft_strcpy strcpy +#define ft_strlen strlen +#define ft_strncmp strncmp +#define ft_strncpy strncpy +#define ft_strrchr strrchr +#define ft_strstr strstr + + + /**********************************************************************/ + /* */ + /* file handling */ + /* */ + /**********************************************************************/ + + +#include <stdio.h> + +#define FT_FILE FILE +#define ft_fclose fclose +#define ft_fopen fopen +#define ft_fread fread +#define ft_fseek fseek +#define ft_ftell ftell +#define ft_sprintf sprintf + + + /**********************************************************************/ + /* */ + /* sorting */ + /* */ + /**********************************************************************/ + + +#include <stdlib.h> + +#define ft_qsort qsort + + + /**********************************************************************/ + /* */ + /* memory allocation */ + /* */ + /**********************************************************************/ + + +#define ft_scalloc calloc +#define ft_sfree free +#define ft_smalloc malloc +#define ft_srealloc realloc + + + /**********************************************************************/ + /* */ + /* miscellaneous */ + /* */ + /**********************************************************************/ + + +#define ft_atol atol +#define ft_labs labs + + + /**********************************************************************/ + /* */ + /* execution control */ + /* */ + /**********************************************************************/ + + +#include <setjmp.h> + +#define ft_jmp_buf jmp_buf /* note: this cannot be a typedef since */ + /* jmp_buf is defined as a macro */ + /* on certain platforms */ + +#define ft_longjmp longjmp +#define ft_setjmp( b ) setjmp( *(jmp_buf*) &(b) ) /* same thing here */ + + + /* the following is only used for debugging purposes, i.e., if */ + /* FT_DEBUG_LEVEL_ERROR or FT_DEBUG_LEVEL_TRACE are defined */ + +#include <stdarg.h> + + +#endif /* __FTSTDLIB_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/freetype.h.REMOVED.git-id b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/freetype.h.REMOVED.git-id new file mode 100644 index 0000000000..44f9caac01 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/freetype.h.REMOVED.git-id @@ -0,0 +1 @@ +660b3032d488657cb0e58eb375b03657b16fcd31 \ No newline at end of file diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftadvanc.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftadvanc.h new file mode 100644 index 0000000000..b2451bec42 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftadvanc.h @@ -0,0 +1,179 @@ +/***************************************************************************/ +/* */ +/* ftadvanc.h */ +/* */ +/* Quick computation of advance widths (specification only). */ +/* */ +/* Copyright 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTADVANC_H__ +#define __FTADVANC_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * quick_advance + * + * @title: + * Quick retrieval of advance values + * + * @abstract: + * Retrieve horizontal and vertical advance values without processing + * glyph outlines, if possible. + * + * @description: + * This section contains functions to quickly extract advance values + * without handling glyph outlines, if possible. + */ + + + /*************************************************************************/ + /* */ + /* <Const> */ + /* FT_ADVANCE_FLAG_FAST_ONLY */ + /* */ + /* <Description> */ + /* A bit-flag to be OR-ed with the `flags' parameter of the */ + /* @FT_Get_Advance and @FT_Get_Advances functions. */ + /* */ + /* If set, it indicates that you want these functions to fail if the */ + /* corresponding hinting mode or font driver doesn't allow for very */ + /* quick advance computation. */ + /* */ + /* Typically, glyphs which are either unscaled, unhinted, bitmapped, */ + /* or light-hinted can have their advance width computed very */ + /* quickly. */ + /* */ + /* Normal and bytecode hinted modes, which require loading, scaling, */ + /* and hinting of the glyph outline, are extremely slow by */ + /* comparison. */ + /* */ +#define FT_ADVANCE_FLAG_FAST_ONLY 0x20000000UL + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Advance */ + /* */ + /* <Description> */ + /* Retrieve the advance value of a given glyph outline in an */ + /* @FT_Face. By default, the unhinted advance is returned in font */ + /* units. */ + /* */ + /* <Input> */ + /* face :: The source @FT_Face handle. */ + /* */ + /* gindex :: The glyph index. */ + /* */ + /* load_flags :: A set of bit flags similar to those used when */ + /* calling @FT_Load_Glyph, used to determine what kind */ + /* of advances you need. */ + /* <Output> */ + /* padvance :: The advance value, in either font units or 16.16 */ + /* format. */ + /* */ + /* If @FT_LOAD_VERTICAL_LAYOUT is set, this is the */ + /* vertical advance corresponding to a vertical layout. */ + /* Otherwise, it is the horizontal advance in a */ + /* horizontal layout. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* This function may fail if you use @FT_ADVANCE_FLAG_FAST_ONLY and */ + /* if the corresponding font backend doesn't have a quick way to */ + /* retrieve the advances. */ + /* */ + /* A scaled advance is returned in 16.16 format but isn't transformed */ + /* by the affine transformation specified by @FT_Set_Transform. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Get_Advance( FT_Face face, + FT_UInt gindex, + FT_Int32 load_flags, + FT_Fixed *padvance ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Advances */ + /* */ + /* <Description> */ + /* Retrieve the advance values of several glyph outlines in an */ + /* @FT_Face. By default, the unhinted advances are returned in font */ + /* units. */ + /* */ + /* <Input> */ + /* face :: The source @FT_Face handle. */ + /* */ + /* start :: The first glyph index. */ + /* */ + /* count :: The number of advance values you want to retrieve. */ + /* */ + /* load_flags :: A set of bit flags similar to those used when */ + /* calling @FT_Load_Glyph. */ + /* */ + /* <Output> */ + /* padvance :: The advances, in either font units or 16.16 format. */ + /* This array must contain at least `count' elements. */ + /* */ + /* If @FT_LOAD_VERTICAL_LAYOUT is set, these are the */ + /* vertical advances corresponding to a vertical layout. */ + /* Otherwise, they are the horizontal advances in a */ + /* horizontal layout. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* This function may fail if you use @FT_ADVANCE_FLAG_FAST_ONLY and */ + /* if the corresponding font backend doesn't have a quick way to */ + /* retrieve the advances. */ + /* */ + /* Scaled advances are returned in 16.16 format but aren't */ + /* transformed by the affine transformation specified by */ + /* @FT_Set_Transform. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Get_Advances( FT_Face face, + FT_UInt start, + FT_UInt count, + FT_Int32 load_flags, + FT_Fixed *padvances ); + +/* */ + + +FT_END_HEADER + +#endif /* __FTADVANC_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbbox.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbbox.h new file mode 100644 index 0000000000..976691956f --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbbox.h @@ -0,0 +1,102 @@ +/***************************************************************************/ +/* */ +/* ftbbox.h */ +/* */ +/* FreeType exact bbox computation (specification). */ +/* */ +/* Copyright 1996-2001, 2003, 2007, 2011 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This component has a _single_ role: to compute exact outline bounding */ + /* boxes. */ + /* */ + /* It is separated from the rest of the engine for various technical */ + /* reasons. It may well be integrated in `ftoutln' later. */ + /* */ + /*************************************************************************/ + + +#ifndef __FTBBOX_H__ +#define __FTBBOX_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* outline_processing */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Get_BBox */ + /* */ + /* <Description> */ + /* Compute the exact bounding box of an outline. This is slower */ + /* than computing the control box. However, it uses an advanced */ + /* algorithm which returns _very_ quickly when the two boxes */ + /* coincide. Otherwise, the outline Bézier arcs are traversed to */ + /* extract their extrema. */ + /* */ + /* <Input> */ + /* outline :: A pointer to the source outline. */ + /* */ + /* <Output> */ + /* abbox :: The outline's exact bounding box. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* If the font is tricky and the glyph has been loaded with */ + /* @FT_LOAD_NO_SCALE, the resulting BBox is meaningless. To get */ + /* reasonable values for the BBox it is necessary to load the glyph */ + /* at a large ppem value (so that the hinting instructions can */ + /* properly shift and scale the subglyphs), then extracting the BBox */ + /* which can be eventually converted back to font units. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Outline_Get_BBox( FT_Outline* outline, + FT_BBox *abbox ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTBBOX_H__ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbdf.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbdf.h new file mode 100644 index 0000000000..4f8baf8401 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbdf.h @@ -0,0 +1,209 @@ +/***************************************************************************/ +/* */ +/* ftbdf.h */ +/* */ +/* FreeType API for accessing BDF-specific strings (specification). */ +/* */ +/* Copyright 2002, 2003, 2004, 2006, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTBDF_H__ +#define __FTBDF_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* bdf_fonts */ + /* */ + /* <Title> */ + /* BDF and PCF Files */ + /* */ + /* <Abstract> */ + /* BDF and PCF specific API. */ + /* */ + /* <Description> */ + /* This section contains the declaration of functions specific to BDF */ + /* and PCF fonts. */ + /* */ + /*************************************************************************/ + + + /********************************************************************** + * + * @enum: + * FT_PropertyType + * + * @description: + * A list of BDF property types. + * + * @values: + * BDF_PROPERTY_TYPE_NONE :: + * Value~0 is used to indicate a missing property. + * + * BDF_PROPERTY_TYPE_ATOM :: + * Property is a string atom. + * + * BDF_PROPERTY_TYPE_INTEGER :: + * Property is a 32-bit signed integer. + * + * BDF_PROPERTY_TYPE_CARDINAL :: + * Property is a 32-bit unsigned integer. + */ + typedef enum BDF_PropertyType_ + { + BDF_PROPERTY_TYPE_NONE = 0, + BDF_PROPERTY_TYPE_ATOM = 1, + BDF_PROPERTY_TYPE_INTEGER = 2, + BDF_PROPERTY_TYPE_CARDINAL = 3 + + } BDF_PropertyType; + + + /********************************************************************** + * + * @type: + * BDF_Property + * + * @description: + * A handle to a @BDF_PropertyRec structure to model a given + * BDF/PCF property. + */ + typedef struct BDF_PropertyRec_* BDF_Property; + + + /********************************************************************** + * + * @struct: + * BDF_PropertyRec + * + * @description: + * This structure models a given BDF/PCF property. + * + * @fields: + * type :: + * The property type. + * + * u.atom :: + * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM. + * + * u.integer :: + * A signed integer, if type is @BDF_PROPERTY_TYPE_INTEGER. + * + * u.cardinal :: + * An unsigned integer, if type is @BDF_PROPERTY_TYPE_CARDINAL. + */ + typedef struct BDF_PropertyRec_ + { + BDF_PropertyType type; + union { + const char* atom; + FT_Int32 integer; + FT_UInt32 cardinal; + + } u; + + } BDF_PropertyRec; + + + /********************************************************************** + * + * @function: + * FT_Get_BDF_Charset_ID + * + * @description: + * Retrieve a BDF font character set identity, according to + * the BDF specification. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * acharset_encoding :: + * Charset encoding, as a C~string, owned by the face. + * + * acharset_registry :: + * Charset registry, as a C~string, owned by the face. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with BDF faces, returning an error otherwise. + */ + FT_EXPORT( FT_Error ) + FT_Get_BDF_Charset_ID( FT_Face face, + const char* *acharset_encoding, + const char* *acharset_registry ); + + + /********************************************************************** + * + * @function: + * FT_Get_BDF_Property + * + * @description: + * Retrieve a BDF property from a BDF or PCF font file. + * + * @input: + * face :: A handle to the input face. + * + * name :: The property name. + * + * @output: + * aproperty :: The property. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function works with BDF _and_ PCF fonts. It returns an error + * otherwise. It also returns an error if the property is not in the + * font. + * + * A `property' is a either key-value pair within the STARTPROPERTIES + * ... ENDPROPERTIES block of a BDF font or a key-value pair from the + * `info->props' array within a `FontRec' structure of a PCF font. + * + * Integer properties are always stored as `signed' within PCF fonts; + * consequently, @BDF_PROPERTY_TYPE_CARDINAL is a possible return value + * for BDF fonts only. + * + * In case of error, `aproperty->type' is always set to + * @BDF_PROPERTY_TYPE_NONE. + */ + FT_EXPORT( FT_Error ) + FT_Get_BDF_Property( FT_Face face, + const char* prop_name, + BDF_PropertyRec *aproperty ); + + /* */ + +FT_END_HEADER + +#endif /* __FTBDF_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbitmap.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbitmap.h new file mode 100644 index 0000000000..92742369ba --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbitmap.h @@ -0,0 +1,227 @@ +/***************************************************************************/ +/* */ +/* ftbitmap.h */ +/* */ +/* FreeType utility functions for bitmaps (specification). */ +/* */ +/* Copyright 2004, 2005, 2006, 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTBITMAP_H__ +#define __FTBITMAP_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* bitmap_handling */ + /* */ + /* <Title> */ + /* Bitmap Handling */ + /* */ + /* <Abstract> */ + /* Handling FT_Bitmap objects. */ + /* */ + /* <Description> */ + /* This section contains functions for converting FT_Bitmap objects. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Bitmap_New */ + /* */ + /* <Description> */ + /* Initialize a pointer to an @FT_Bitmap structure. */ + /* */ + /* <InOut> */ + /* abitmap :: A pointer to the bitmap structure. */ + /* */ + FT_EXPORT( void ) + FT_Bitmap_New( FT_Bitmap *abitmap ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Bitmap_Copy */ + /* */ + /* <Description> */ + /* Copy a bitmap into another one. */ + /* */ + /* <Input> */ + /* library :: A handle to a library object. */ + /* */ + /* source :: A handle to the source bitmap. */ + /* */ + /* <Output> */ + /* target :: A handle to the target bitmap. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Copy( FT_Library library, + const FT_Bitmap *source, + FT_Bitmap *target); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Bitmap_Embolden */ + /* */ + /* <Description> */ + /* Embolden a bitmap. The new bitmap will be about `xStrength' */ + /* pixels wider and `yStrength' pixels higher. The left and bottom */ + /* borders are kept unchanged. */ + /* */ + /* <Input> */ + /* library :: A handle to a library object. */ + /* */ + /* xStrength :: How strong the glyph is emboldened horizontally. */ + /* Expressed in 26.6 pixel format. */ + /* */ + /* yStrength :: How strong the glyph is emboldened vertically. */ + /* Expressed in 26.6 pixel format. */ + /* */ + /* <InOut> */ + /* bitmap :: A handle to the target bitmap. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The current implementation restricts `xStrength' to be less than */ + /* or equal to~8 if bitmap is of pixel_mode @FT_PIXEL_MODE_MONO. */ + /* */ + /* If you want to embolden the bitmap owned by a @FT_GlyphSlotRec, */ + /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Embolden( FT_Library library, + FT_Bitmap* bitmap, + FT_Pos xStrength, + FT_Pos yStrength ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Bitmap_Convert */ + /* */ + /* <Description> */ + /* Convert a bitmap object with depth 1bpp, 2bpp, 4bpp, or 8bpp to a */ + /* bitmap object with depth 8bpp, making the number of used bytes per */ + /* line (a.k.a. the `pitch') a multiple of `alignment'. */ + /* */ + /* <Input> */ + /* library :: A handle to a library object. */ + /* */ + /* source :: The source bitmap. */ + /* */ + /* alignment :: The pitch of the bitmap is a multiple of this */ + /* parameter. Common values are 1, 2, or 4. */ + /* */ + /* <Output> */ + /* target :: The target bitmap. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* It is possible to call @FT_Bitmap_Convert multiple times without */ + /* calling @FT_Bitmap_Done (the memory is simply reallocated). */ + /* */ + /* Use @FT_Bitmap_Done to finally remove the bitmap object. */ + /* */ + /* The `library' argument is taken to have access to FreeType's */ + /* memory handling functions. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Convert( FT_Library library, + const FT_Bitmap *source, + FT_Bitmap *target, + FT_Int alignment ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_GlyphSlot_Own_Bitmap */ + /* */ + /* <Description> */ + /* Make sure that a glyph slot owns `slot->bitmap'. */ + /* */ + /* <Input> */ + /* slot :: The glyph slot. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* This function is to be used in combination with */ + /* @FT_Bitmap_Embolden. */ + /* */ + FT_EXPORT( FT_Error ) + FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Bitmap_Done */ + /* */ + /* <Description> */ + /* Destroy a bitmap object created with @FT_Bitmap_New. */ + /* */ + /* <Input> */ + /* library :: A handle to a library object. */ + /* */ + /* bitmap :: The bitmap object to be freed. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The `library' argument is taken to have access to FreeType's */ + /* memory handling functions. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Done( FT_Library library, + FT_Bitmap *bitmap ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTBITMAP_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbzip2.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbzip2.h new file mode 100644 index 0000000000..1bf81b15e8 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftbzip2.h @@ -0,0 +1,102 @@ +/***************************************************************************/ +/* */ +/* ftbzip2.h */ +/* */ +/* Bzip2-compressed stream support. */ +/* */ +/* Copyright 2010 by */ +/* Joel Klinghed. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTBZIP2_H__ +#define __FTBZIP2_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /*************************************************************************/ + /* */ + /* <Section> */ + /* bzip2 */ + /* */ + /* <Title> */ + /* BZIP2 Streams */ + /* */ + /* <Abstract> */ + /* Using bzip2-compressed font files. */ + /* */ + /* <Description> */ + /* This section contains the declaration of Bzip2-specific functions. */ + /* */ + /*************************************************************************/ + + + /************************************************************************ + * + * @function: + * FT_Stream_OpenBzip2 + * + * @description: + * Open a new stream to parse bzip2-compressed font files. This is + * mainly used to support the compressed `*.pcf.bz2' fonts that come + * with XFree86. + * + * @input: + * stream :: + * The target embedding stream. + * + * source :: + * The source stream. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source stream must be opened _before_ calling this function. + * + * Calling the internal function `FT_Stream_Close' on the new stream will + * *not* call `FT_Stream_Close' on the source stream. None of the stream + * objects will be released to the heap. + * + * The stream implementation is very basic and resets the decompression + * process each time seeking backwards is needed within the stream. + * + * In certain builds of the library, bzip2 compression recognition is + * automatically handled when calling @FT_New_Face or @FT_Open_Face. + * This means that if no font driver is capable of handling the raw + * compressed file, the library will try to open a bzip2 compressed stream + * from it and re-open the face with it. + * + * This function may return `FT_Err_Unimplemented_Feature' if your build + * of FreeType was not compiled with bzip2 support. + */ + FT_EXPORT( FT_Error ) + FT_Stream_OpenBzip2( FT_Stream stream, + FT_Stream source ); + + /* */ + + +FT_END_HEADER + +#endif /* __FTBZIP2_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftcache.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftcache.h new file mode 100644 index 0000000000..6af5306228 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftcache.h @@ -0,0 +1,1140 @@ +/***************************************************************************/ +/* */ +/* ftcache.h */ +/* */ +/* FreeType Cache subsystem (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTCACHE_H__ +#define __FTCACHE_H__ + + +#include <ft2build.h> +#include FT_GLYPH_H + + +FT_BEGIN_HEADER + + + /************************************************************************* + * + * <Section> + * cache_subsystem + * + * <Title> + * Cache Sub-System + * + * <Abstract> + * How to cache face, size, and glyph data with FreeType~2. + * + * <Description> + * This section describes the FreeType~2 cache sub-system, which is used + * to limit the number of concurrently opened @FT_Face and @FT_Size + * objects, as well as caching information like character maps and glyph + * images while limiting their maximum memory usage. + * + * Note that all types and functions begin with the `FTC_' prefix. + * + * The cache is highly portable and thus doesn't know anything about the + * fonts installed on your system, or how to access them. This implies + * the following scheme: + * + * First, available or installed font faces are uniquely identified by + * @FTC_FaceID values, provided to the cache by the client. Note that + * the cache only stores and compares these values, and doesn't try to + * interpret them in any way. + * + * Second, the cache calls, only when needed, a client-provided function + * to convert an @FTC_FaceID into a new @FT_Face object. The latter is + * then completely managed by the cache, including its termination + * through @FT_Done_Face. To monitor termination of face objects, the + * finalizer callback in the `generic' field of the @FT_Face object can + * be used, which might also be used to store the @FTC_FaceID of the + * face. + * + * Clients are free to map face IDs to anything else. The most simple + * usage is to associate them to a (pathname,face_index) pair that is + * used to call @FT_New_Face. However, more complex schemes are also + * possible. + * + * Note that for the cache to work correctly, the face ID values must be + * *persistent*, which means that the contents they point to should not + * change at runtime, or that their value should not become invalid. + * + * If this is unavoidable (e.g., when a font is uninstalled at runtime), + * you should call @FTC_Manager_RemoveFaceID as soon as possible, to let + * the cache get rid of any references to the old @FTC_FaceID it may + * keep internally. Failure to do so will lead to incorrect behaviour + * or even crashes. + * + * To use the cache, start with calling @FTC_Manager_New to create a new + * @FTC_Manager object, which models a single cache instance. You can + * then look up @FT_Face and @FT_Size objects with + * @FTC_Manager_LookupFace and @FTC_Manager_LookupSize, respectively. + * + * If you want to use the charmap caching, call @FTC_CMapCache_New, then + * later use @FTC_CMapCache_Lookup to perform the equivalent of + * @FT_Get_Char_Index, only much faster. + * + * If you want to use the @FT_Glyph caching, call @FTC_ImageCache, then + * later use @FTC_ImageCache_Lookup to retrieve the corresponding + * @FT_Glyph objects from the cache. + * + * If you need lots of small bitmaps, it is much more memory efficient + * to call @FTC_SBitCache_New followed by @FTC_SBitCache_Lookup. This + * returns @FTC_SBitRec structures, which are used to store small + * bitmaps directly. (A small bitmap is one whose metrics and + * dimensions all fit into 8-bit integers). + * + * We hope to also provide a kerning cache in the near future. + * + * + * <Order> + * FTC_Manager + * FTC_FaceID + * FTC_Face_Requester + * + * FTC_Manager_New + * FTC_Manager_Reset + * FTC_Manager_Done + * FTC_Manager_LookupFace + * FTC_Manager_LookupSize + * FTC_Manager_RemoveFaceID + * + * FTC_Node + * FTC_Node_Unref + * + * FTC_ImageCache + * FTC_ImageCache_New + * FTC_ImageCache_Lookup + * + * FTC_SBit + * FTC_SBitCache + * FTC_SBitCache_New + * FTC_SBitCache_Lookup + * + * FTC_CMapCache + * FTC_CMapCache_New + * FTC_CMapCache_Lookup + * + *************************************************************************/ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** BASIC TYPE DEFINITIONS *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************* + * + * @type: FTC_FaceID + * + * @description: + * An opaque pointer type that is used to identity face objects. The + * contents of such objects is application-dependent. + * + * These pointers are typically used to point to a user-defined + * structure containing a font file path, and face index. + * + * @note: + * Never use NULL as a valid @FTC_FaceID. + * + * Face IDs are passed by the client to the cache manager, which calls, + * when needed, the @FTC_Face_Requester to translate them into new + * @FT_Face objects. + * + * If the content of a given face ID changes at runtime, or if the value + * becomes invalid (e.g., when uninstalling a font), you should + * immediately call @FTC_Manager_RemoveFaceID before any other cache + * function. + * + * Failure to do so will result in incorrect behaviour or even + * memory leaks and crashes. + */ + typedef FT_Pointer FTC_FaceID; + + + /************************************************************************ + * + * @functype: + * FTC_Face_Requester + * + * @description: + * A callback function provided by client applications. It is used by + * the cache manager to translate a given @FTC_FaceID into a new valid + * @FT_Face object, on demand. + * + * <Input> + * face_id :: + * The face ID to resolve. + * + * library :: + * A handle to a FreeType library object. + * + * req_data :: + * Application-provided request data (see note below). + * + * <Output> + * aface :: + * A new @FT_Face handle. + * + * <Return> + * FreeType error code. 0~means success. + * + * <Note> + * The third parameter `req_data' is the same as the one passed by the + * client when @FTC_Manager_New is called. + * + * The face requester should not perform funny things on the returned + * face object, like creating a new @FT_Size for it, or setting a + * transformation through @FT_Set_Transform! + */ + typedef FT_Error + (*FTC_Face_Requester)( FTC_FaceID face_id, + FT_Library library, + FT_Pointer request_data, + FT_Face* aface ); + + /* */ + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + /* these macros are incompatible with LLP64, should not be used */ + +#define FT_POINTER_TO_ULONG( p ) ( (FT_ULong)(FT_Pointer)(p) ) + +#define FTC_FACE_ID_HASH( i ) \ + ((FT_UInt32)(( FT_POINTER_TO_ULONG( i ) >> 3 ) ^ \ + ( FT_POINTER_TO_ULONG( i ) << 7 ) ) ) + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** CACHE MANAGER OBJECT *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FTC_Manager */ + /* */ + /* <Description> */ + /* This object corresponds to one instance of the cache-subsystem. */ + /* It is used to cache one or more @FT_Face objects, along with */ + /* corresponding @FT_Size objects. */ + /* */ + /* The manager intentionally limits the total number of opened */ + /* @FT_Face and @FT_Size objects to control memory usage. See the */ + /* `max_faces' and `max_sizes' parameters of @FTC_Manager_New. */ + /* */ + /* The manager is also used to cache `nodes' of various types while */ + /* limiting their total memory usage. */ + /* */ + /* All limitations are enforced by keeping lists of managed objects */ + /* in most-recently-used order, and flushing old nodes to make room */ + /* for new ones. */ + /* */ + typedef struct FTC_ManagerRec_* FTC_Manager; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FTC_Node */ + /* */ + /* <Description> */ + /* An opaque handle to a cache node object. Each cache node is */ + /* reference-counted. A node with a count of~0 might be flushed */ + /* out of a full cache whenever a lookup request is performed. */ + /* */ + /* If you look up nodes, you have the ability to `acquire' them, */ + /* i.e., to increment their reference count. This will prevent the */ + /* node from being flushed out of the cache until you explicitly */ + /* `release' it (see @FTC_Node_Unref). */ + /* */ + /* See also @FTC_SBitCache_Lookup and @FTC_ImageCache_Lookup. */ + /* */ + typedef struct FTC_NodeRec_* FTC_Node; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_Manager_New */ + /* */ + /* <Description> */ + /* Create a new cache manager. */ + /* */ + /* <Input> */ + /* library :: The parent FreeType library handle to use. */ + /* */ + /* max_faces :: Maximum number of opened @FT_Face objects managed by */ + /* this cache instance. Use~0 for defaults. */ + /* */ + /* max_sizes :: Maximum number of opened @FT_Size objects managed by */ + /* this cache instance. Use~0 for defaults. */ + /* */ + /* max_bytes :: Maximum number of bytes to use for cached data nodes. */ + /* Use~0 for defaults. Note that this value does not */ + /* account for managed @FT_Face and @FT_Size objects. */ + /* */ + /* requester :: An application-provided callback used to translate */ + /* face IDs into real @FT_Face objects. */ + /* */ + /* req_data :: A generic pointer that is passed to the requester */ + /* each time it is called (see @FTC_Face_Requester). */ + /* */ + /* <Output> */ + /* amanager :: A handle to a new manager object. 0~in case of */ + /* failure. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FTC_Manager_New( FT_Library library, + FT_UInt max_faces, + FT_UInt max_sizes, + FT_ULong max_bytes, + FTC_Face_Requester requester, + FT_Pointer req_data, + FTC_Manager *amanager ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_Manager_Reset */ + /* */ + /* <Description> */ + /* Empty a given cache manager. This simply gets rid of all the */ + /* currently cached @FT_Face and @FT_Size objects within the manager. */ + /* */ + /* <InOut> */ + /* manager :: A handle to the manager. */ + /* */ + FT_EXPORT( void ) + FTC_Manager_Reset( FTC_Manager manager ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_Manager_Done */ + /* */ + /* <Description> */ + /* Destroy a given manager after emptying it. */ + /* */ + /* <Input> */ + /* manager :: A handle to the target cache manager object. */ + /* */ + FT_EXPORT( void ) + FTC_Manager_Done( FTC_Manager manager ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_Manager_LookupFace */ + /* */ + /* <Description> */ + /* Retrieve the @FT_Face object that corresponds to a given face ID */ + /* through a cache manager. */ + /* */ + /* <Input> */ + /* manager :: A handle to the cache manager. */ + /* */ + /* face_id :: The ID of the face object. */ + /* */ + /* <Output> */ + /* aface :: A handle to the face object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The returned @FT_Face object is always owned by the manager. You */ + /* should never try to discard it yourself. */ + /* */ + /* The @FT_Face object doesn't necessarily have a current size object */ + /* (i.e., face->size can be 0). If you need a specific `font size', */ + /* use @FTC_Manager_LookupSize instead. */ + /* */ + /* Never change the face's transformation matrix (i.e., never call */ + /* the @FT_Set_Transform function) on a returned face! If you need */ + /* to transform glyphs, do it yourself after glyph loading. */ + /* */ + /* When you perform a lookup, out-of-memory errors are detected */ + /* _within_ the lookup and force incremental flushes of the cache */ + /* until enough memory is released for the lookup to succeed. */ + /* */ + /* If a lookup fails with `FT_Err_Out_Of_Memory' the cache has */ + /* already been completely flushed, and still no memory was available */ + /* for the operation. */ + /* */ + FT_EXPORT( FT_Error ) + FTC_Manager_LookupFace( FTC_Manager manager, + FTC_FaceID face_id, + FT_Face *aface ); + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FTC_ScalerRec */ + /* */ + /* <Description> */ + /* A structure used to describe a given character size in either */ + /* pixels or points to the cache manager. See */ + /* @FTC_Manager_LookupSize. */ + /* */ + /* <Fields> */ + /* face_id :: The source face ID. */ + /* */ + /* width :: The character width. */ + /* */ + /* height :: The character height. */ + /* */ + /* pixel :: A Boolean. If 1, the `width' and `height' fields are */ + /* interpreted as integer pixel character sizes. */ + /* Otherwise, they are expressed as 1/64th of points. */ + /* */ + /* x_res :: Only used when `pixel' is value~0 to indicate the */ + /* horizontal resolution in dpi. */ + /* */ + /* y_res :: Only used when `pixel' is value~0 to indicate the */ + /* vertical resolution in dpi. */ + /* */ + /* <Note> */ + /* This type is mainly used to retrieve @FT_Size objects through the */ + /* cache manager. */ + /* */ + typedef struct FTC_ScalerRec_ + { + FTC_FaceID face_id; + FT_UInt width; + FT_UInt height; + FT_Int pixel; + FT_UInt x_res; + FT_UInt y_res; + + } FTC_ScalerRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FTC_Scaler */ + /* */ + /* <Description> */ + /* A handle to an @FTC_ScalerRec structure. */ + /* */ + typedef struct FTC_ScalerRec_* FTC_Scaler; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_Manager_LookupSize */ + /* */ + /* <Description> */ + /* Retrieve the @FT_Size object that corresponds to a given */ + /* @FTC_ScalerRec pointer through a cache manager. */ + /* */ + /* <Input> */ + /* manager :: A handle to the cache manager. */ + /* */ + /* scaler :: A scaler handle. */ + /* */ + /* <Output> */ + /* asize :: A handle to the size object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The returned @FT_Size object is always owned by the manager. You */ + /* should never try to discard it by yourself. */ + /* */ + /* You can access the parent @FT_Face object simply as `size->face' */ + /* if you need it. Note that this object is also owned by the */ + /* manager. */ + /* */ + /* <Note> */ + /* When you perform a lookup, out-of-memory errors are detected */ + /* _within_ the lookup and force incremental flushes of the cache */ + /* until enough memory is released for the lookup to succeed. */ + /* */ + /* If a lookup fails with `FT_Err_Out_Of_Memory' the cache has */ + /* already been completely flushed, and still no memory is available */ + /* for the operation. */ + /* */ + FT_EXPORT( FT_Error ) + FTC_Manager_LookupSize( FTC_Manager manager, + FTC_Scaler scaler, + FT_Size *asize ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_Node_Unref */ + /* */ + /* <Description> */ + /* Decrement a cache node's internal reference count. When the count */ + /* reaches 0, it is not destroyed but becomes eligible for subsequent */ + /* cache flushes. */ + /* */ + /* <Input> */ + /* node :: The cache node handle. */ + /* */ + /* manager :: The cache manager handle. */ + /* */ + FT_EXPORT( void ) + FTC_Node_Unref( FTC_Node node, + FTC_Manager manager ); + + + /************************************************************************* + * + * @function: + * FTC_Manager_RemoveFaceID + * + * @description: + * A special function used to indicate to the cache manager that + * a given @FTC_FaceID is no longer valid, either because its + * content changed, or because it was deallocated or uninstalled. + * + * @input: + * manager :: + * The cache manager handle. + * + * face_id :: + * The @FTC_FaceID to be removed. + * + * @note: + * This function flushes all nodes from the cache corresponding to this + * `face_id', with the exception of nodes with a non-null reference + * count. + * + * Such nodes are however modified internally so as to never appear + * in later lookups with the same `face_id' value, and to be immediately + * destroyed when released by all their users. + * + */ + FT_EXPORT( void ) + FTC_Manager_RemoveFaceID( FTC_Manager manager, + FTC_FaceID face_id ); + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* cache_subsystem */ + /* */ + /*************************************************************************/ + + /************************************************************************* + * + * @type: + * FTC_CMapCache + * + * @description: + * An opaque handle used to model a charmap cache. This cache is to + * hold character codes -> glyph indices mappings. + * + */ + typedef struct FTC_CMapCacheRec_* FTC_CMapCache; + + + /************************************************************************* + * + * @function: + * FTC_CMapCache_New + * + * @description: + * Create a new charmap cache. + * + * @input: + * manager :: + * A handle to the cache manager. + * + * @output: + * acache :: + * A new cache handle. NULL in case of error. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Like all other caches, this one will be destroyed with the cache + * manager. + * + */ + FT_EXPORT( FT_Error ) + FTC_CMapCache_New( FTC_Manager manager, + FTC_CMapCache *acache ); + + + /************************************************************************ + * + * @function: + * FTC_CMapCache_Lookup + * + * @description: + * Translate a character code into a glyph index, using the charmap + * cache. + * + * @input: + * cache :: + * A charmap cache handle. + * + * face_id :: + * The source face ID. + * + * cmap_index :: + * The index of the charmap in the source face. Any negative value + * means to use the cache @FT_Face's default charmap. + * + * char_code :: + * The character code (in the corresponding charmap). + * + * @return: + * Glyph index. 0~means `no glyph'. + * + */ + FT_EXPORT( FT_UInt ) + FTC_CMapCache_Lookup( FTC_CMapCache cache, + FTC_FaceID face_id, + FT_Int cmap_index, + FT_UInt32 char_code ); + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* cache_subsystem */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** IMAGE CACHE OBJECT *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************* + * + * @struct: + * FTC_ImageTypeRec + * + * @description: + * A structure used to model the type of images in a glyph cache. + * + * @fields: + * face_id :: + * The face ID. + * + * width :: + * The width in pixels. + * + * height :: + * The height in pixels. + * + * flags :: + * The load flags, as in @FT_Load_Glyph. + * + */ + typedef struct FTC_ImageTypeRec_ + { + FTC_FaceID face_id; + FT_Int width; + FT_Int height; + FT_Int32 flags; + + } FTC_ImageTypeRec; + + + /************************************************************************* + * + * @type: + * FTC_ImageType + * + * @description: + * A handle to an @FTC_ImageTypeRec structure. + * + */ + typedef struct FTC_ImageTypeRec_* FTC_ImageType; + + + /* */ + + +#define FTC_IMAGE_TYPE_COMPARE( d1, d2 ) \ + ( (d1)->face_id == (d2)->face_id && \ + (d1)->width == (d2)->width && \ + (d1)->flags == (d2)->flags ) + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + /* this macro is incompatible with LLP64, should not be used */ + +#define FTC_IMAGE_TYPE_HASH( d ) \ + (FT_UFast)( FTC_FACE_ID_HASH( (d)->face_id ) ^ \ + ( (d)->width << 8 ) ^ (d)->height ^ \ + ( (d)->flags << 4 ) ) + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FTC_ImageCache */ + /* */ + /* <Description> */ + /* A handle to an glyph image cache object. They are designed to */ + /* hold many distinct glyph images while not exceeding a certain */ + /* memory threshold. */ + /* */ + typedef struct FTC_ImageCacheRec_* FTC_ImageCache; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_ImageCache_New */ + /* */ + /* <Description> */ + /* Create a new glyph image cache. */ + /* */ + /* <Input> */ + /* manager :: The parent manager for the image cache. */ + /* */ + /* <Output> */ + /* acache :: A handle to the new glyph image cache object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FTC_ImageCache_New( FTC_Manager manager, + FTC_ImageCache *acache ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_ImageCache_Lookup */ + /* */ + /* <Description> */ + /* Retrieve a given glyph image from a glyph image cache. */ + /* */ + /* <Input> */ + /* cache :: A handle to the source glyph image cache. */ + /* */ + /* type :: A pointer to a glyph image type descriptor. */ + /* */ + /* gindex :: The glyph index to retrieve. */ + /* */ + /* <Output> */ + /* aglyph :: The corresponding @FT_Glyph object. 0~in case of */ + /* failure. */ + /* */ + /* anode :: Used to return the address of of the corresponding cache */ + /* node after incrementing its reference count (see note */ + /* below). */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The returned glyph is owned and managed by the glyph image cache. */ + /* Never try to transform or discard it manually! You can however */ + /* create a copy with @FT_Glyph_Copy and modify the new one. */ + /* */ + /* If `anode' is _not_ NULL, it receives the address of the cache */ + /* node containing the glyph image, after increasing its reference */ + /* count. This ensures that the node (as well as the @FT_Glyph) will */ + /* always be kept in the cache until you call @FTC_Node_Unref to */ + /* `release' it. */ + /* */ + /* If `anode' is NULL, the cache node is left unchanged, which means */ + /* that the @FT_Glyph could be flushed out of the cache on the next */ + /* call to one of the caching sub-system APIs. Don't assume that it */ + /* is persistent! */ + /* */ + FT_EXPORT( FT_Error ) + FTC_ImageCache_Lookup( FTC_ImageCache cache, + FTC_ImageType type, + FT_UInt gindex, + FT_Glyph *aglyph, + FTC_Node *anode ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_ImageCache_LookupScaler */ + /* */ + /* <Description> */ + /* A variant of @FTC_ImageCache_Lookup that uses an @FTC_ScalerRec */ + /* to specify the face ID and its size. */ + /* */ + /* <Input> */ + /* cache :: A handle to the source glyph image cache. */ + /* */ + /* scaler :: A pointer to a scaler descriptor. */ + /* */ + /* load_flags :: The corresponding load flags. */ + /* */ + /* gindex :: The glyph index to retrieve. */ + /* */ + /* <Output> */ + /* aglyph :: The corresponding @FT_Glyph object. 0~in case of */ + /* failure. */ + /* */ + /* anode :: Used to return the address of of the corresponding */ + /* cache node after incrementing its reference count */ + /* (see note below). */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The returned glyph is owned and managed by the glyph image cache. */ + /* Never try to transform or discard it manually! You can however */ + /* create a copy with @FT_Glyph_Copy and modify the new one. */ + /* */ + /* If `anode' is _not_ NULL, it receives the address of the cache */ + /* node containing the glyph image, after increasing its reference */ + /* count. This ensures that the node (as well as the @FT_Glyph) will */ + /* always be kept in the cache until you call @FTC_Node_Unref to */ + /* `release' it. */ + /* */ + /* If `anode' is NULL, the cache node is left unchanged, which means */ + /* that the @FT_Glyph could be flushed out of the cache on the next */ + /* call to one of the caching sub-system APIs. Don't assume that it */ + /* is persistent! */ + /* */ + /* Calls to @FT_Set_Char_Size and friends have no effect on cached */ + /* glyphs; you should always use the FreeType cache API instead. */ + /* */ + FT_EXPORT( FT_Error ) + FTC_ImageCache_LookupScaler( FTC_ImageCache cache, + FTC_Scaler scaler, + FT_ULong load_flags, + FT_UInt gindex, + FT_Glyph *aglyph, + FTC_Node *anode ); + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FTC_SBit */ + /* */ + /* <Description> */ + /* A handle to a small bitmap descriptor. See the @FTC_SBitRec */ + /* structure for details. */ + /* */ + typedef struct FTC_SBitRec_* FTC_SBit; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FTC_SBitRec */ + /* */ + /* <Description> */ + /* A very compact structure used to describe a small glyph bitmap. */ + /* */ + /* <Fields> */ + /* width :: The bitmap width in pixels. */ + /* */ + /* height :: The bitmap height in pixels. */ + /* */ + /* left :: The horizontal distance from the pen position to the */ + /* left bitmap border (a.k.a. `left side bearing', or */ + /* `lsb'). */ + /* */ + /* top :: The vertical distance from the pen position (on the */ + /* baseline) to the upper bitmap border (a.k.a. `top */ + /* side bearing'). The distance is positive for upwards */ + /* y~coordinates. */ + /* */ + /* format :: The format of the glyph bitmap (monochrome or gray). */ + /* */ + /* max_grays :: Maximum gray level value (in the range 1 to~255). */ + /* */ + /* pitch :: The number of bytes per bitmap line. May be positive */ + /* or negative. */ + /* */ + /* xadvance :: The horizontal advance width in pixels. */ + /* */ + /* yadvance :: The vertical advance height in pixels. */ + /* */ + /* buffer :: A pointer to the bitmap pixels. */ + /* */ + typedef struct FTC_SBitRec_ + { + FT_Byte width; + FT_Byte height; + FT_Char left; + FT_Char top; + + FT_Byte format; + FT_Byte max_grays; + FT_Short pitch; + FT_Char xadvance; + FT_Char yadvance; + + FT_Byte* buffer; + + } FTC_SBitRec; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FTC_SBitCache */ + /* */ + /* <Description> */ + /* A handle to a small bitmap cache. These are special cache objects */ + /* used to store small glyph bitmaps (and anti-aliased pixmaps) in a */ + /* much more efficient way than the traditional glyph image cache */ + /* implemented by @FTC_ImageCache. */ + /* */ + typedef struct FTC_SBitCacheRec_* FTC_SBitCache; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_SBitCache_New */ + /* */ + /* <Description> */ + /* Create a new cache to store small glyph bitmaps. */ + /* */ + /* <Input> */ + /* manager :: A handle to the source cache manager. */ + /* */ + /* <Output> */ + /* acache :: A handle to the new sbit cache. NULL in case of error. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FTC_SBitCache_New( FTC_Manager manager, + FTC_SBitCache *acache ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_SBitCache_Lookup */ + /* */ + /* <Description> */ + /* Look up a given small glyph bitmap in a given sbit cache and */ + /* `lock' it to prevent its flushing from the cache until needed. */ + /* */ + /* <Input> */ + /* cache :: A handle to the source sbit cache. */ + /* */ + /* type :: A pointer to the glyph image type descriptor. */ + /* */ + /* gindex :: The glyph index. */ + /* */ + /* <Output> */ + /* sbit :: A handle to a small bitmap descriptor. */ + /* */ + /* anode :: Used to return the address of of the corresponding cache */ + /* node after incrementing its reference count (see note */ + /* below). */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The small bitmap descriptor and its bit buffer are owned by the */ + /* cache and should never be freed by the application. They might */ + /* as well disappear from memory on the next cache lookup, so don't */ + /* treat them as persistent data. */ + /* */ + /* The descriptor's `buffer' field is set to~0 to indicate a missing */ + /* glyph bitmap. */ + /* */ + /* If `anode' is _not_ NULL, it receives the address of the cache */ + /* node containing the bitmap, after increasing its reference count. */ + /* This ensures that the node (as well as the image) will always be */ + /* kept in the cache until you call @FTC_Node_Unref to `release' it. */ + /* */ + /* If `anode' is NULL, the cache node is left unchanged, which means */ + /* that the bitmap could be flushed out of the cache on the next */ + /* call to one of the caching sub-system APIs. Don't assume that it */ + /* is persistent! */ + /* */ + FT_EXPORT( FT_Error ) + FTC_SBitCache_Lookup( FTC_SBitCache cache, + FTC_ImageType type, + FT_UInt gindex, + FTC_SBit *sbit, + FTC_Node *anode ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FTC_SBitCache_LookupScaler */ + /* */ + /* <Description> */ + /* A variant of @FTC_SBitCache_Lookup that uses an @FTC_ScalerRec */ + /* to specify the face ID and its size. */ + /* */ + /* <Input> */ + /* cache :: A handle to the source sbit cache. */ + /* */ + /* scaler :: A pointer to the scaler descriptor. */ + /* */ + /* load_flags :: The corresponding load flags. */ + /* */ + /* gindex :: The glyph index. */ + /* */ + /* <Output> */ + /* sbit :: A handle to a small bitmap descriptor. */ + /* */ + /* anode :: Used to return the address of of the corresponding */ + /* cache node after incrementing its reference count */ + /* (see note below). */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The small bitmap descriptor and its bit buffer are owned by the */ + /* cache and should never be freed by the application. They might */ + /* as well disappear from memory on the next cache lookup, so don't */ + /* treat them as persistent data. */ + /* */ + /* The descriptor's `buffer' field is set to~0 to indicate a missing */ + /* glyph bitmap. */ + /* */ + /* If `anode' is _not_ NULL, it receives the address of the cache */ + /* node containing the bitmap, after increasing its reference count. */ + /* This ensures that the node (as well as the image) will always be */ + /* kept in the cache until you call @FTC_Node_Unref to `release' it. */ + /* */ + /* If `anode' is NULL, the cache node is left unchanged, which means */ + /* that the bitmap could be flushed out of the cache on the next */ + /* call to one of the caching sub-system APIs. Don't assume that it */ + /* is persistent! */ + /* */ + FT_EXPORT( FT_Error ) + FTC_SBitCache_LookupScaler( FTC_SBitCache cache, + FTC_Scaler scaler, + FT_ULong load_flags, + FT_UInt gindex, + FTC_SBit *sbit, + FTC_Node *anode ); + + + /* */ + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + /*@***********************************************************************/ + /* */ + /* <Struct> */ + /* FTC_FontRec */ + /* */ + /* <Description> */ + /* A simple structure used to describe a given `font' to the cache */ + /* manager. Note that a `font' is the combination of a given face */ + /* with a given character size. */ + /* */ + /* <Fields> */ + /* face_id :: The ID of the face to use. */ + /* */ + /* pix_width :: The character width in integer pixels. */ + /* */ + /* pix_height :: The character height in integer pixels. */ + /* */ + typedef struct FTC_FontRec_ + { + FTC_FaceID face_id; + FT_UShort pix_width; + FT_UShort pix_height; + + } FTC_FontRec; + + + /* */ + + +#define FTC_FONT_COMPARE( f1, f2 ) \ + ( (f1)->face_id == (f2)->face_id && \ + (f1)->pix_width == (f2)->pix_width && \ + (f1)->pix_height == (f2)->pix_height ) + + /* this macro is incompatible with LLP64, should not be used */ +#define FTC_FONT_HASH( f ) \ + (FT_UInt32)( FTC_FACE_ID_HASH((f)->face_id) ^ \ + ((f)->pix_width << 8) ^ \ + ((f)->pix_height) ) + + typedef FTC_FontRec* FTC_Font; + + + FT_EXPORT( FT_Error ) + FTC_Manager_Lookup_Face( FTC_Manager manager, + FTC_FaceID face_id, + FT_Face *aface ); + + FT_EXPORT( FT_Error ) + FTC_Manager_Lookup_Size( FTC_Manager manager, + FTC_Font font, + FT_Face *aface, + FT_Size *asize ); + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + + /* */ + +FT_END_HEADER + +#endif /* __FTCACHE_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftchapters.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftchapters.h new file mode 100644 index 0000000000..6cdf54e495 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftchapters.h @@ -0,0 +1,104 @@ +/***************************************************************************/ +/* */ +/* This file defines the structure of the FreeType reference. */ +/* It is used by the python script which generates the HTML files. */ +/* */ +/***************************************************************************/ + + +/***************************************************************************/ +/* */ +/* <Chapter> */ +/* general_remarks */ +/* */ +/* <Title> */ +/* General Remarks */ +/* */ +/* <Sections> */ +/* user_allocation */ +/* */ +/***************************************************************************/ + + +/***************************************************************************/ +/* */ +/* <Chapter> */ +/* core_api */ +/* */ +/* <Title> */ +/* Core API */ +/* */ +/* <Sections> */ +/* version */ +/* basic_types */ +/* base_interface */ +/* glyph_variants */ +/* glyph_management */ +/* mac_specific */ +/* sizes_management */ +/* header_file_macros */ +/* */ +/***************************************************************************/ + + +/***************************************************************************/ +/* */ +/* <Chapter> */ +/* format_specific */ +/* */ +/* <Title> */ +/* Format-Specific API */ +/* */ +/* <Sections> */ +/* multiple_masters */ +/* truetype_tables */ +/* type1_tables */ +/* sfnt_names */ +/* bdf_fonts */ +/* cid_fonts */ +/* pfr_fonts */ +/* winfnt_fonts */ +/* font_formats */ +/* gasp_table */ +/* */ +/***************************************************************************/ + + +/***************************************************************************/ +/* */ +/* <Chapter> */ +/* cache_subsystem */ +/* */ +/* <Title> */ +/* Cache Sub-System */ +/* */ +/* <Sections> */ +/* cache_subsystem */ +/* */ +/***************************************************************************/ + + +/***************************************************************************/ +/* */ +/* <Chapter> */ +/* support_api */ +/* */ +/* <Title> */ +/* Support API */ +/* */ +/* <Sections> */ +/* computations */ +/* list_processing */ +/* outline_processing */ +/* quick_advance */ +/* bitmap_handling */ +/* raster */ +/* glyph_stroker */ +/* system_interface */ +/* module_management */ +/* gzip */ +/* lzw */ +/* bzip2 */ +/* lcd_filtering */ +/* */ +/***************************************************************************/ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftcid.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftcid.h new file mode 100644 index 0000000000..203a30caf8 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftcid.h @@ -0,0 +1,166 @@ +/***************************************************************************/ +/* */ +/* ftcid.h */ +/* */ +/* FreeType API for accessing CID font information (specification). */ +/* */ +/* Copyright 2007, 2009 by Dereg Clegg, Michael Toftdal. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTCID_H__ +#define __FTCID_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* cid_fonts */ + /* */ + /* <Title> */ + /* CID Fonts */ + /* */ + /* <Abstract> */ + /* CID-keyed font specific API. */ + /* */ + /* <Description> */ + /* This section contains the declaration of CID-keyed font specific */ + /* functions. */ + /* */ + /*************************************************************************/ + + + /********************************************************************** + * + * @function: + * FT_Get_CID_Registry_Ordering_Supplement + * + * @description: + * Retrieve the Registry/Ordering/Supplement triple (also known as the + * "R/O/S") from a CID-keyed font. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * registry :: + * The registry, as a C~string, owned by the face. + * + * ordering :: + * The ordering, as a C~string, owned by the face. + * + * supplement :: + * The supplement. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with CID faces, returning an error + * otherwise. + * + * @since: + * 2.3.6 + */ + FT_EXPORT( FT_Error ) + FT_Get_CID_Registry_Ordering_Supplement( FT_Face face, + const char* *registry, + const char* *ordering, + FT_Int *supplement); + + + /********************************************************************** + * + * @function: + * FT_Get_CID_Is_Internally_CID_Keyed + * + * @description: + * Retrieve the type of the input face, CID keyed or not. In + * constrast to the @FT_IS_CID_KEYED macro this function returns + * successfully also for CID-keyed fonts in an SNFT wrapper. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * is_cid :: + * The type of the face as an @FT_Bool. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with CID faces and OpenType fonts, + * returning an error otherwise. + * + * @since: + * 2.3.9 + */ + FT_EXPORT( FT_Error ) + FT_Get_CID_Is_Internally_CID_Keyed( FT_Face face, + FT_Bool *is_cid ); + + + /********************************************************************** + * + * @function: + * FT_Get_CID_From_Glyph_Index + * + * @description: + * Retrieve the CID of the input glyph index. + * + * @input: + * face :: + * A handle to the input face. + * + * glyph_index :: + * The input glyph index. + * + * @output: + * cid :: + * The CID as an @FT_UInt. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with CID faces and OpenType fonts, + * returning an error otherwise. + * + * @since: + * 2.3.9 + */ + FT_EXPORT( FT_Error ) + FT_Get_CID_From_Glyph_Index( FT_Face face, + FT_UInt glyph_index, + FT_UInt *cid ); + + /* */ + +FT_END_HEADER + +#endif /* __FTCID_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fterrdef.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fterrdef.h new file mode 100644 index 0000000000..d4e7287f2e --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fterrdef.h @@ -0,0 +1,243 @@ +/***************************************************************************/ +/* */ +/* fterrdef.h */ +/* */ +/* FreeType error codes (specification). */ +/* */ +/* Copyright 2002, 2004, 2006, 2007, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** LIST OF ERROR CODES/MESSAGES *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + + /* You need to define both FT_ERRORDEF_ and FT_NOERRORDEF_ before */ + /* including this file. */ + + + /* generic errors */ + + FT_NOERRORDEF_( Ok, 0x00, \ + "no error" ) + + FT_ERRORDEF_( Cannot_Open_Resource, 0x01, \ + "cannot open resource" ) + FT_ERRORDEF_( Unknown_File_Format, 0x02, \ + "unknown file format" ) + FT_ERRORDEF_( Invalid_File_Format, 0x03, \ + "broken file" ) + FT_ERRORDEF_( Invalid_Version, 0x04, \ + "invalid FreeType version" ) + FT_ERRORDEF_( Lower_Module_Version, 0x05, \ + "module version is too low" ) + FT_ERRORDEF_( Invalid_Argument, 0x06, \ + "invalid argument" ) + FT_ERRORDEF_( Unimplemented_Feature, 0x07, \ + "unimplemented feature" ) + FT_ERRORDEF_( Invalid_Table, 0x08, \ + "broken table" ) + FT_ERRORDEF_( Invalid_Offset, 0x09, \ + "broken offset within table" ) + FT_ERRORDEF_( Array_Too_Large, 0x0A, \ + "array allocation size too large" ) + + /* glyph/character errors */ + + FT_ERRORDEF_( Invalid_Glyph_Index, 0x10, \ + "invalid glyph index" ) + FT_ERRORDEF_( Invalid_Character_Code, 0x11, \ + "invalid character code" ) + FT_ERRORDEF_( Invalid_Glyph_Format, 0x12, \ + "unsupported glyph image format" ) + FT_ERRORDEF_( Cannot_Render_Glyph, 0x13, \ + "cannot render this glyph format" ) + FT_ERRORDEF_( Invalid_Outline, 0x14, \ + "invalid outline" ) + FT_ERRORDEF_( Invalid_Composite, 0x15, \ + "invalid composite glyph" ) + FT_ERRORDEF_( Too_Many_Hints, 0x16, \ + "too many hints" ) + FT_ERRORDEF_( Invalid_Pixel_Size, 0x17, \ + "invalid pixel size" ) + + /* handle errors */ + + FT_ERRORDEF_( Invalid_Handle, 0x20, \ + "invalid object handle" ) + FT_ERRORDEF_( Invalid_Library_Handle, 0x21, \ + "invalid library handle" ) + FT_ERRORDEF_( Invalid_Driver_Handle, 0x22, \ + "invalid module handle" ) + FT_ERRORDEF_( Invalid_Face_Handle, 0x23, \ + "invalid face handle" ) + FT_ERRORDEF_( Invalid_Size_Handle, 0x24, \ + "invalid size handle" ) + FT_ERRORDEF_( Invalid_Slot_Handle, 0x25, \ + "invalid glyph slot handle" ) + FT_ERRORDEF_( Invalid_CharMap_Handle, 0x26, \ + "invalid charmap handle" ) + FT_ERRORDEF_( Invalid_Cache_Handle, 0x27, \ + "invalid cache manager handle" ) + FT_ERRORDEF_( Invalid_Stream_Handle, 0x28, \ + "invalid stream handle" ) + + /* driver errors */ + + FT_ERRORDEF_( Too_Many_Drivers, 0x30, \ + "too many modules" ) + FT_ERRORDEF_( Too_Many_Extensions, 0x31, \ + "too many extensions" ) + + /* memory errors */ + + FT_ERRORDEF_( Out_Of_Memory, 0x40, \ + "out of memory" ) + FT_ERRORDEF_( Unlisted_Object, 0x41, \ + "unlisted object" ) + + /* stream errors */ + + FT_ERRORDEF_( Cannot_Open_Stream, 0x51, \ + "cannot open stream" ) + FT_ERRORDEF_( Invalid_Stream_Seek, 0x52, \ + "invalid stream seek" ) + FT_ERRORDEF_( Invalid_Stream_Skip, 0x53, \ + "invalid stream skip" ) + FT_ERRORDEF_( Invalid_Stream_Read, 0x54, \ + "invalid stream read" ) + FT_ERRORDEF_( Invalid_Stream_Operation, 0x55, \ + "invalid stream operation" ) + FT_ERRORDEF_( Invalid_Frame_Operation, 0x56, \ + "invalid frame operation" ) + FT_ERRORDEF_( Nested_Frame_Access, 0x57, \ + "nested frame access" ) + FT_ERRORDEF_( Invalid_Frame_Read, 0x58, \ + "invalid frame read" ) + + /* raster errors */ + + FT_ERRORDEF_( Raster_Uninitialized, 0x60, \ + "raster uninitialized" ) + FT_ERRORDEF_( Raster_Corrupted, 0x61, \ + "raster corrupted" ) + FT_ERRORDEF_( Raster_Overflow, 0x62, \ + "raster overflow" ) + FT_ERRORDEF_( Raster_Negative_Height, 0x63, \ + "negative height while rastering" ) + + /* cache errors */ + + FT_ERRORDEF_( Too_Many_Caches, 0x70, \ + "too many registered caches" ) + + /* TrueType and SFNT errors */ + + FT_ERRORDEF_( Invalid_Opcode, 0x80, \ + "invalid opcode" ) + FT_ERRORDEF_( Too_Few_Arguments, 0x81, \ + "too few arguments" ) + FT_ERRORDEF_( Stack_Overflow, 0x82, \ + "stack overflow" ) + FT_ERRORDEF_( Code_Overflow, 0x83, \ + "code overflow" ) + FT_ERRORDEF_( Bad_Argument, 0x84, \ + "bad argument" ) + FT_ERRORDEF_( Divide_By_Zero, 0x85, \ + "division by zero" ) + FT_ERRORDEF_( Invalid_Reference, 0x86, \ + "invalid reference" ) + FT_ERRORDEF_( Debug_OpCode, 0x87, \ + "found debug opcode" ) + FT_ERRORDEF_( ENDF_In_Exec_Stream, 0x88, \ + "found ENDF opcode in execution stream" ) + FT_ERRORDEF_( Nested_DEFS, 0x89, \ + "nested DEFS" ) + FT_ERRORDEF_( Invalid_CodeRange, 0x8A, \ + "invalid code range" ) + FT_ERRORDEF_( Execution_Too_Long, 0x8B, \ + "execution context too long" ) + FT_ERRORDEF_( Too_Many_Function_Defs, 0x8C, \ + "too many function definitions" ) + FT_ERRORDEF_( Too_Many_Instruction_Defs, 0x8D, \ + "too many instruction definitions" ) + FT_ERRORDEF_( Table_Missing, 0x8E, \ + "SFNT font table missing" ) + FT_ERRORDEF_( Horiz_Header_Missing, 0x8F, \ + "horizontal header (hhea) table missing" ) + FT_ERRORDEF_( Locations_Missing, 0x90, \ + "locations (loca) table missing" ) + FT_ERRORDEF_( Name_Table_Missing, 0x91, \ + "name table missing" ) + FT_ERRORDEF_( CMap_Table_Missing, 0x92, \ + "character map (cmap) table missing" ) + FT_ERRORDEF_( Hmtx_Table_Missing, 0x93, \ + "horizontal metrics (hmtx) table missing" ) + FT_ERRORDEF_( Post_Table_Missing, 0x94, \ + "PostScript (post) table missing" ) + FT_ERRORDEF_( Invalid_Horiz_Metrics, 0x95, \ + "invalid horizontal metrics" ) + FT_ERRORDEF_( Invalid_CharMap_Format, 0x96, \ + "invalid character map (cmap) format" ) + FT_ERRORDEF_( Invalid_PPem, 0x97, \ + "invalid ppem value" ) + FT_ERRORDEF_( Invalid_Vert_Metrics, 0x98, \ + "invalid vertical metrics" ) + FT_ERRORDEF_( Could_Not_Find_Context, 0x99, \ + "could not find context" ) + FT_ERRORDEF_( Invalid_Post_Table_Format, 0x9A, \ + "invalid PostScript (post) table format" ) + FT_ERRORDEF_( Invalid_Post_Table, 0x9B, \ + "invalid PostScript (post) table" ) + + /* CFF, CID, and Type 1 errors */ + + FT_ERRORDEF_( Syntax_Error, 0xA0, \ + "opcode syntax error" ) + FT_ERRORDEF_( Stack_Underflow, 0xA1, \ + "argument stack underflow" ) + FT_ERRORDEF_( Ignore, 0xA2, \ + "ignore" ) + FT_ERRORDEF_( No_Unicode_Glyph_Name, 0xA3, \ + "no Unicode glyph name found" ) + + /* BDF errors */ + + FT_ERRORDEF_( Missing_Startfont_Field, 0xB0, \ + "`STARTFONT' field missing" ) + FT_ERRORDEF_( Missing_Font_Field, 0xB1, \ + "`FONT' field missing" ) + FT_ERRORDEF_( Missing_Size_Field, 0xB2, \ + "`SIZE' field missing" ) + FT_ERRORDEF_( Missing_Fontboundingbox_Field, 0xB3, \ + "`FONTBOUNDINGBOX' field missing" ) + FT_ERRORDEF_( Missing_Chars_Field, 0xB4, \ + "`CHARS' field missing" ) + FT_ERRORDEF_( Missing_Startchar_Field, 0xB5, \ + "`STARTCHAR' field missing" ) + FT_ERRORDEF_( Missing_Encoding_Field, 0xB6, \ + "`ENCODING' field missing" ) + FT_ERRORDEF_( Missing_Bbx_Field, 0xB7, \ + "`BBX' field missing" ) + FT_ERRORDEF_( Bbx_Too_Big, 0xB8, \ + "`BBX' too big" ) + FT_ERRORDEF_( Corrupted_Font_Header, 0xB9, \ + "Font header corrupted or missing fields" ) + FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA, \ + "Font glyphs corrupted or missing fields" ) + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fterrors.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fterrors.h new file mode 100644 index 0000000000..6600dadd0d --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fterrors.h @@ -0,0 +1,206 @@ +/***************************************************************************/ +/* */ +/* fterrors.h */ +/* */ +/* FreeType error code handling (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2004, 2007 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This special header file is used to define the handling of FT2 */ + /* enumeration constants. It can also be used to generate error message */ + /* strings with a small macro trick explained below. */ + /* */ + /* I - Error Formats */ + /* ----------------- */ + /* */ + /* The configuration macro FT_CONFIG_OPTION_USE_MODULE_ERRORS can be */ + /* defined in ftoption.h in order to make the higher byte indicate */ + /* the module where the error has happened (this is not compatible */ + /* with standard builds of FreeType 2). You can then use the macro */ + /* FT_ERROR_BASE macro to extract the generic error code from an */ + /* FT_Error value. */ + /* */ + /* */ + /* II - Error Message strings */ + /* -------------------------- */ + /* */ + /* The error definitions below are made through special macros that */ + /* allow client applications to build a table of error message strings */ + /* if they need it. The strings are not included in a normal build of */ + /* FreeType 2 to save space (most client applications do not use */ + /* them). */ + /* */ + /* To do so, you have to define the following macros before including */ + /* this file: */ + /* */ + /* FT_ERROR_START_LIST :: */ + /* This macro is called before anything else to define the start of */ + /* the error list. It is followed by several FT_ERROR_DEF calls */ + /* (see below). */ + /* */ + /* FT_ERROR_DEF( e, v, s ) :: */ + /* This macro is called to define one single error. */ + /* `e' is the error code identifier (e.g. FT_Err_Invalid_Argument). */ + /* `v' is the error numerical value. */ + /* `s' is the corresponding error string. */ + /* */ + /* FT_ERROR_END_LIST :: */ + /* This macro ends the list. */ + /* */ + /* Additionally, you have to undefine __FTERRORS_H__ before #including */ + /* this file. */ + /* */ + /* Here is a simple example: */ + /* */ + /* { */ + /* #undef __FTERRORS_H__ */ + /* #define FT_ERRORDEF( e, v, s ) { e, s }, */ + /* #define FT_ERROR_START_LIST { */ + /* #define FT_ERROR_END_LIST { 0, 0 } }; */ + /* */ + /* const struct */ + /* { */ + /* int err_code; */ + /* const char* err_msg; */ + /* } ft_errors[] = */ + /* */ + /* #include FT_ERRORS_H */ + /* } */ + /* */ + /*************************************************************************/ + + +#ifndef __FTERRORS_H__ +#define __FTERRORS_H__ + + + /* include module base error codes */ +#include FT_MODULE_ERRORS_H + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** SETUP MACROS *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#undef FT_NEED_EXTERN_C + +#undef FT_ERR_XCAT +#undef FT_ERR_CAT + +#define FT_ERR_XCAT( x, y ) x ## y +#define FT_ERR_CAT( x, y ) FT_ERR_XCAT( x, y ) + + + /* FT_ERR_PREFIX is used as a prefix for error identifiers. */ + /* By default, we use `FT_Err_'. */ + /* */ +#ifndef FT_ERR_PREFIX +#define FT_ERR_PREFIX FT_Err_ +#endif + + + /* FT_ERR_BASE is used as the base for module-specific errors. */ + /* */ +#ifdef FT_CONFIG_OPTION_USE_MODULE_ERRORS + +#ifndef FT_ERR_BASE +#define FT_ERR_BASE FT_Mod_Err_Base +#endif + +#else + +#undef FT_ERR_BASE +#define FT_ERR_BASE 0 + +#endif /* FT_CONFIG_OPTION_USE_MODULE_ERRORS */ + + + /* If FT_ERRORDEF is not defined, we need to define a simple */ + /* enumeration type. */ + /* */ +#ifndef FT_ERRORDEF + +#define FT_ERRORDEF( e, v, s ) e = v, +#define FT_ERROR_START_LIST enum { +#define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) }; + +#ifdef __cplusplus +#define FT_NEED_EXTERN_C + extern "C" { +#endif + +#endif /* !FT_ERRORDEF */ + + + /* this macro is used to define an error */ +#define FT_ERRORDEF_( e, v, s ) \ + FT_ERRORDEF( FT_ERR_CAT( FT_ERR_PREFIX, e ), v + FT_ERR_BASE, s ) + + /* this is only used for <module>_Err_Ok, which must be 0! */ +#define FT_NOERRORDEF_( e, v, s ) \ + FT_ERRORDEF( FT_ERR_CAT( FT_ERR_PREFIX, e ), v, s ) + + +#ifdef FT_ERROR_START_LIST + FT_ERROR_START_LIST +#endif + + + /* now include the error codes */ +#include FT_ERROR_DEFINITIONS_H + + +#ifdef FT_ERROR_END_LIST + FT_ERROR_END_LIST +#endif + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** SIMPLE CLEANUP *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + +#ifdef FT_NEED_EXTERN_C + } +#endif + +#undef FT_ERROR_START_LIST +#undef FT_ERROR_END_LIST + +#undef FT_ERRORDEF +#undef FT_ERRORDEF_ +#undef FT_NOERRORDEF_ + +#undef FT_NEED_EXTERN_C +#undef FT_ERR_CONCAT +#undef FT_ERR_BASE + + /* FT_KEEP_ERR_PREFIX is needed for ftvalid.h */ +#ifndef FT_KEEP_ERR_PREFIX +#undef FT_ERR_PREFIX +#endif + +#endif /* __FTERRORS_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftgasp.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftgasp.h new file mode 100644 index 0000000000..5e978e5c14 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftgasp.h @@ -0,0 +1,128 @@ +/***************************************************************************/ +/* */ +/* ftgasp.h */ +/* */ +/* Access of TrueType's `gasp' table (specification). */ +/* */ +/* Copyright 2007, 2008, 2011 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef _FT_GASP_H_ +#define _FT_GASP_H_ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + + /*************************************************************************** + * + * @section: + * gasp_table + * + * @title: + * Gasp Table + * + * @abstract: + * Retrieving TrueType `gasp' table entries. + * + * @description: + * The function @FT_Get_Gasp can be used to query a TrueType or OpenType + * font for specific entries in its `gasp' table, if any. This is + * mainly useful when implementing native TrueType hinting with the + * bytecode interpreter to duplicate the Windows text rendering results. + */ + + /************************************************************************* + * + * @enum: + * FT_GASP_XXX + * + * @description: + * A list of values and/or bit-flags returned by the @FT_Get_Gasp + * function. + * + * @values: + * FT_GASP_NO_TABLE :: + * This special value means that there is no GASP table in this face. + * It is up to the client to decide what to do. + * + * FT_GASP_DO_GRIDFIT :: + * Grid-fitting and hinting should be performed at the specified ppem. + * This *really* means TrueType bytecode interpretation. If this bit + * is not set, no hinting gets applied. + * + * FT_GASP_DO_GRAY :: + * Anti-aliased rendering should be performed at the specified ppem. + * If not set, do monochrome rendering. + * + * FT_GASP_SYMMETRIC_SMOOTHING :: + * If set, smoothing along multiple axes must be used with ClearType. + * + * FT_GASP_SYMMETRIC_GRIDFIT :: + * Grid-fitting must be used with ClearType's symmetric smoothing. + * + * @note: + * The bit-flags `FT_GASP_DO_GRIDFIT' and `FT_GASP_DO_GRAY' are to be + * used for standard font rasterization only. Independently of that, + * `FT_GASP_SYMMETRIC_SMOOTHING' and `FT_GASP_SYMMETRIC_GRIDFIT' are to + * be used if ClearType is enabled (and `FT_GASP_DO_GRIDFIT' and + * `FT_GASP_DO_GRAY' are consequently ignored). + * + * `ClearType' is Microsoft's implementation of LCD rendering, partly + * protected by patents. + * + * @since: + * 2.3.0 + */ +#define FT_GASP_NO_TABLE -1 +#define FT_GASP_DO_GRIDFIT 0x01 +#define FT_GASP_DO_GRAY 0x02 +#define FT_GASP_SYMMETRIC_SMOOTHING 0x08 +#define FT_GASP_SYMMETRIC_GRIDFIT 0x10 + + + /************************************************************************* + * + * @func: + * FT_Get_Gasp + * + * @description: + * Read the `gasp' table from a TrueType or OpenType font file and + * return the entry corresponding to a given character pixel size. + * + * @input: + * face :: The source face handle. + * ppem :: The vertical character pixel size. + * + * @return: + * Bit flags (see @FT_GASP_XXX), or @FT_GASP_NO_TABLE if there is no + * `gasp' table in the face. + * + * @since: + * 2.3.0 + */ + FT_EXPORT( FT_Int ) + FT_Get_Gasp( FT_Face face, + FT_UInt ppem ); + +/* */ + +#endif /* _FT_GASP_H_ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftglyph.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftglyph.h new file mode 100644 index 0000000000..3de69f7aed --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftglyph.h @@ -0,0 +1,620 @@ +/***************************************************************************/ +/* */ +/* ftglyph.h */ +/* */ +/* FreeType convenience functions to handle glyphs (specification). */ +/* */ +/* Copyright 1996-2003, 2006, 2008, 2009, 2011 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This file contains the definition of several convenience functions */ + /* that can be used by client applications to easily retrieve glyph */ + /* bitmaps and outlines from a given face. */ + /* */ + /* These functions should be optional if you are writing a font server */ + /* or text layout engine on top of FreeType. However, they are pretty */ + /* handy for many other simple uses of the library. */ + /* */ + /*************************************************************************/ + + +#ifndef __FTGLYPH_H__ +#define __FTGLYPH_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* glyph_management */ + /* */ + /* <Title> */ + /* Glyph Management */ + /* */ + /* <Abstract> */ + /* Generic interface to manage individual glyph data. */ + /* */ + /* <Description> */ + /* This section contains definitions used to manage glyph data */ + /* through generic FT_Glyph objects. Each of them can contain a */ + /* bitmap, a vector outline, or even images in other formats. */ + /* */ + /*************************************************************************/ + + + /* forward declaration to a private type */ + typedef struct FT_Glyph_Class_ FT_Glyph_Class; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Glyph */ + /* */ + /* <Description> */ + /* Handle to an object used to model generic glyph images. It is a */ + /* pointer to the @FT_GlyphRec structure and can contain a glyph */ + /* bitmap or pointer. */ + /* */ + /* <Note> */ + /* Glyph objects are not owned by the library. You must thus release */ + /* them manually (through @FT_Done_Glyph) _before_ calling */ + /* @FT_Done_FreeType. */ + /* */ + typedef struct FT_GlyphRec_* FT_Glyph; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_GlyphRec */ + /* */ + /* <Description> */ + /* The root glyph structure contains a given glyph image plus its */ + /* advance width in 16.16 fixed float format. */ + /* */ + /* <Fields> */ + /* library :: A handle to the FreeType library object. */ + /* */ + /* clazz :: A pointer to the glyph's class. Private. */ + /* */ + /* format :: The format of the glyph's image. */ + /* */ + /* advance :: A 16.16 vector that gives the glyph's advance width. */ + /* */ + typedef struct FT_GlyphRec_ + { + FT_Library library; + const FT_Glyph_Class* clazz; + FT_Glyph_Format format; + FT_Vector advance; + + } FT_GlyphRec; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_BitmapGlyph */ + /* */ + /* <Description> */ + /* A handle to an object used to model a bitmap glyph image. This is */ + /* a sub-class of @FT_Glyph, and a pointer to @FT_BitmapGlyphRec. */ + /* */ + typedef struct FT_BitmapGlyphRec_* FT_BitmapGlyph; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_BitmapGlyphRec */ + /* */ + /* <Description> */ + /* A structure used for bitmap glyph images. This really is a */ + /* `sub-class' of @FT_GlyphRec. */ + /* */ + /* <Fields> */ + /* root :: The root @FT_Glyph fields. */ + /* */ + /* left :: The left-side bearing, i.e., the horizontal distance */ + /* from the current pen position to the left border of the */ + /* glyph bitmap. */ + /* */ + /* top :: The top-side bearing, i.e., the vertical distance from */ + /* the current pen position to the top border of the glyph */ + /* bitmap. This distance is positive for upwards~y! */ + /* */ + /* bitmap :: A descriptor for the bitmap. */ + /* */ + /* <Note> */ + /* You can typecast an @FT_Glyph to @FT_BitmapGlyph if you have */ + /* `glyph->format == FT_GLYPH_FORMAT_BITMAP'. This lets you access */ + /* the bitmap's contents easily. */ + /* */ + /* The corresponding pixel buffer is always owned by @FT_BitmapGlyph */ + /* and is thus created and destroyed with it. */ + /* */ + typedef struct FT_BitmapGlyphRec_ + { + FT_GlyphRec root; + FT_Int left; + FT_Int top; + FT_Bitmap bitmap; + + } FT_BitmapGlyphRec; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_OutlineGlyph */ + /* */ + /* <Description> */ + /* A handle to an object used to model an outline glyph image. This */ + /* is a sub-class of @FT_Glyph, and a pointer to @FT_OutlineGlyphRec. */ + /* */ + typedef struct FT_OutlineGlyphRec_* FT_OutlineGlyph; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_OutlineGlyphRec */ + /* */ + /* <Description> */ + /* A structure used for outline (vectorial) glyph images. This */ + /* really is a `sub-class' of @FT_GlyphRec. */ + /* */ + /* <Fields> */ + /* root :: The root @FT_Glyph fields. */ + /* */ + /* outline :: A descriptor for the outline. */ + /* */ + /* <Note> */ + /* You can typecast an @FT_Glyph to @FT_OutlineGlyph if you have */ + /* `glyph->format == FT_GLYPH_FORMAT_OUTLINE'. This lets you access */ + /* the outline's content easily. */ + /* */ + /* As the outline is extracted from a glyph slot, its coordinates are */ + /* expressed normally in 26.6 pixels, unless the flag */ + /* @FT_LOAD_NO_SCALE was used in @FT_Load_Glyph() or @FT_Load_Char(). */ + /* */ + /* The outline's tables are always owned by the object and are */ + /* destroyed with it. */ + /* */ + typedef struct FT_OutlineGlyphRec_ + { + FT_GlyphRec root; + FT_Outline outline; + + } FT_OutlineGlyphRec; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Glyph */ + /* */ + /* <Description> */ + /* A function used to extract a glyph image from a slot. Note that */ + /* the created @FT_Glyph object must be released with @FT_Done_Glyph. */ + /* */ + /* <Input> */ + /* slot :: A handle to the source glyph slot. */ + /* */ + /* <Output> */ + /* aglyph :: A handle to the glyph object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Get_Glyph( FT_GlyphSlot slot, + FT_Glyph *aglyph ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Glyph_Copy */ + /* */ + /* <Description> */ + /* A function used to copy a glyph image. Note that the created */ + /* @FT_Glyph object must be released with @FT_Done_Glyph. */ + /* */ + /* <Input> */ + /* source :: A handle to the source glyph object. */ + /* */ + /* <Output> */ + /* target :: A handle to the target glyph object. 0~in case of */ + /* error. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Glyph_Copy( FT_Glyph source, + FT_Glyph *target ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Glyph_Transform */ + /* */ + /* <Description> */ + /* Transform a glyph image if its format is scalable. */ + /* */ + /* <InOut> */ + /* glyph :: A handle to the target glyph object. */ + /* */ + /* <Input> */ + /* matrix :: A pointer to a 2x2 matrix to apply. */ + /* */ + /* delta :: A pointer to a 2d vector to apply. Coordinates are */ + /* expressed in 1/64th of a pixel. */ + /* */ + /* <Return> */ + /* FreeType error code (if not 0, the glyph format is not scalable). */ + /* */ + /* <Note> */ + /* The 2x2 transformation matrix is also applied to the glyph's */ + /* advance vector. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Glyph_Transform( FT_Glyph glyph, + FT_Matrix* matrix, + FT_Vector* delta ); + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* FT_Glyph_BBox_Mode */ + /* */ + /* <Description> */ + /* The mode how the values of @FT_Glyph_Get_CBox are returned. */ + /* */ + /* <Values> */ + /* FT_GLYPH_BBOX_UNSCALED :: */ + /* Return unscaled font units. */ + /* */ + /* FT_GLYPH_BBOX_SUBPIXELS :: */ + /* Return unfitted 26.6 coordinates. */ + /* */ + /* FT_GLYPH_BBOX_GRIDFIT :: */ + /* Return grid-fitted 26.6 coordinates. */ + /* */ + /* FT_GLYPH_BBOX_TRUNCATE :: */ + /* Return coordinates in integer pixels. */ + /* */ + /* FT_GLYPH_BBOX_PIXELS :: */ + /* Return grid-fitted pixel coordinates. */ + /* */ + typedef enum FT_Glyph_BBox_Mode_ + { + FT_GLYPH_BBOX_UNSCALED = 0, + FT_GLYPH_BBOX_SUBPIXELS = 0, + FT_GLYPH_BBOX_GRIDFIT = 1, + FT_GLYPH_BBOX_TRUNCATE = 2, + FT_GLYPH_BBOX_PIXELS = 3 + + } FT_Glyph_BBox_Mode; + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* ft_glyph_bbox_xxx */ + /* */ + /* <Description> */ + /* These constants are deprecated. Use the corresponding */ + /* @FT_Glyph_BBox_Mode values instead. */ + /* */ + /* <Values> */ + /* ft_glyph_bbox_unscaled :: See @FT_GLYPH_BBOX_UNSCALED. */ + /* ft_glyph_bbox_subpixels :: See @FT_GLYPH_BBOX_SUBPIXELS. */ + /* ft_glyph_bbox_gridfit :: See @FT_GLYPH_BBOX_GRIDFIT. */ + /* ft_glyph_bbox_truncate :: See @FT_GLYPH_BBOX_TRUNCATE. */ + /* ft_glyph_bbox_pixels :: See @FT_GLYPH_BBOX_PIXELS. */ + /* */ +#define ft_glyph_bbox_unscaled FT_GLYPH_BBOX_UNSCALED +#define ft_glyph_bbox_subpixels FT_GLYPH_BBOX_SUBPIXELS +#define ft_glyph_bbox_gridfit FT_GLYPH_BBOX_GRIDFIT +#define ft_glyph_bbox_truncate FT_GLYPH_BBOX_TRUNCATE +#define ft_glyph_bbox_pixels FT_GLYPH_BBOX_PIXELS + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Glyph_Get_CBox */ + /* */ + /* <Description> */ + /* Return a glyph's `control box'. The control box encloses all the */ + /* outline's points, including Bézier control points. Though it */ + /* coincides with the exact bounding box for most glyphs, it can be */ + /* slightly larger in some situations (like when rotating an outline */ + /* which contains Bézier outside arcs). */ + /* */ + /* Computing the control box is very fast, while getting the bounding */ + /* box can take much more time as it needs to walk over all segments */ + /* and arcs in the outline. To get the latter, you can use the */ + /* `ftbbox' component which is dedicated to this single task. */ + /* */ + /* <Input> */ + /* glyph :: A handle to the source glyph object. */ + /* */ + /* mode :: The mode which indicates how to interpret the returned */ + /* bounding box values. */ + /* */ + /* <Output> */ + /* acbox :: The glyph coordinate bounding box. Coordinates are */ + /* expressed in 1/64th of pixels if it is grid-fitted. */ + /* */ + /* <Note> */ + /* Coordinates are relative to the glyph origin, using the y~upwards */ + /* convention. */ + /* */ + /* If the glyph has been loaded with @FT_LOAD_NO_SCALE, `bbox_mode' */ + /* must be set to @FT_GLYPH_BBOX_UNSCALED to get unscaled font */ + /* units in 26.6 pixel format. The value @FT_GLYPH_BBOX_SUBPIXELS */ + /* is another name for this constant. */ + /* */ + /* If the font is tricky and the glyph has been loaded with */ + /* @FT_LOAD_NO_SCALE, the resulting CBox is meaningless. To get */ + /* reasonable values for the CBox it is necessary to load the glyph */ + /* at a large ppem value (so that the hinting instructions can */ + /* properly shift and scale the subglyphs), then extracting the CBox */ + /* which can be eventually converted back to font units. */ + /* */ + /* Note that the maximum coordinates are exclusive, which means that */ + /* one can compute the width and height of the glyph image (be it in */ + /* integer or 26.6 pixels) as: */ + /* */ + /* { */ + /* width = bbox.xMax - bbox.xMin; */ + /* height = bbox.yMax - bbox.yMin; */ + /* } */ + /* */ + /* Note also that for 26.6 coordinates, if `bbox_mode' is set to */ + /* @FT_GLYPH_BBOX_GRIDFIT, the coordinates will also be grid-fitted, */ + /* which corresponds to: */ + /* */ + /* { */ + /* bbox.xMin = FLOOR(bbox.xMin); */ + /* bbox.yMin = FLOOR(bbox.yMin); */ + /* bbox.xMax = CEILING(bbox.xMax); */ + /* bbox.yMax = CEILING(bbox.yMax); */ + /* } */ + /* */ + /* To get the bbox in pixel coordinates, set `bbox_mode' to */ + /* @FT_GLYPH_BBOX_TRUNCATE. */ + /* */ + /* To get the bbox in grid-fitted pixel coordinates, set `bbox_mode' */ + /* to @FT_GLYPH_BBOX_PIXELS. */ + /* */ + FT_EXPORT( void ) + FT_Glyph_Get_CBox( FT_Glyph glyph, + FT_UInt bbox_mode, + FT_BBox *acbox ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Glyph_To_Bitmap */ + /* */ + /* <Description> */ + /* Convert a given glyph object to a bitmap glyph object. */ + /* */ + /* <InOut> */ + /* the_glyph :: A pointer to a handle to the target glyph. */ + /* */ + /* <Input> */ + /* render_mode :: An enumeration that describes how the data is */ + /* rendered. */ + /* */ + /* origin :: A pointer to a vector used to translate the glyph */ + /* image before rendering. Can be~0 (if no */ + /* translation). The origin is expressed in */ + /* 26.6 pixels. */ + /* */ + /* destroy :: A boolean that indicates that the original glyph */ + /* image should be destroyed by this function. It is */ + /* never destroyed in case of error. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* This function does nothing if the glyph format isn't scalable. */ + /* */ + /* The glyph image is translated with the `origin' vector before */ + /* rendering. */ + /* */ + /* The first parameter is a pointer to an @FT_Glyph handle, that will */ + /* be _replaced_ by this function (with newly allocated data). */ + /* Typically, you would use (omitting error handling): */ + /* */ + /* */ + /* { */ + /* FT_Glyph glyph; */ + /* FT_BitmapGlyph glyph_bitmap; */ + /* */ + /* */ + /* // load glyph */ + /* error = FT_Load_Char( face, glyph_index, FT_LOAD_DEFAUT ); */ + /* */ + /* // extract glyph image */ + /* error = FT_Get_Glyph( face->glyph, &glyph ); */ + /* */ + /* // convert to a bitmap (default render mode + destroying old) */ + /* if ( glyph->format != FT_GLYPH_FORMAT_BITMAP ) */ + /* { */ + /* error = FT_Glyph_To_Bitmap( &glyph, FT_RENDER_MODE_NORMAL, */ + /* 0, 1 ); */ + /* if ( error ) // `glyph' unchanged */ + /* ... */ + /* } */ + /* */ + /* // access bitmap content by typecasting */ + /* glyph_bitmap = (FT_BitmapGlyph)glyph; */ + /* */ + /* // do funny stuff with it, like blitting/drawing */ + /* ... */ + /* */ + /* // discard glyph image (bitmap or not) */ + /* FT_Done_Glyph( glyph ); */ + /* } */ + /* */ + /* */ + /* Here another example, again without error handling: */ + /* */ + /* */ + /* { */ + /* FT_Glyph glyphs[MAX_GLYPHS] */ + /* */ + /* */ + /* ... */ + /* */ + /* for ( idx = 0; i < MAX_GLYPHS; i++ ) */ + /* error = FT_Load_Glyph( face, idx, FT_LOAD_DEFAULT ) || */ + /* FT_Get_Glyph ( face->glyph, &glyph[idx] ); */ + /* */ + /* ... */ + /* */ + /* for ( idx = 0; i < MAX_GLYPHS; i++ ) */ + /* { */ + /* FT_Glyph bitmap = glyphs[idx]; */ + /* */ + /* */ + /* ... */ + /* */ + /* // after this call, `bitmap' no longer points into */ + /* // the `glyphs' array (and the old value isn't destroyed) */ + /* FT_Glyph_To_Bitmap( &bitmap, FT_RENDER_MODE_MONO, 0, 0 ); */ + /* */ + /* ... */ + /* */ + /* FT_Done_Glyph( bitmap ); */ + /* } */ + /* */ + /* ... */ + /* */ + /* for ( idx = 0; i < MAX_GLYPHS; i++ ) */ + /* FT_Done_Glyph( glyphs[idx] ); */ + /* } */ + /* */ + FT_EXPORT( FT_Error ) + FT_Glyph_To_Bitmap( FT_Glyph* the_glyph, + FT_Render_Mode render_mode, + FT_Vector* origin, + FT_Bool destroy ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Done_Glyph */ + /* */ + /* <Description> */ + /* Destroy a given glyph. */ + /* */ + /* <Input> */ + /* glyph :: A handle to the target glyph object. */ + /* */ + FT_EXPORT( void ) + FT_Done_Glyph( FT_Glyph glyph ); + + /* */ + + + /* other helpful functions */ + + /*************************************************************************/ + /* */ + /* <Section> */ + /* computations */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Matrix_Multiply */ + /* */ + /* <Description> */ + /* Perform the matrix operation `b = a*b'. */ + /* */ + /* <Input> */ + /* a :: A pointer to matrix `a'. */ + /* */ + /* <InOut> */ + /* b :: A pointer to matrix `b'. */ + /* */ + /* <Note> */ + /* The result is undefined if either `a' or `b' is zero. */ + /* */ + FT_EXPORT( void ) + FT_Matrix_Multiply( const FT_Matrix* a, + FT_Matrix* b ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Matrix_Invert */ + /* */ + /* <Description> */ + /* Invert a 2x2 matrix. Return an error if it can't be inverted. */ + /* */ + /* <InOut> */ + /* matrix :: A pointer to the target matrix. Remains untouched in */ + /* case of error. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Matrix_Invert( FT_Matrix* matrix ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTGLYPH_H__ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftgxval.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftgxval.h new file mode 100644 index 0000000000..497015c101 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftgxval.h @@ -0,0 +1,358 @@ +/***************************************************************************/ +/* */ +/* ftgxval.h */ +/* */ +/* FreeType API for validating TrueTypeGX/AAT tables (specification). */ +/* */ +/* Copyright 2004, 2005, 2006 by */ +/* Masatake YAMATO, Redhat K.K, */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + +/***************************************************************************/ +/* */ +/* gxvalid is derived from both gxlayout module and otvalid module. */ +/* Development of gxlayout is supported by the Information-technology */ +/* Promotion Agency(IPA), Japan. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTGXVAL_H__ +#define __FTGXVAL_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* gx_validation */ + /* */ + /* <Title> */ + /* TrueTypeGX/AAT Validation */ + /* */ + /* <Abstract> */ + /* An API to validate TrueTypeGX/AAT tables. */ + /* */ + /* <Description> */ + /* This section contains the declaration of functions to validate */ + /* some TrueTypeGX tables (feat, mort, morx, bsln, just, kern, opbd, */ + /* trak, prop, lcar). */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* */ + /* Warning: Use FT_VALIDATE_XXX to validate a table. */ + /* Following definitions are for gxvalid developers. */ + /* */ + /* */ + /*************************************************************************/ + +#define FT_VALIDATE_feat_INDEX 0 +#define FT_VALIDATE_mort_INDEX 1 +#define FT_VALIDATE_morx_INDEX 2 +#define FT_VALIDATE_bsln_INDEX 3 +#define FT_VALIDATE_just_INDEX 4 +#define FT_VALIDATE_kern_INDEX 5 +#define FT_VALIDATE_opbd_INDEX 6 +#define FT_VALIDATE_trak_INDEX 7 +#define FT_VALIDATE_prop_INDEX 8 +#define FT_VALIDATE_lcar_INDEX 9 +#define FT_VALIDATE_GX_LAST_INDEX FT_VALIDATE_lcar_INDEX + + + /************************************************************************* + * + * @macro: + * FT_VALIDATE_GX_LENGTH + * + * @description: + * The number of tables checked in this module. Use it as a parameter + * for the `table-length' argument of function @FT_TrueTypeGX_Validate. + */ +#define FT_VALIDATE_GX_LENGTH (FT_VALIDATE_GX_LAST_INDEX + 1) + + /* */ + + /* Up to 0x1000 is used by otvalid. + Ox2xxx is reserved for feature OT extension. */ +#define FT_VALIDATE_GX_START 0x4000 +#define FT_VALIDATE_GX_BITFIELD( tag ) \ + ( FT_VALIDATE_GX_START << FT_VALIDATE_##tag##_INDEX ) + + + /********************************************************************** + * + * @enum: + * FT_VALIDATE_GXXXX + * + * @description: + * A list of bit-field constants used with @FT_TrueTypeGX_Validate to + * indicate which TrueTypeGX/AAT Type tables should be validated. + * + * @values: + * FT_VALIDATE_feat :: + * Validate `feat' table. + * + * FT_VALIDATE_mort :: + * Validate `mort' table. + * + * FT_VALIDATE_morx :: + * Validate `morx' table. + * + * FT_VALIDATE_bsln :: + * Validate `bsln' table. + * + * FT_VALIDATE_just :: + * Validate `just' table. + * + * FT_VALIDATE_kern :: + * Validate `kern' table. + * + * FT_VALIDATE_opbd :: + * Validate `opbd' table. + * + * FT_VALIDATE_trak :: + * Validate `trak' table. + * + * FT_VALIDATE_prop :: + * Validate `prop' table. + * + * FT_VALIDATE_lcar :: + * Validate `lcar' table. + * + * FT_VALIDATE_GX :: + * Validate all TrueTypeGX tables (feat, mort, morx, bsln, just, kern, + * opbd, trak, prop and lcar). + * + */ + +#define FT_VALIDATE_feat FT_VALIDATE_GX_BITFIELD( feat ) +#define FT_VALIDATE_mort FT_VALIDATE_GX_BITFIELD( mort ) +#define FT_VALIDATE_morx FT_VALIDATE_GX_BITFIELD( morx ) +#define FT_VALIDATE_bsln FT_VALIDATE_GX_BITFIELD( bsln ) +#define FT_VALIDATE_just FT_VALIDATE_GX_BITFIELD( just ) +#define FT_VALIDATE_kern FT_VALIDATE_GX_BITFIELD( kern ) +#define FT_VALIDATE_opbd FT_VALIDATE_GX_BITFIELD( opbd ) +#define FT_VALIDATE_trak FT_VALIDATE_GX_BITFIELD( trak ) +#define FT_VALIDATE_prop FT_VALIDATE_GX_BITFIELD( prop ) +#define FT_VALIDATE_lcar FT_VALIDATE_GX_BITFIELD( lcar ) + +#define FT_VALIDATE_GX ( FT_VALIDATE_feat | \ + FT_VALIDATE_mort | \ + FT_VALIDATE_morx | \ + FT_VALIDATE_bsln | \ + FT_VALIDATE_just | \ + FT_VALIDATE_kern | \ + FT_VALIDATE_opbd | \ + FT_VALIDATE_trak | \ + FT_VALIDATE_prop | \ + FT_VALIDATE_lcar ) + + + /* */ + + /********************************************************************** + * + * @function: + * FT_TrueTypeGX_Validate + * + * @description: + * Validate various TrueTypeGX tables to assure that all offsets and + * indices are valid. The idea is that a higher-level library which + * actually does the text layout can access those tables without + * error checking (which can be quite time consuming). + * + * @input: + * face :: + * A handle to the input face. + * + * validation_flags :: + * A bit field which specifies the tables to be validated. See + * @FT_VALIDATE_GXXXX for possible values. + * + * table_length :: + * The size of the `tables' array. Normally, @FT_VALIDATE_GX_LENGTH + * should be passed. + * + * @output: + * tables :: + * The array where all validated sfnt tables are stored. + * The array itself must be allocated by a client. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with TrueTypeGX fonts, returning an error + * otherwise. + * + * After use, the application should deallocate the buffers pointed to by + * each `tables' element, by calling @FT_TrueTypeGX_Free. A NULL value + * indicates that the table either doesn't exist in the font, the + * application hasn't asked for validation, or the validator doesn't have + * the ability to validate the sfnt table. + */ + FT_EXPORT( FT_Error ) + FT_TrueTypeGX_Validate( FT_Face face, + FT_UInt validation_flags, + FT_Bytes tables[FT_VALIDATE_GX_LENGTH], + FT_UInt table_length ); + + + /* */ + + /********************************************************************** + * + * @function: + * FT_TrueTypeGX_Free + * + * @description: + * Free the buffer allocated by TrueTypeGX validator. + * + * @input: + * face :: + * A handle to the input face. + * + * table :: + * The pointer to the buffer allocated by + * @FT_TrueTypeGX_Validate. + * + * @note: + * This function must be used to free the buffer allocated by + * @FT_TrueTypeGX_Validate only. + */ + FT_EXPORT( void ) + FT_TrueTypeGX_Free( FT_Face face, + FT_Bytes table ); + + + /* */ + + /********************************************************************** + * + * @enum: + * FT_VALIDATE_CKERNXXX + * + * @description: + * A list of bit-field constants used with @FT_ClassicKern_Validate + * to indicate the classic kern dialect or dialects. If the selected + * type doesn't fit, @FT_ClassicKern_Validate regards the table as + * invalid. + * + * @values: + * FT_VALIDATE_MS :: + * Handle the `kern' table as a classic Microsoft kern table. + * + * FT_VALIDATE_APPLE :: + * Handle the `kern' table as a classic Apple kern table. + * + * FT_VALIDATE_CKERN :: + * Handle the `kern' as either classic Apple or Microsoft kern table. + */ +#define FT_VALIDATE_MS ( FT_VALIDATE_GX_START << 0 ) +#define FT_VALIDATE_APPLE ( FT_VALIDATE_GX_START << 1 ) + +#define FT_VALIDATE_CKERN ( FT_VALIDATE_MS | FT_VALIDATE_APPLE ) + + + /* */ + + /********************************************************************** + * + * @function: + * FT_ClassicKern_Validate + * + * @description: + * Validate classic (16-bit format) kern table to assure that the offsets + * and indices are valid. The idea is that a higher-level library which + * actually does the text layout can access those tables without error + * checking (which can be quite time consuming). + * + * The `kern' table validator in @FT_TrueTypeGX_Validate deals with both + * the new 32-bit format and the classic 16-bit format, while + * FT_ClassicKern_Validate only supports the classic 16-bit format. + * + * @input: + * face :: + * A handle to the input face. + * + * validation_flags :: + * A bit field which specifies the dialect to be validated. See + * @FT_VALIDATE_CKERNXXX for possible values. + * + * @output: + * ckern_table :: + * A pointer to the kern table. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * After use, the application should deallocate the buffers pointed to by + * `ckern_table', by calling @FT_ClassicKern_Free. A NULL value + * indicates that the table doesn't exist in the font. + */ + FT_EXPORT( FT_Error ) + FT_ClassicKern_Validate( FT_Face face, + FT_UInt validation_flags, + FT_Bytes *ckern_table ); + + + /* */ + + /********************************************************************** + * + * @function: + * FT_ClassicKern_Free + * + * @description: + * Free the buffer allocated by classic Kern validator. + * + * @input: + * face :: + * A handle to the input face. + * + * table :: + * The pointer to the buffer that is allocated by + * @FT_ClassicKern_Validate. + * + * @note: + * This function must be used to free the buffer allocated by + * @FT_ClassicKern_Validate only. + */ + FT_EXPORT( void ) + FT_ClassicKern_Free( FT_Face face, + FT_Bytes table ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTGXVAL_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftgzip.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftgzip.h new file mode 100644 index 0000000000..acbc4f0327 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftgzip.h @@ -0,0 +1,102 @@ +/***************************************************************************/ +/* */ +/* ftgzip.h */ +/* */ +/* Gzip-compressed stream support. */ +/* */ +/* Copyright 2002, 2003, 2004, 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTGZIP_H__ +#define __FTGZIP_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /*************************************************************************/ + /* */ + /* <Section> */ + /* gzip */ + /* */ + /* <Title> */ + /* GZIP Streams */ + /* */ + /* <Abstract> */ + /* Using gzip-compressed font files. */ + /* */ + /* <Description> */ + /* This section contains the declaration of Gzip-specific functions. */ + /* */ + /*************************************************************************/ + + + /************************************************************************ + * + * @function: + * FT_Stream_OpenGzip + * + * @description: + * Open a new stream to parse gzip-compressed font files. This is + * mainly used to support the compressed `*.pcf.gz' fonts that come + * with XFree86. + * + * @input: + * stream :: + * The target embedding stream. + * + * source :: + * The source stream. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source stream must be opened _before_ calling this function. + * + * Calling the internal function `FT_Stream_Close' on the new stream will + * *not* call `FT_Stream_Close' on the source stream. None of the stream + * objects will be released to the heap. + * + * The stream implementation is very basic and resets the decompression + * process each time seeking backwards is needed within the stream. + * + * In certain builds of the library, gzip compression recognition is + * automatically handled when calling @FT_New_Face or @FT_Open_Face. + * This means that if no font driver is capable of handling the raw + * compressed file, the library will try to open a gzipped stream from + * it and re-open the face with it. + * + * This function may return `FT_Err_Unimplemented_Feature' if your build + * of FreeType was not compiled with zlib support. + */ + FT_EXPORT( FT_Error ) + FT_Stream_OpenGzip( FT_Stream stream, + FT_Stream source ); + + /* */ + + +FT_END_HEADER + +#endif /* __FTGZIP_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftimage.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftimage.h new file mode 100644 index 0000000000..04b5e04f7b --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftimage.h @@ -0,0 +1,1313 @@ +/***************************************************************************/ +/* */ +/* ftimage.h */ +/* */ +/* FreeType glyph image formats and default raster interface */ +/* (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, */ +/* 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + /*************************************************************************/ + /* */ + /* Note: A `raster' is simply a scan-line converter, used to render */ + /* FT_Outlines into FT_Bitmaps. */ + /* */ + /*************************************************************************/ + + +#ifndef __FTIMAGE_H__ +#define __FTIMAGE_H__ + + + /* _STANDALONE_ is from ftgrays.c */ +#ifndef _STANDALONE_ +#include <ft2build.h> +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* basic_types */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Pos */ + /* */ + /* <Description> */ + /* The type FT_Pos is used to store vectorial coordinates. Depending */ + /* on the context, these can represent distances in integer font */ + /* units, or 16.16, or 26.6 fixed float pixel coordinates. */ + /* */ + typedef signed long FT_Pos; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Vector */ + /* */ + /* <Description> */ + /* A simple structure used to store a 2D vector; coordinates are of */ + /* the FT_Pos type. */ + /* */ + /* <Fields> */ + /* x :: The horizontal coordinate. */ + /* y :: The vertical coordinate. */ + /* */ + typedef struct FT_Vector_ + { + FT_Pos x; + FT_Pos y; + + } FT_Vector; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_BBox */ + /* */ + /* <Description> */ + /* A structure used to hold an outline's bounding box, i.e., the */ + /* coordinates of its extrema in the horizontal and vertical */ + /* directions. */ + /* */ + /* <Fields> */ + /* xMin :: The horizontal minimum (left-most). */ + /* */ + /* yMin :: The vertical minimum (bottom-most). */ + /* */ + /* xMax :: The horizontal maximum (right-most). */ + /* */ + /* yMax :: The vertical maximum (top-most). */ + /* */ + /* <Note> */ + /* The bounding box is specified with the coordinates of the lower */ + /* left and the upper right corner. In PostScript, those values are */ + /* often called (llx,lly) and (urx,ury), respectively. */ + /* */ + /* If `yMin' is negative, this value gives the glyph's descender. */ + /* Otherwise, the glyph doesn't descend below the baseline. */ + /* Similarly, if `ymax' is positive, this value gives the glyph's */ + /* ascender. */ + /* */ + /* `xMin' gives the horizontal distance from the glyph's origin to */ + /* the left edge of the glyph's bounding box. If `xMin' is negative, */ + /* the glyph extends to the left of the origin. */ + /* */ + typedef struct FT_BBox_ + { + FT_Pos xMin, yMin; + FT_Pos xMax, yMax; + + } FT_BBox; + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* FT_Pixel_Mode */ + /* */ + /* <Description> */ + /* An enumeration type used to describe the format of pixels in a */ + /* given bitmap. Note that additional formats may be added in the */ + /* future. */ + /* */ + /* <Values> */ + /* FT_PIXEL_MODE_NONE :: */ + /* Value~0 is reserved. */ + /* */ + /* FT_PIXEL_MODE_MONO :: */ + /* A monochrome bitmap, using 1~bit per pixel. Note that pixels */ + /* are stored in most-significant order (MSB), which means that */ + /* the left-most pixel in a byte has value 128. */ + /* */ + /* FT_PIXEL_MODE_GRAY :: */ + /* An 8-bit bitmap, generally used to represent anti-aliased glyph */ + /* images. Each pixel is stored in one byte. Note that the number */ + /* of `gray' levels is stored in the `num_grays' field of the */ + /* @FT_Bitmap structure (it generally is 256). */ + /* */ + /* FT_PIXEL_MODE_GRAY2 :: */ + /* A 2-bit per pixel bitmap, used to represent embedded */ + /* anti-aliased bitmaps in font files according to the OpenType */ + /* specification. We haven't found a single font using this */ + /* format, however. */ + /* */ + /* FT_PIXEL_MODE_GRAY4 :: */ + /* A 4-bit per pixel bitmap, representing embedded anti-aliased */ + /* bitmaps in font files according to the OpenType specification. */ + /* We haven't found a single font using this format, however. */ + /* */ + /* FT_PIXEL_MODE_LCD :: */ + /* An 8-bit bitmap, representing RGB or BGR decimated glyph images */ + /* used for display on LCD displays; the bitmap is three times */ + /* wider than the original glyph image. See also */ + /* @FT_RENDER_MODE_LCD. */ + /* */ + /* FT_PIXEL_MODE_LCD_V :: */ + /* An 8-bit bitmap, representing RGB or BGR decimated glyph images */ + /* used for display on rotated LCD displays; the bitmap is three */ + /* times taller than the original glyph image. See also */ + /* @FT_RENDER_MODE_LCD_V. */ + /* */ + typedef enum FT_Pixel_Mode_ + { + FT_PIXEL_MODE_NONE = 0, + FT_PIXEL_MODE_MONO, + FT_PIXEL_MODE_GRAY, + FT_PIXEL_MODE_GRAY2, + FT_PIXEL_MODE_GRAY4, + FT_PIXEL_MODE_LCD, + FT_PIXEL_MODE_LCD_V, + + FT_PIXEL_MODE_MAX /* do not remove */ + + } FT_Pixel_Mode; + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* ft_pixel_mode_xxx */ + /* */ + /* <Description> */ + /* A list of deprecated constants. Use the corresponding */ + /* @FT_Pixel_Mode values instead. */ + /* */ + /* <Values> */ + /* ft_pixel_mode_none :: See @FT_PIXEL_MODE_NONE. */ + /* ft_pixel_mode_mono :: See @FT_PIXEL_MODE_MONO. */ + /* ft_pixel_mode_grays :: See @FT_PIXEL_MODE_GRAY. */ + /* ft_pixel_mode_pal2 :: See @FT_PIXEL_MODE_GRAY2. */ + /* ft_pixel_mode_pal4 :: See @FT_PIXEL_MODE_GRAY4. */ + /* */ +#define ft_pixel_mode_none FT_PIXEL_MODE_NONE +#define ft_pixel_mode_mono FT_PIXEL_MODE_MONO +#define ft_pixel_mode_grays FT_PIXEL_MODE_GRAY +#define ft_pixel_mode_pal2 FT_PIXEL_MODE_GRAY2 +#define ft_pixel_mode_pal4 FT_PIXEL_MODE_GRAY4 + + /* */ + +#if 0 + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* FT_Palette_Mode */ + /* */ + /* <Description> */ + /* THIS TYPE IS DEPRECATED. DO NOT USE IT! */ + /* */ + /* An enumeration type to describe the format of a bitmap palette, */ + /* used with ft_pixel_mode_pal4 and ft_pixel_mode_pal8. */ + /* */ + /* <Values> */ + /* ft_palette_mode_rgb :: The palette is an array of 3-byte RGB */ + /* records. */ + /* */ + /* ft_palette_mode_rgba :: The palette is an array of 4-byte RGBA */ + /* records. */ + /* */ + /* <Note> */ + /* As ft_pixel_mode_pal2, pal4 and pal8 are currently unused by */ + /* FreeType, these types are not handled by the library itself. */ + /* */ + typedef enum FT_Palette_Mode_ + { + ft_palette_mode_rgb = 0, + ft_palette_mode_rgba, + + ft_palette_mode_max /* do not remove */ + + } FT_Palette_Mode; + + /* */ + +#endif + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Bitmap */ + /* */ + /* <Description> */ + /* A structure used to describe a bitmap or pixmap to the raster. */ + /* Note that we now manage pixmaps of various depths through the */ + /* `pixel_mode' field. */ + /* */ + /* <Fields> */ + /* rows :: The number of bitmap rows. */ + /* */ + /* width :: The number of pixels in bitmap row. */ + /* */ + /* pitch :: The pitch's absolute value is the number of bytes */ + /* taken by one bitmap row, including padding. */ + /* However, the pitch is positive when the bitmap has */ + /* a `down' flow, and negative when it has an `up' */ + /* flow. In all cases, the pitch is an offset to add */ + /* to a bitmap pointer in order to go down one row. */ + /* */ + /* Note that `padding' means the alignment of a */ + /* bitmap to a byte border, and FreeType functions */ + /* normally align to the smallest possible integer */ + /* value. */ + /* */ + /* For the B/W rasterizer, `pitch' is always an even */ + /* number. */ + /* */ + /* To change the pitch of a bitmap (say, to make it a */ + /* multiple of 4), use @FT_Bitmap_Convert. */ + /* Alternatively, you might use callback functions to */ + /* directly render to the application's surface; see */ + /* the file `example2.cpp' in the tutorial for a */ + /* demonstration. */ + /* */ + /* buffer :: A typeless pointer to the bitmap buffer. This */ + /* value should be aligned on 32-bit boundaries in */ + /* most cases. */ + /* */ + /* num_grays :: This field is only used with */ + /* @FT_PIXEL_MODE_GRAY; it gives the number of gray */ + /* levels used in the bitmap. */ + /* */ + /* pixel_mode :: The pixel mode, i.e., how pixel bits are stored. */ + /* See @FT_Pixel_Mode for possible values. */ + /* */ + /* palette_mode :: This field is intended for paletted pixel modes; */ + /* it indicates how the palette is stored. Not */ + /* used currently. */ + /* */ + /* palette :: A typeless pointer to the bitmap palette; this */ + /* field is intended for paletted pixel modes. Not */ + /* used currently. */ + /* */ + /* <Note> */ + /* For now, the only pixel modes supported by FreeType are mono and */ + /* grays. However, drivers might be added in the future to support */ + /* more `colorful' options. */ + /* */ + typedef struct FT_Bitmap_ + { + int rows; + int width; + int pitch; + unsigned char* buffer; + short num_grays; + char pixel_mode; + char palette_mode; + void* palette; + + } FT_Bitmap; + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* outline_processing */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Outline */ + /* */ + /* <Description> */ + /* This structure is used to describe an outline to the scan-line */ + /* converter. */ + /* */ + /* <Fields> */ + /* n_contours :: The number of contours in the outline. */ + /* */ + /* n_points :: The number of points in the outline. */ + /* */ + /* points :: A pointer to an array of `n_points' @FT_Vector */ + /* elements, giving the outline's point coordinates. */ + /* */ + /* tags :: A pointer to an array of `n_points' chars, giving */ + /* each outline point's type. */ + /* */ + /* If bit~0 is unset, the point is `off' the curve, */ + /* i.e., a Bézier control point, while it is `on' if */ + /* set. */ + /* */ + /* Bit~1 is meaningful for `off' points only. If set, */ + /* it indicates a third-order Bézier arc control point; */ + /* and a second-order control point if unset. */ + /* */ + /* If bit~2 is set, bits 5-7 contain the drop-out mode */ + /* (as defined in the OpenType specification; the value */ + /* is the same as the argument to the SCANMODE */ + /* instruction). */ + /* */ + /* Bits 3 and~4 are reserved for internal purposes. */ + /* */ + /* contours :: An array of `n_contours' shorts, giving the end */ + /* point of each contour within the outline. For */ + /* example, the first contour is defined by the points */ + /* `0' to `contours[0]', the second one is defined by */ + /* the points `contours[0]+1' to `contours[1]', etc. */ + /* */ + /* flags :: A set of bit flags used to characterize the outline */ + /* and give hints to the scan-converter and hinter on */ + /* how to convert/grid-fit it. See @FT_OUTLINE_FLAGS. */ + /* */ + /* <Note> */ + /* The B/W rasterizer only checks bit~2 in the `tags' array for the */ + /* first point of each contour. The drop-out mode as given with */ + /* @FT_OUTLINE_IGNORE_DROPOUTS, @FT_OUTLINE_SMART_DROPOUTS, and */ + /* @FT_OUTLINE_INCLUDE_STUBS in `flags' is then overridden. */ + /* */ + typedef struct FT_Outline_ + { + short n_contours; /* number of contours in glyph */ + short n_points; /* number of points in the glyph */ + + FT_Vector* points; /* the outline's points */ + char* tags; /* the points flags */ + short* contours; /* the contour end points */ + + int flags; /* outline masks */ + + } FT_Outline; + + /* Following limits must be consistent with */ + /* FT_Outline.{n_contours,n_points} */ +#define FT_OUTLINE_CONTOURS_MAX SHRT_MAX +#define FT_OUTLINE_POINTS_MAX SHRT_MAX + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* FT_OUTLINE_FLAGS */ + /* */ + /* <Description> */ + /* A list of bit-field constants use for the flags in an outline's */ + /* `flags' field. */ + /* */ + /* <Values> */ + /* FT_OUTLINE_NONE :: */ + /* Value~0 is reserved. */ + /* */ + /* FT_OUTLINE_OWNER :: */ + /* If set, this flag indicates that the outline's field arrays */ + /* (i.e., `points', `flags', and `contours') are `owned' by the */ + /* outline object, and should thus be freed when it is destroyed. */ + /* */ + /* FT_OUTLINE_EVEN_ODD_FILL :: */ + /* By default, outlines are filled using the non-zero winding rule. */ + /* If set to 1, the outline will be filled using the even-odd fill */ + /* rule (only works with the smooth rasterizer). */ + /* */ + /* FT_OUTLINE_REVERSE_FILL :: */ + /* By default, outside contours of an outline are oriented in */ + /* clock-wise direction, as defined in the TrueType specification. */ + /* This flag is set if the outline uses the opposite direction */ + /* (typically for Type~1 fonts). This flag is ignored by the scan */ + /* converter. */ + /* */ + /* FT_OUTLINE_IGNORE_DROPOUTS :: */ + /* By default, the scan converter will try to detect drop-outs in */ + /* an outline and correct the glyph bitmap to ensure consistent */ + /* shape continuity. If set, this flag hints the scan-line */ + /* converter to ignore such cases. See below for more information. */ + /* */ + /* FT_OUTLINE_SMART_DROPOUTS :: */ + /* Select smart dropout control. If unset, use simple dropout */ + /* control. Ignored if @FT_OUTLINE_IGNORE_DROPOUTS is set. See */ + /* below for more information. */ + /* */ + /* FT_OUTLINE_INCLUDE_STUBS :: */ + /* If set, turn pixels on for `stubs', otherwise exclude them. */ + /* Ignored if @FT_OUTLINE_IGNORE_DROPOUTS is set. See below for */ + /* more information. */ + /* */ + /* FT_OUTLINE_HIGH_PRECISION :: */ + /* This flag indicates that the scan-line converter should try to */ + /* convert this outline to bitmaps with the highest possible */ + /* quality. It is typically set for small character sizes. Note */ + /* that this is only a hint that might be completely ignored by a */ + /* given scan-converter. */ + /* */ + /* FT_OUTLINE_SINGLE_PASS :: */ + /* This flag is set to force a given scan-converter to only use a */ + /* single pass over the outline to render a bitmap glyph image. */ + /* Normally, it is set for very large character sizes. It is only */ + /* a hint that might be completely ignored by a given */ + /* scan-converter. */ + /* */ + /* <Note> */ + /* The flags @FT_OUTLINE_IGNORE_DROPOUTS, @FT_OUTLINE_SMART_DROPOUTS, */ + /* and @FT_OUTLINE_INCLUDE_STUBS are ignored by the smooth */ + /* rasterizer. */ + /* */ + /* There exists a second mechanism to pass the drop-out mode to the */ + /* B/W rasterizer; see the `tags' field in @FT_Outline. */ + /* */ + /* Please refer to the description of the `SCANTYPE' instruction in */ + /* the OpenType specification (in file `ttinst1.doc') how simple */ + /* drop-outs, smart drop-outs, and stubs are defined. */ + /* */ +#define FT_OUTLINE_NONE 0x0 +#define FT_OUTLINE_OWNER 0x1 +#define FT_OUTLINE_EVEN_ODD_FILL 0x2 +#define FT_OUTLINE_REVERSE_FILL 0x4 +#define FT_OUTLINE_IGNORE_DROPOUTS 0x8 +#define FT_OUTLINE_SMART_DROPOUTS 0x10 +#define FT_OUTLINE_INCLUDE_STUBS 0x20 + +#define FT_OUTLINE_HIGH_PRECISION 0x100 +#define FT_OUTLINE_SINGLE_PASS 0x200 + + + /************************************************************************* + * + * @enum: + * ft_outline_flags + * + * @description: + * These constants are deprecated. Please use the corresponding + * @FT_OUTLINE_FLAGS values. + * + * @values: + * ft_outline_none :: See @FT_OUTLINE_NONE. + * ft_outline_owner :: See @FT_OUTLINE_OWNER. + * ft_outline_even_odd_fill :: See @FT_OUTLINE_EVEN_ODD_FILL. + * ft_outline_reverse_fill :: See @FT_OUTLINE_REVERSE_FILL. + * ft_outline_ignore_dropouts :: See @FT_OUTLINE_IGNORE_DROPOUTS. + * ft_outline_high_precision :: See @FT_OUTLINE_HIGH_PRECISION. + * ft_outline_single_pass :: See @FT_OUTLINE_SINGLE_PASS. + */ +#define ft_outline_none FT_OUTLINE_NONE +#define ft_outline_owner FT_OUTLINE_OWNER +#define ft_outline_even_odd_fill FT_OUTLINE_EVEN_ODD_FILL +#define ft_outline_reverse_fill FT_OUTLINE_REVERSE_FILL +#define ft_outline_ignore_dropouts FT_OUTLINE_IGNORE_DROPOUTS +#define ft_outline_high_precision FT_OUTLINE_HIGH_PRECISION +#define ft_outline_single_pass FT_OUTLINE_SINGLE_PASS + + /* */ + +#define FT_CURVE_TAG( flag ) ( flag & 3 ) + +#define FT_CURVE_TAG_ON 1 +#define FT_CURVE_TAG_CONIC 0 +#define FT_CURVE_TAG_CUBIC 2 + +#define FT_CURVE_TAG_HAS_SCANMODE 4 + +#define FT_CURVE_TAG_TOUCH_X 8 /* reserved for the TrueType hinter */ +#define FT_CURVE_TAG_TOUCH_Y 16 /* reserved for the TrueType hinter */ + +#define FT_CURVE_TAG_TOUCH_BOTH ( FT_CURVE_TAG_TOUCH_X | \ + FT_CURVE_TAG_TOUCH_Y ) + +#define FT_Curve_Tag_On FT_CURVE_TAG_ON +#define FT_Curve_Tag_Conic FT_CURVE_TAG_CONIC +#define FT_Curve_Tag_Cubic FT_CURVE_TAG_CUBIC +#define FT_Curve_Tag_Touch_X FT_CURVE_TAG_TOUCH_X +#define FT_Curve_Tag_Touch_Y FT_CURVE_TAG_TOUCH_Y + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Outline_MoveToFunc */ + /* */ + /* <Description> */ + /* A function pointer type used to describe the signature of a `move */ + /* to' function during outline walking/decomposition. */ + /* */ + /* A `move to' is emitted to start a new contour in an outline. */ + /* */ + /* <Input> */ + /* to :: A pointer to the target point of the `move to'. */ + /* */ + /* user :: A typeless pointer which is passed from the caller of the */ + /* decomposition function. */ + /* */ + /* <Return> */ + /* Error code. 0~means success. */ + /* */ + typedef int + (*FT_Outline_MoveToFunc)( const FT_Vector* to, + void* user ); + +#define FT_Outline_MoveTo_Func FT_Outline_MoveToFunc + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Outline_LineToFunc */ + /* */ + /* <Description> */ + /* A function pointer type used to describe the signature of a `line */ + /* to' function during outline walking/decomposition. */ + /* */ + /* A `line to' is emitted to indicate a segment in the outline. */ + /* */ + /* <Input> */ + /* to :: A pointer to the target point of the `line to'. */ + /* */ + /* user :: A typeless pointer which is passed from the caller of the */ + /* decomposition function. */ + /* */ + /* <Return> */ + /* Error code. 0~means success. */ + /* */ + typedef int + (*FT_Outline_LineToFunc)( const FT_Vector* to, + void* user ); + +#define FT_Outline_LineTo_Func FT_Outline_LineToFunc + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Outline_ConicToFunc */ + /* */ + /* <Description> */ + /* A function pointer type used to describe the signature of a `conic */ + /* to' function during outline walking or decomposition. */ + /* */ + /* A `conic to' is emitted to indicate a second-order Bézier arc in */ + /* the outline. */ + /* */ + /* <Input> */ + /* control :: An intermediate control point between the last position */ + /* and the new target in `to'. */ + /* */ + /* to :: A pointer to the target end point of the conic arc. */ + /* */ + /* user :: A typeless pointer which is passed from the caller of */ + /* the decomposition function. */ + /* */ + /* <Return> */ + /* Error code. 0~means success. */ + /* */ + typedef int + (*FT_Outline_ConicToFunc)( const FT_Vector* control, + const FT_Vector* to, + void* user ); + +#define FT_Outline_ConicTo_Func FT_Outline_ConicToFunc + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Outline_CubicToFunc */ + /* */ + /* <Description> */ + /* A function pointer type used to describe the signature of a `cubic */ + /* to' function during outline walking or decomposition. */ + /* */ + /* A `cubic to' is emitted to indicate a third-order Bézier arc. */ + /* */ + /* <Input> */ + /* control1 :: A pointer to the first Bézier control point. */ + /* */ + /* control2 :: A pointer to the second Bézier control point. */ + /* */ + /* to :: A pointer to the target end point. */ + /* */ + /* user :: A typeless pointer which is passed from the caller of */ + /* the decomposition function. */ + /* */ + /* <Return> */ + /* Error code. 0~means success. */ + /* */ + typedef int + (*FT_Outline_CubicToFunc)( const FT_Vector* control1, + const FT_Vector* control2, + const FT_Vector* to, + void* user ); + +#define FT_Outline_CubicTo_Func FT_Outline_CubicToFunc + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Outline_Funcs */ + /* */ + /* <Description> */ + /* A structure to hold various function pointers used during outline */ + /* decomposition in order to emit segments, conic, and cubic Béziers. */ + /* */ + /* <Fields> */ + /* move_to :: The `move to' emitter. */ + /* */ + /* line_to :: The segment emitter. */ + /* */ + /* conic_to :: The second-order Bézier arc emitter. */ + /* */ + /* cubic_to :: The third-order Bézier arc emitter. */ + /* */ + /* shift :: The shift that is applied to coordinates before they */ + /* are sent to the emitter. */ + /* */ + /* delta :: The delta that is applied to coordinates before they */ + /* are sent to the emitter, but after the shift. */ + /* */ + /* <Note> */ + /* The point coordinates sent to the emitters are the transformed */ + /* version of the original coordinates (this is important for high */ + /* accuracy during scan-conversion). The transformation is simple: */ + /* */ + /* { */ + /* x' = (x << shift) - delta */ + /* y' = (x << shift) - delta */ + /* } */ + /* */ + /* Set the values of `shift' and `delta' to~0 to get the original */ + /* point coordinates. */ + /* */ + typedef struct FT_Outline_Funcs_ + { + FT_Outline_MoveToFunc move_to; + FT_Outline_LineToFunc line_to; + FT_Outline_ConicToFunc conic_to; + FT_Outline_CubicToFunc cubic_to; + + int shift; + FT_Pos delta; + + } FT_Outline_Funcs; + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* basic_types */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_IMAGE_TAG */ + /* */ + /* <Description> */ + /* This macro converts four-letter tags to an unsigned long type. */ + /* */ + /* <Note> */ + /* Since many 16-bit compilers don't like 32-bit enumerations, you */ + /* should redefine this macro in case of problems to something like */ + /* this: */ + /* */ + /* { */ + /* #define FT_IMAGE_TAG( value, _x1, _x2, _x3, _x4 ) value */ + /* } */ + /* */ + /* to get a simple enumeration without assigning special numbers. */ + /* */ +#ifndef FT_IMAGE_TAG +#define FT_IMAGE_TAG( value, _x1, _x2, _x3, _x4 ) \ + value = ( ( (unsigned long)_x1 << 24 ) | \ + ( (unsigned long)_x2 << 16 ) | \ + ( (unsigned long)_x3 << 8 ) | \ + (unsigned long)_x4 ) +#endif /* FT_IMAGE_TAG */ + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* FT_Glyph_Format */ + /* */ + /* <Description> */ + /* An enumeration type used to describe the format of a given glyph */ + /* image. Note that this version of FreeType only supports two image */ + /* formats, even though future font drivers will be able to register */ + /* their own format. */ + /* */ + /* <Values> */ + /* FT_GLYPH_FORMAT_NONE :: */ + /* The value~0 is reserved. */ + /* */ + /* FT_GLYPH_FORMAT_COMPOSITE :: */ + /* The glyph image is a composite of several other images. This */ + /* format is _only_ used with @FT_LOAD_NO_RECURSE, and is used to */ + /* report compound glyphs (like accented characters). */ + /* */ + /* FT_GLYPH_FORMAT_BITMAP :: */ + /* The glyph image is a bitmap, and can be described as an */ + /* @FT_Bitmap. You generally need to access the `bitmap' field of */ + /* the @FT_GlyphSlotRec structure to read it. */ + /* */ + /* FT_GLYPH_FORMAT_OUTLINE :: */ + /* The glyph image is a vectorial outline made of line segments */ + /* and Bézier arcs; it can be described as an @FT_Outline; you */ + /* generally want to access the `outline' field of the */ + /* @FT_GlyphSlotRec structure to read it. */ + /* */ + /* FT_GLYPH_FORMAT_PLOTTER :: */ + /* The glyph image is a vectorial path with no inside and outside */ + /* contours. Some Type~1 fonts, like those in the Hershey family, */ + /* contain glyphs in this format. These are described as */ + /* @FT_Outline, but FreeType isn't currently capable of rendering */ + /* them correctly. */ + /* */ + typedef enum FT_Glyph_Format_ + { + FT_IMAGE_TAG( FT_GLYPH_FORMAT_NONE, 0, 0, 0, 0 ), + + FT_IMAGE_TAG( FT_GLYPH_FORMAT_COMPOSITE, 'c', 'o', 'm', 'p' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_BITMAP, 'b', 'i', 't', 's' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_OUTLINE, 'o', 'u', 't', 'l' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_PLOTTER, 'p', 'l', 'o', 't' ) + + } FT_Glyph_Format; + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* ft_glyph_format_xxx */ + /* */ + /* <Description> */ + /* A list of deprecated constants. Use the corresponding */ + /* @FT_Glyph_Format values instead. */ + /* */ + /* <Values> */ + /* ft_glyph_format_none :: See @FT_GLYPH_FORMAT_NONE. */ + /* ft_glyph_format_composite :: See @FT_GLYPH_FORMAT_COMPOSITE. */ + /* ft_glyph_format_bitmap :: See @FT_GLYPH_FORMAT_BITMAP. */ + /* ft_glyph_format_outline :: See @FT_GLYPH_FORMAT_OUTLINE. */ + /* ft_glyph_format_plotter :: See @FT_GLYPH_FORMAT_PLOTTER. */ + /* */ +#define ft_glyph_format_none FT_GLYPH_FORMAT_NONE +#define ft_glyph_format_composite FT_GLYPH_FORMAT_COMPOSITE +#define ft_glyph_format_bitmap FT_GLYPH_FORMAT_BITMAP +#define ft_glyph_format_outline FT_GLYPH_FORMAT_OUTLINE +#define ft_glyph_format_plotter FT_GLYPH_FORMAT_PLOTTER + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** R A S T E R D E F I N I T I O N S *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* A raster is a scan converter, in charge of rendering an outline into */ + /* a a bitmap. This section contains the public API for rasters. */ + /* */ + /* Note that in FreeType 2, all rasters are now encapsulated within */ + /* specific modules called `renderers'. See `freetype/ftrender.h' for */ + /* more details on renderers. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* raster */ + /* */ + /* <Title> */ + /* Scanline Converter */ + /* */ + /* <Abstract> */ + /* How vectorial outlines are converted into bitmaps and pixmaps. */ + /* */ + /* <Description> */ + /* This section contains technical definitions. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Raster */ + /* */ + /* <Description> */ + /* A handle (pointer) to a raster object. Each object can be used */ + /* independently to convert an outline into a bitmap or pixmap. */ + /* */ + typedef struct FT_RasterRec_* FT_Raster; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Span */ + /* */ + /* <Description> */ + /* A structure used to model a single span of gray (or black) pixels */ + /* when rendering a monochrome or anti-aliased bitmap. */ + /* */ + /* <Fields> */ + /* x :: The span's horizontal start position. */ + /* */ + /* len :: The span's length in pixels. */ + /* */ + /* coverage :: The span color/coverage, ranging from 0 (background) */ + /* to 255 (foreground). Only used for anti-aliased */ + /* rendering. */ + /* */ + /* <Note> */ + /* This structure is used by the span drawing callback type named */ + /* @FT_SpanFunc which takes the y~coordinate of the span as a */ + /* a parameter. */ + /* */ + /* The coverage value is always between 0 and 255. If you want less */ + /* gray values, the callback function has to reduce them. */ + /* */ + typedef struct FT_Span_ + { + short x; + unsigned short len; + unsigned char coverage; + + } FT_Span; + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_SpanFunc */ + /* */ + /* <Description> */ + /* A function used as a call-back by the anti-aliased renderer in */ + /* order to let client applications draw themselves the gray pixel */ + /* spans on each scan line. */ + /* */ + /* <Input> */ + /* y :: The scanline's y~coordinate. */ + /* */ + /* count :: The number of spans to draw on this scanline. */ + /* */ + /* spans :: A table of `count' spans to draw on the scanline. */ + /* */ + /* user :: User-supplied data that is passed to the callback. */ + /* */ + /* <Note> */ + /* This callback allows client applications to directly render the */ + /* gray spans of the anti-aliased bitmap to any kind of surfaces. */ + /* */ + /* This can be used to write anti-aliased outlines directly to a */ + /* given background bitmap, and even perform translucency. */ + /* */ + /* Note that the `count' field cannot be greater than a fixed value */ + /* defined by the `FT_MAX_GRAY_SPANS' configuration macro in */ + /* `ftoption.h'. By default, this value is set to~32, which means */ + /* that if there are more than 32~spans on a given scanline, the */ + /* callback is called several times with the same `y' parameter in */ + /* order to draw all callbacks. */ + /* */ + /* Otherwise, the callback is only called once per scan-line, and */ + /* only for those scanlines that do have `gray' pixels on them. */ + /* */ + typedef void + (*FT_SpanFunc)( int y, + int count, + const FT_Span* spans, + void* user ); + +#define FT_Raster_Span_Func FT_SpanFunc + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Raster_BitTest_Func */ + /* */ + /* <Description> */ + /* THIS TYPE IS DEPRECATED. DO NOT USE IT. */ + /* */ + /* A function used as a call-back by the monochrome scan-converter */ + /* to test whether a given target pixel is already set to the drawing */ + /* `color'. These tests are crucial to implement drop-out control */ + /* per-se the TrueType spec. */ + /* */ + /* <Input> */ + /* y :: The pixel's y~coordinate. */ + /* */ + /* x :: The pixel's x~coordinate. */ + /* */ + /* user :: User-supplied data that is passed to the callback. */ + /* */ + /* <Return> */ + /* 1~if the pixel is `set', 0~otherwise. */ + /* */ + typedef int + (*FT_Raster_BitTest_Func)( int y, + int x, + void* user ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Raster_BitSet_Func */ + /* */ + /* <Description> */ + /* THIS TYPE IS DEPRECATED. DO NOT USE IT. */ + /* */ + /* A function used as a call-back by the monochrome scan-converter */ + /* to set an individual target pixel. This is crucial to implement */ + /* drop-out control according to the TrueType specification. */ + /* */ + /* <Input> */ + /* y :: The pixel's y~coordinate. */ + /* */ + /* x :: The pixel's x~coordinate. */ + /* */ + /* user :: User-supplied data that is passed to the callback. */ + /* */ + /* <Return> */ + /* 1~if the pixel is `set', 0~otherwise. */ + /* */ + typedef void + (*FT_Raster_BitSet_Func)( int y, + int x, + void* user ); + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* FT_RASTER_FLAG_XXX */ + /* */ + /* <Description> */ + /* A list of bit flag constants as used in the `flags' field of a */ + /* @FT_Raster_Params structure. */ + /* */ + /* <Values> */ + /* FT_RASTER_FLAG_DEFAULT :: This value is 0. */ + /* */ + /* FT_RASTER_FLAG_AA :: This flag is set to indicate that an */ + /* anti-aliased glyph image should be */ + /* generated. Otherwise, it will be */ + /* monochrome (1-bit). */ + /* */ + /* FT_RASTER_FLAG_DIRECT :: This flag is set to indicate direct */ + /* rendering. In this mode, client */ + /* applications must provide their own span */ + /* callback. This lets them directly */ + /* draw or compose over an existing bitmap. */ + /* If this bit is not set, the target */ + /* pixmap's buffer _must_ be zeroed before */ + /* rendering. */ + /* */ + /* Note that for now, direct rendering is */ + /* only possible with anti-aliased glyphs. */ + /* */ + /* FT_RASTER_FLAG_CLIP :: This flag is only used in direct */ + /* rendering mode. If set, the output will */ + /* be clipped to a box specified in the */ + /* `clip_box' field of the */ + /* @FT_Raster_Params structure. */ + /* */ + /* Note that by default, the glyph bitmap */ + /* is clipped to the target pixmap, except */ + /* in direct rendering mode where all spans */ + /* are generated if no clipping box is set. */ + /* */ +#define FT_RASTER_FLAG_DEFAULT 0x0 +#define FT_RASTER_FLAG_AA 0x1 +#define FT_RASTER_FLAG_DIRECT 0x2 +#define FT_RASTER_FLAG_CLIP 0x4 + + /* deprecated */ +#define ft_raster_flag_default FT_RASTER_FLAG_DEFAULT +#define ft_raster_flag_aa FT_RASTER_FLAG_AA +#define ft_raster_flag_direct FT_RASTER_FLAG_DIRECT +#define ft_raster_flag_clip FT_RASTER_FLAG_CLIP + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Raster_Params */ + /* */ + /* <Description> */ + /* A structure to hold the arguments used by a raster's render */ + /* function. */ + /* */ + /* <Fields> */ + /* target :: The target bitmap. */ + /* */ + /* source :: A pointer to the source glyph image (e.g., an */ + /* @FT_Outline). */ + /* */ + /* flags :: The rendering flags. */ + /* */ + /* gray_spans :: The gray span drawing callback. */ + /* */ + /* black_spans :: The black span drawing callback. UNIMPLEMENTED! */ + /* */ + /* bit_test :: The bit test callback. UNIMPLEMENTED! */ + /* */ + /* bit_set :: The bit set callback. UNIMPLEMENTED! */ + /* */ + /* user :: User-supplied data that is passed to each drawing */ + /* callback. */ + /* */ + /* clip_box :: An optional clipping box. It is only used in */ + /* direct rendering mode. Note that coordinates here */ + /* should be expressed in _integer_ pixels (and not in */ + /* 26.6 fixed-point units). */ + /* */ + /* <Note> */ + /* An anti-aliased glyph bitmap is drawn if the @FT_RASTER_FLAG_AA */ + /* bit flag is set in the `flags' field, otherwise a monochrome */ + /* bitmap is generated. */ + /* */ + /* If the @FT_RASTER_FLAG_DIRECT bit flag is set in `flags', the */ + /* raster will call the `gray_spans' callback to draw gray pixel */ + /* spans, in the case of an aa glyph bitmap, it will call */ + /* `black_spans', and `bit_test' and `bit_set' in the case of a */ + /* monochrome bitmap. This allows direct composition over a */ + /* pre-existing bitmap through user-provided callbacks to perform the */ + /* span drawing/composition. */ + /* */ + /* Note that the `bit_test' and `bit_set' callbacks are required when */ + /* rendering a monochrome bitmap, as they are crucial to implement */ + /* correct drop-out control as defined in the TrueType specification. */ + /* */ + typedef struct FT_Raster_Params_ + { + const FT_Bitmap* target; + const void* source; + int flags; + FT_SpanFunc gray_spans; + FT_SpanFunc black_spans; /* doesn't work! */ + FT_Raster_BitTest_Func bit_test; /* doesn't work! */ + FT_Raster_BitSet_Func bit_set; /* doesn't work! */ + void* user; + FT_BBox clip_box; + + } FT_Raster_Params; + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Raster_NewFunc */ + /* */ + /* <Description> */ + /* A function used to create a new raster object. */ + /* */ + /* <Input> */ + /* memory :: A handle to the memory allocator. */ + /* */ + /* <Output> */ + /* raster :: A handle to the new raster object. */ + /* */ + /* <Return> */ + /* Error code. 0~means success. */ + /* */ + /* <Note> */ + /* The `memory' parameter is a typeless pointer in order to avoid */ + /* un-wanted dependencies on the rest of the FreeType code. In */ + /* practice, it is an @FT_Memory object, i.e., a handle to the */ + /* standard FreeType memory allocator. However, this field can be */ + /* completely ignored by a given raster implementation. */ + /* */ + typedef int + (*FT_Raster_NewFunc)( void* memory, + FT_Raster* raster ); + +#define FT_Raster_New_Func FT_Raster_NewFunc + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Raster_DoneFunc */ + /* */ + /* <Description> */ + /* A function used to destroy a given raster object. */ + /* */ + /* <Input> */ + /* raster :: A handle to the raster object. */ + /* */ + typedef void + (*FT_Raster_DoneFunc)( FT_Raster raster ); + +#define FT_Raster_Done_Func FT_Raster_DoneFunc + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Raster_ResetFunc */ + /* */ + /* <Description> */ + /* FreeType provides an area of memory called the `render pool', */ + /* available to all registered rasters. This pool can be freely used */ + /* during a given scan-conversion but is shared by all rasters. Its */ + /* content is thus transient. */ + /* */ + /* This function is called each time the render pool changes, or just */ + /* after a new raster object is created. */ + /* */ + /* <Input> */ + /* raster :: A handle to the new raster object. */ + /* */ + /* pool_base :: The address in memory of the render pool. */ + /* */ + /* pool_size :: The size in bytes of the render pool. */ + /* */ + /* <Note> */ + /* Rasters can ignore the render pool and rely on dynamic memory */ + /* allocation if they want to (a handle to the memory allocator is */ + /* passed to the raster constructor). However, this is not */ + /* recommended for efficiency purposes. */ + /* */ + typedef void + (*FT_Raster_ResetFunc)( FT_Raster raster, + unsigned char* pool_base, + unsigned long pool_size ); + +#define FT_Raster_Reset_Func FT_Raster_ResetFunc + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Raster_SetModeFunc */ + /* */ + /* <Description> */ + /* This function is a generic facility to change modes or attributes */ + /* in a given raster. This can be used for debugging purposes, or */ + /* simply to allow implementation-specific `features' in a given */ + /* raster module. */ + /* */ + /* <Input> */ + /* raster :: A handle to the new raster object. */ + /* */ + /* mode :: A 4-byte tag used to name the mode or property. */ + /* */ + /* args :: A pointer to the new mode/property to use. */ + /* */ + typedef int + (*FT_Raster_SetModeFunc)( FT_Raster raster, + unsigned long mode, + void* args ); + +#define FT_Raster_Set_Mode_Func FT_Raster_SetModeFunc + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Raster_RenderFunc */ + /* */ + /* <Description> */ + /* Invoke a given raster to scan-convert a given glyph image into a */ + /* target bitmap. */ + /* */ + /* <Input> */ + /* raster :: A handle to the raster object. */ + /* */ + /* params :: A pointer to an @FT_Raster_Params structure used to */ + /* store the rendering parameters. */ + /* */ + /* <Return> */ + /* Error code. 0~means success. */ + /* */ + /* <Note> */ + /* The exact format of the source image depends on the raster's glyph */ + /* format defined in its @FT_Raster_Funcs structure. It can be an */ + /* @FT_Outline or anything else in order to support a large array of */ + /* glyph formats. */ + /* */ + /* Note also that the render function can fail and return a */ + /* `FT_Err_Unimplemented_Feature' error code if the raster used does */ + /* not support direct composition. */ + /* */ + /* XXX: For now, the standard raster doesn't support direct */ + /* composition but this should change for the final release (see */ + /* the files `demos/src/ftgrays.c' and `demos/src/ftgrays2.c' */ + /* for examples of distinct implementations which support direct */ + /* composition). */ + /* */ + typedef int + (*FT_Raster_RenderFunc)( FT_Raster raster, + const FT_Raster_Params* params ); + +#define FT_Raster_Render_Func FT_Raster_RenderFunc + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Raster_Funcs */ + /* */ + /* <Description> */ + /* A structure used to describe a given raster class to the library. */ + /* */ + /* <Fields> */ + /* glyph_format :: The supported glyph format for this raster. */ + /* */ + /* raster_new :: The raster constructor. */ + /* */ + /* raster_reset :: Used to reset the render pool within the raster. */ + /* */ + /* raster_render :: A function to render a glyph into a given bitmap. */ + /* */ + /* raster_done :: The raster destructor. */ + /* */ + typedef struct FT_Raster_Funcs_ + { + FT_Glyph_Format glyph_format; + FT_Raster_NewFunc raster_new; + FT_Raster_ResetFunc raster_reset; + FT_Raster_SetModeFunc raster_set_mode; + FT_Raster_RenderFunc raster_render; + FT_Raster_DoneFunc raster_done; + + } FT_Raster_Funcs; + + + /* */ + + +FT_END_HEADER + +#endif /* __FTIMAGE_H__ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftincrem.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftincrem.h new file mode 100644 index 0000000000..aaf689ff16 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftincrem.h @@ -0,0 +1,353 @@ +/***************************************************************************/ +/* */ +/* ftincrem.h */ +/* */ +/* FreeType incremental loading (specification). */ +/* */ +/* Copyright 2002, 2003, 2006, 2007, 2008, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTINCREM_H__ +#define __FTINCREM_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /*************************************************************************** + * + * @section: + * incremental + * + * @title: + * Incremental Loading + * + * @abstract: + * Custom Glyph Loading. + * + * @description: + * This section contains various functions used to perform so-called + * `incremental' glyph loading. This is a mode where all glyphs loaded + * from a given @FT_Face are provided by the client application, + * + * Apart from that, all other tables are loaded normally from the font + * file. This mode is useful when FreeType is used within another + * engine, e.g., a PostScript Imaging Processor. + * + * To enable this mode, you must use @FT_Open_Face, passing an + * @FT_Parameter with the @FT_PARAM_TAG_INCREMENTAL tag and an + * @FT_Incremental_Interface value. See the comments for + * @FT_Incremental_InterfaceRec for an example. + * + */ + + + /*************************************************************************** + * + * @type: + * FT_Incremental + * + * @description: + * An opaque type describing a user-provided object used to implement + * `incremental' glyph loading within FreeType. This is used to support + * embedded fonts in certain environments (e.g., PostScript interpreters), + * where the glyph data isn't in the font file, or must be overridden by + * different values. + * + * @note: + * It is up to client applications to create and implement @FT_Incremental + * objects, as long as they provide implementations for the methods + * @FT_Incremental_GetGlyphDataFunc, @FT_Incremental_FreeGlyphDataFunc + * and @FT_Incremental_GetGlyphMetricsFunc. + * + * See the description of @FT_Incremental_InterfaceRec to understand how + * to use incremental objects with FreeType. + * + */ + typedef struct FT_IncrementalRec_* FT_Incremental; + + + /*************************************************************************** + * + * @struct: + * FT_Incremental_MetricsRec + * + * @description: + * A small structure used to contain the basic glyph metrics returned + * by the @FT_Incremental_GetGlyphMetricsFunc method. + * + * @fields: + * bearing_x :: + * Left bearing, in font units. + * + * bearing_y :: + * Top bearing, in font units. + * + * advance :: + * Horizontal component of glyph advance, in font units. + * + * advance_v :: + * Vertical component of glyph advance, in font units. + * + * @note: + * These correspond to horizontal or vertical metrics depending on the + * value of the `vertical' argument to the function + * @FT_Incremental_GetGlyphMetricsFunc. + * + */ + typedef struct FT_Incremental_MetricsRec_ + { + FT_Long bearing_x; + FT_Long bearing_y; + FT_Long advance; + FT_Long advance_v; /* since 2.3.12 */ + + } FT_Incremental_MetricsRec; + + + /*************************************************************************** + * + * @struct: + * FT_Incremental_Metrics + * + * @description: + * A handle to an @FT_Incremental_MetricsRec structure. + * + */ + typedef struct FT_Incremental_MetricsRec_* FT_Incremental_Metrics; + + + /*************************************************************************** + * + * @type: + * FT_Incremental_GetGlyphDataFunc + * + * @description: + * A function called by FreeType to access a given glyph's data bytes + * during @FT_Load_Glyph or @FT_Load_Char if incremental loading is + * enabled. + * + * Note that the format of the glyph's data bytes depends on the font + * file format. For TrueType, it must correspond to the raw bytes within + * the `glyf' table. For PostScript formats, it must correspond to the + * *unencrypted* charstring bytes, without any `lenIV' header. It is + * undefined for any other format. + * + * @input: + * incremental :: + * Handle to an opaque @FT_Incremental handle provided by the client + * application. + * + * glyph_index :: + * Index of relevant glyph. + * + * @output: + * adata :: + * A structure describing the returned glyph data bytes (which will be + * accessed as a read-only byte block). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If this function returns successfully the method + * @FT_Incremental_FreeGlyphDataFunc will be called later to release + * the data bytes. + * + * Nested calls to @FT_Incremental_GetGlyphDataFunc can happen for + * compound glyphs. + * + */ + typedef FT_Error + (*FT_Incremental_GetGlyphDataFunc)( FT_Incremental incremental, + FT_UInt glyph_index, + FT_Data* adata ); + + + /*************************************************************************** + * + * @type: + * FT_Incremental_FreeGlyphDataFunc + * + * @description: + * A function used to release the glyph data bytes returned by a + * successful call to @FT_Incremental_GetGlyphDataFunc. + * + * @input: + * incremental :: + * A handle to an opaque @FT_Incremental handle provided by the client + * application. + * + * data :: + * A structure describing the glyph data bytes (which will be accessed + * as a read-only byte block). + * + */ + typedef void + (*FT_Incremental_FreeGlyphDataFunc)( FT_Incremental incremental, + FT_Data* data ); + + + /*************************************************************************** + * + * @type: + * FT_Incremental_GetGlyphMetricsFunc + * + * @description: + * A function used to retrieve the basic metrics of a given glyph index + * before accessing its data. This is necessary because, in certain + * formats like TrueType, the metrics are stored in a different place from + * the glyph images proper. + * + * @input: + * incremental :: + * A handle to an opaque @FT_Incremental handle provided by the client + * application. + * + * glyph_index :: + * Index of relevant glyph. + * + * vertical :: + * If true, return vertical metrics. + * + * ametrics :: + * This parameter is used for both input and output. + * The original glyph metrics, if any, in font units. If metrics are + * not available all the values must be set to zero. + * + * @output: + * ametrics :: + * The replacement glyph metrics in font units. + * + */ + typedef FT_Error + (*FT_Incremental_GetGlyphMetricsFunc) + ( FT_Incremental incremental, + FT_UInt glyph_index, + FT_Bool vertical, + FT_Incremental_MetricsRec *ametrics ); + + + /************************************************************************** + * + * @struct: + * FT_Incremental_FuncsRec + * + * @description: + * A table of functions for accessing fonts that load data + * incrementally. Used in @FT_Incremental_InterfaceRec. + * + * @fields: + * get_glyph_data :: + * The function to get glyph data. Must not be null. + * + * free_glyph_data :: + * The function to release glyph data. Must not be null. + * + * get_glyph_metrics :: + * The function to get glyph metrics. May be null if the font does + * not provide overriding glyph metrics. + * + */ + typedef struct FT_Incremental_FuncsRec_ + { + FT_Incremental_GetGlyphDataFunc get_glyph_data; + FT_Incremental_FreeGlyphDataFunc free_glyph_data; + FT_Incremental_GetGlyphMetricsFunc get_glyph_metrics; + + } FT_Incremental_FuncsRec; + + + /*************************************************************************** + * + * @struct: + * FT_Incremental_InterfaceRec + * + * @description: + * A structure to be used with @FT_Open_Face to indicate that the user + * wants to support incremental glyph loading. You should use it with + * @FT_PARAM_TAG_INCREMENTAL as in the following example: + * + * { + * FT_Incremental_InterfaceRec inc_int; + * FT_Parameter parameter; + * FT_Open_Args open_args; + * + * + * // set up incremental descriptor + * inc_int.funcs = my_funcs; + * inc_int.object = my_object; + * + * // set up optional parameter + * parameter.tag = FT_PARAM_TAG_INCREMENTAL; + * parameter.data = &inc_int; + * + * // set up FT_Open_Args structure + * open_args.flags = FT_OPEN_PATHNAME | FT_OPEN_PARAMS; + * open_args.pathname = my_font_pathname; + * open_args.num_params = 1; + * open_args.params = ¶meter; // we use one optional argument + * + * // open the font + * error = FT_Open_Face( library, &open_args, index, &face ); + * ... + * } + * + */ + typedef struct FT_Incremental_InterfaceRec_ + { + const FT_Incremental_FuncsRec* funcs; + FT_Incremental object; + + } FT_Incremental_InterfaceRec; + + + /*************************************************************************** + * + * @type: + * FT_Incremental_Interface + * + * @description: + * A pointer to an @FT_Incremental_InterfaceRec structure. + * + */ + typedef FT_Incremental_InterfaceRec* FT_Incremental_Interface; + + + /*************************************************************************** + * + * @constant: + * FT_PARAM_TAG_INCREMENTAL + * + * @description: + * A constant used as the tag of @FT_Parameter structures to indicate + * an incremental loading object to be used by FreeType. + * + */ +#define FT_PARAM_TAG_INCREMENTAL FT_MAKE_TAG( 'i', 'n', 'c', 'r' ) + + /* */ + +FT_END_HEADER + +#endif /* __FTINCREM_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftlcdfil.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftlcdfil.h new file mode 100644 index 0000000000..0b55ebee65 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftlcdfil.h @@ -0,0 +1,213 @@ +/***************************************************************************/ +/* */ +/* ftlcdfil.h */ +/* */ +/* FreeType API for color filtering of subpixel bitmap glyphs */ +/* (specification). */ +/* */ +/* Copyright 2006, 2007, 2008, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FT_LCD_FILTER_H__ +#define __FT_LCD_FILTER_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /*************************************************************************** + * + * @section: + * lcd_filtering + * + * @title: + * LCD Filtering + * + * @abstract: + * Reduce color fringes of LCD-optimized bitmaps. + * + * @description: + * The @FT_Library_SetLcdFilter API can be used to specify a low-pass + * filter which is then applied to LCD-optimized bitmaps generated + * through @FT_Render_Glyph. This is useful to reduce color fringes + * which would occur with unfiltered rendering. + * + * Note that no filter is active by default, and that this function is + * *not* implemented in default builds of the library. You need to + * #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING in your `ftoption.h' file + * in order to activate it. + */ + + + /**************************************************************************** + * + * @enum: + * FT_LcdFilter + * + * @description: + * A list of values to identify various types of LCD filters. + * + * @values: + * FT_LCD_FILTER_NONE :: + * Do not perform filtering. When used with subpixel rendering, this + * results in sometimes severe color fringes. + * + * FT_LCD_FILTER_DEFAULT :: + * The default filter reduces color fringes considerably, at the cost + * of a slight blurriness in the output. + * + * FT_LCD_FILTER_LIGHT :: + * The light filter is a variant that produces less blurriness at the + * cost of slightly more color fringes than the default one. It might + * be better, depending on taste, your monitor, or your personal vision. + * + * FT_LCD_FILTER_LEGACY :: + * This filter corresponds to the original libXft color filter. It + * provides high contrast output but can exhibit really bad color + * fringes if glyphs are not extremely well hinted to the pixel grid. + * In other words, it only works well if the TrueType bytecode + * interpreter is enabled *and* high-quality hinted fonts are used. + * + * This filter is only provided for comparison purposes, and might be + * disabled or stay unsupported in the future. + * + * @since: + * 2.3.0 + */ + typedef enum FT_LcdFilter_ + { + FT_LCD_FILTER_NONE = 0, + FT_LCD_FILTER_DEFAULT = 1, + FT_LCD_FILTER_LIGHT = 2, + FT_LCD_FILTER_LEGACY = 16, + + FT_LCD_FILTER_MAX /* do not remove */ + + } FT_LcdFilter; + + + /************************************************************************** + * + * @func: + * FT_Library_SetLcdFilter + * + * @description: + * This function is used to apply color filtering to LCD decimated + * bitmaps, like the ones used when calling @FT_Render_Glyph with + * @FT_RENDER_MODE_LCD or @FT_RENDER_MODE_LCD_V. + * + * @input: + * library :: + * A handle to the target library instance. + * + * filter :: + * The filter type. + * + * You can use @FT_LCD_FILTER_NONE here to disable this feature, or + * @FT_LCD_FILTER_DEFAULT to use a default filter that should work + * well on most LCD screens. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This feature is always disabled by default. Clients must make an + * explicit call to this function with a `filter' value other than + * @FT_LCD_FILTER_NONE in order to enable it. + * + * Due to *PATENTS* covering subpixel rendering, this function doesn't + * do anything except returning `FT_Err_Unimplemented_Feature' if the + * configuration macro FT_CONFIG_OPTION_SUBPIXEL_RENDERING is not + * defined in your build of the library, which should correspond to all + * default builds of FreeType. + * + * The filter affects glyph bitmaps rendered through @FT_Render_Glyph, + * @FT_Outline_Get_Bitmap, @FT_Load_Glyph, and @FT_Load_Char. + * + * It does _not_ affect the output of @FT_Outline_Render and + * @FT_Outline_Get_Bitmap. + * + * If this feature is activated, the dimensions of LCD glyph bitmaps are + * either larger or taller than the dimensions of the corresponding + * outline with regards to the pixel grid. For example, for + * @FT_RENDER_MODE_LCD, the filter adds up to 3~pixels to the left, and + * up to 3~pixels to the right. + * + * The bitmap offset values are adjusted correctly, so clients shouldn't + * need to modify their layout and glyph positioning code when enabling + * the filter. + * + * @since: + * 2.3.0 + */ + FT_EXPORT( FT_Error ) + FT_Library_SetLcdFilter( FT_Library library, + FT_LcdFilter filter ); + + + /************************************************************************** + * + * @func: + * FT_Library_SetLcdFilterWeights + * + * @description: + * Use this function to override the filter weights selected by + * @FT_Library_SetLcdFilter. By default, FreeType uses the quintuple + * (0x00, 0x55, 0x56, 0x55, 0x00) for FT_LCD_FILTER_LIGHT, and (0x10, + * 0x40, 0x70, 0x40, 0x10) for FT_LCD_FILTER_DEFAULT and + * FT_LCD_FILTER_LEGACY. + * + * @input: + * library :: + * A handle to the target library instance. + * + * weights :: + * A pointer to an array; the function copies the first five bytes and + * uses them to specify the filter weights. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Due to *PATENTS* covering subpixel rendering, this function doesn't + * do anything except returning `FT_Err_Unimplemented_Feature' if the + * configuration macro FT_CONFIG_OPTION_SUBPIXEL_RENDERING is not + * defined in your build of the library, which should correspond to all + * default builds of FreeType. + * + * This function must be called after @FT_Library_SetLcdFilter to have + * any effect. + * + * @since: + * 2.4.0 + */ + FT_EXPORT( FT_Error ) + FT_Library_SetLcdFilterWeights( FT_Library library, + unsigned char *weights ); + + /* */ + + +FT_END_HEADER + +#endif /* __FT_LCD_FILTER_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftlist.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftlist.h new file mode 100644 index 0000000000..bb6f7f119d --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftlist.h @@ -0,0 +1,277 @@ +/***************************************************************************/ +/* */ +/* ftlist.h */ +/* */ +/* Generic list support for FreeType (specification). */ +/* */ +/* Copyright 1996-2001, 2003, 2007, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This file implements functions relative to list processing. Its */ + /* data structures are defined in `freetype.h'. */ + /* */ + /*************************************************************************/ + + +#ifndef __FTLIST_H__ +#define __FTLIST_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* list_processing */ + /* */ + /* <Title> */ + /* List Processing */ + /* */ + /* <Abstract> */ + /* Simple management of lists. */ + /* */ + /* <Description> */ + /* This section contains various definitions related to list */ + /* processing using doubly-linked nodes. */ + /* */ + /* <Order> */ + /* FT_List */ + /* FT_ListNode */ + /* FT_ListRec */ + /* FT_ListNodeRec */ + /* */ + /* FT_List_Add */ + /* FT_List_Insert */ + /* FT_List_Find */ + /* FT_List_Remove */ + /* FT_List_Up */ + /* FT_List_Iterate */ + /* FT_List_Iterator */ + /* FT_List_Finalize */ + /* FT_List_Destructor */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_List_Find */ + /* */ + /* <Description> */ + /* Find the list node for a given listed object. */ + /* */ + /* <Input> */ + /* list :: A pointer to the parent list. */ + /* data :: The address of the listed object. */ + /* */ + /* <Return> */ + /* List node. NULL if it wasn't found. */ + /* */ + FT_EXPORT( FT_ListNode ) + FT_List_Find( FT_List list, + void* data ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_List_Add */ + /* */ + /* <Description> */ + /* Append an element to the end of a list. */ + /* */ + /* <InOut> */ + /* list :: A pointer to the parent list. */ + /* node :: The node to append. */ + /* */ + FT_EXPORT( void ) + FT_List_Add( FT_List list, + FT_ListNode node ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_List_Insert */ + /* */ + /* <Description> */ + /* Insert an element at the head of a list. */ + /* */ + /* <InOut> */ + /* list :: A pointer to parent list. */ + /* node :: The node to insert. */ + /* */ + FT_EXPORT( void ) + FT_List_Insert( FT_List list, + FT_ListNode node ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_List_Remove */ + /* */ + /* <Description> */ + /* Remove a node from a list. This function doesn't check whether */ + /* the node is in the list! */ + /* */ + /* <Input> */ + /* node :: The node to remove. */ + /* */ + /* <InOut> */ + /* list :: A pointer to the parent list. */ + /* */ + FT_EXPORT( void ) + FT_List_Remove( FT_List list, + FT_ListNode node ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_List_Up */ + /* */ + /* <Description> */ + /* Move a node to the head/top of a list. Used to maintain LRU */ + /* lists. */ + /* */ + /* <InOut> */ + /* list :: A pointer to the parent list. */ + /* node :: The node to move. */ + /* */ + FT_EXPORT( void ) + FT_List_Up( FT_List list, + FT_ListNode node ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_List_Iterator */ + /* */ + /* <Description> */ + /* An FT_List iterator function which is called during a list parse */ + /* by @FT_List_Iterate. */ + /* */ + /* <Input> */ + /* node :: The current iteration list node. */ + /* */ + /* user :: A typeless pointer passed to @FT_List_Iterate. */ + /* Can be used to point to the iteration's state. */ + /* */ + typedef FT_Error + (*FT_List_Iterator)( FT_ListNode node, + void* user ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_List_Iterate */ + /* */ + /* <Description> */ + /* Parse a list and calls a given iterator function on each element. */ + /* Note that parsing is stopped as soon as one of the iterator calls */ + /* returns a non-zero value. */ + /* */ + /* <Input> */ + /* list :: A handle to the list. */ + /* iterator :: An iterator function, called on each node of the list. */ + /* user :: A user-supplied field which is passed as the second */ + /* argument to the iterator. */ + /* */ + /* <Return> */ + /* The result (a FreeType error code) of the last iterator call. */ + /* */ + FT_EXPORT( FT_Error ) + FT_List_Iterate( FT_List list, + FT_List_Iterator iterator, + void* user ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_List_Destructor */ + /* */ + /* <Description> */ + /* An @FT_List iterator function which is called during a list */ + /* finalization by @FT_List_Finalize to destroy all elements in a */ + /* given list. */ + /* */ + /* <Input> */ + /* system :: The current system object. */ + /* */ + /* data :: The current object to destroy. */ + /* */ + /* user :: A typeless pointer passed to @FT_List_Iterate. It can */ + /* be used to point to the iteration's state. */ + /* */ + typedef void + (*FT_List_Destructor)( FT_Memory memory, + void* data, + void* user ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_List_Finalize */ + /* */ + /* <Description> */ + /* Destroy all elements in the list as well as the list itself. */ + /* */ + /* <Input> */ + /* list :: A handle to the list. */ + /* */ + /* destroy :: A list destructor that will be applied to each element */ + /* of the list. */ + /* */ + /* memory :: The current memory object which handles deallocation. */ + /* */ + /* user :: A user-supplied field which is passed as the last */ + /* argument to the destructor. */ + /* */ + /* <Note> */ + /* This function expects that all nodes added by @FT_List_Add or */ + /* @FT_List_Insert have been dynamically allocated. */ + /* */ + FT_EXPORT( void ) + FT_List_Finalize( FT_List list, + FT_List_Destructor destroy, + FT_Memory memory, + void* user ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTLIST_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftlzw.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftlzw.h new file mode 100644 index 0000000000..00d40169a7 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftlzw.h @@ -0,0 +1,99 @@ +/***************************************************************************/ +/* */ +/* ftlzw.h */ +/* */ +/* LZW-compressed stream support. */ +/* */ +/* Copyright 2004, 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTLZW_H__ +#define __FTLZW_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /*************************************************************************/ + /* */ + /* <Section> */ + /* lzw */ + /* */ + /* <Title> */ + /* LZW Streams */ + /* */ + /* <Abstract> */ + /* Using LZW-compressed font files. */ + /* */ + /* <Description> */ + /* This section contains the declaration of LZW-specific functions. */ + /* */ + /*************************************************************************/ + + /************************************************************************ + * + * @function: + * FT_Stream_OpenLZW + * + * @description: + * Open a new stream to parse LZW-compressed font files. This is + * mainly used to support the compressed `*.pcf.Z' fonts that come + * with XFree86. + * + * @input: + * stream :: The target embedding stream. + * + * source :: The source stream. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source stream must be opened _before_ calling this function. + * + * Calling the internal function `FT_Stream_Close' on the new stream will + * *not* call `FT_Stream_Close' on the source stream. None of the stream + * objects will be released to the heap. + * + * The stream implementation is very basic and resets the decompression + * process each time seeking backwards is needed within the stream + * + * In certain builds of the library, LZW compression recognition is + * automatically handled when calling @FT_New_Face or @FT_Open_Face. + * This means that if no font driver is capable of handling the raw + * compressed file, the library will try to open a LZW stream from it + * and re-open the face with it. + * + * This function may return `FT_Err_Unimplemented_Feature' if your build + * of FreeType was not compiled with LZW support. + */ + FT_EXPORT( FT_Error ) + FT_Stream_OpenLZW( FT_Stream stream, + FT_Stream source ); + + /* */ + + +FT_END_HEADER + +#endif /* __FTLZW_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmac.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmac.h new file mode 100644 index 0000000000..ab5bab5170 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmac.h @@ -0,0 +1,274 @@ +/***************************************************************************/ +/* */ +/* ftmac.h */ +/* */ +/* Additional Mac-specific API. */ +/* */ +/* Copyright 1996-2001, 2004, 2006, 2007 by */ +/* Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +/***************************************************************************/ +/* */ +/* NOTE: Include this file after <freetype/freetype.h> and after any */ +/* Mac-specific headers (because this header uses Mac types such as */ +/* Handle, FSSpec, FSRef, etc.) */ +/* */ +/***************************************************************************/ + + +#ifndef __FTMAC_H__ +#define __FTMAC_H__ + + +#include <ft2build.h> + + +FT_BEGIN_HEADER + + +/* gcc-3.4.1 and later can warn about functions tagged as deprecated */ +#ifndef FT_DEPRECATED_ATTRIBUTE +#if defined(__GNUC__) && \ + ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1))) +#define FT_DEPRECATED_ATTRIBUTE __attribute__((deprecated)) +#else +#define FT_DEPRECATED_ATTRIBUTE +#endif +#endif + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* mac_specific */ + /* */ + /* <Title> */ + /* Mac Specific Interface */ + /* */ + /* <Abstract> */ + /* Only available on the Macintosh. */ + /* */ + /* <Description> */ + /* The following definitions are only available if FreeType is */ + /* compiled on a Macintosh. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_New_Face_From_FOND */ + /* */ + /* <Description> */ + /* Create a new face object from a FOND resource. */ + /* */ + /* <InOut> */ + /* library :: A handle to the library resource. */ + /* */ + /* <Input> */ + /* fond :: A FOND resource. */ + /* */ + /* face_index :: Only supported for the -1 `sanity check' special */ + /* case. */ + /* */ + /* <Output> */ + /* aface :: A handle to a new face object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Notes> */ + /* This function can be used to create @FT_Face objects from fonts */ + /* that are installed in the system as follows. */ + /* */ + /* { */ + /* fond = GetResource( 'FOND', fontName ); */ + /* error = FT_New_Face_From_FOND( library, fond, 0, &face ); */ + /* } */ + /* */ + FT_EXPORT( FT_Error ) + FT_New_Face_From_FOND( FT_Library library, + Handle fond, + FT_Long face_index, + FT_Face *aface ) + FT_DEPRECATED_ATTRIBUTE; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_GetFile_From_Mac_Name */ + /* */ + /* <Description> */ + /* Return an FSSpec for the disk file containing the named font. */ + /* */ + /* <Input> */ + /* fontName :: Mac OS name of the font (e.g., Times New Roman */ + /* Bold). */ + /* */ + /* <Output> */ + /* pathSpec :: FSSpec to the file. For passing to */ + /* @FT_New_Face_From_FSSpec. */ + /* */ + /* face_index :: Index of the face. For passing to */ + /* @FT_New_Face_From_FSSpec. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_GetFile_From_Mac_Name( const char* fontName, + FSSpec* pathSpec, + FT_Long* face_index ) + FT_DEPRECATED_ATTRIBUTE; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_GetFile_From_Mac_ATS_Name */ + /* */ + /* <Description> */ + /* Return an FSSpec for the disk file containing the named font. */ + /* */ + /* <Input> */ + /* fontName :: Mac OS name of the font in ATS framework. */ + /* */ + /* <Output> */ + /* pathSpec :: FSSpec to the file. For passing to */ + /* @FT_New_Face_From_FSSpec. */ + /* */ + /* face_index :: Index of the face. For passing to */ + /* @FT_New_Face_From_FSSpec. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_GetFile_From_Mac_ATS_Name( const char* fontName, + FSSpec* pathSpec, + FT_Long* face_index ) + FT_DEPRECATED_ATTRIBUTE; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_GetFilePath_From_Mac_ATS_Name */ + /* */ + /* <Description> */ + /* Return a pathname of the disk file and face index for given font */ + /* name which is handled by ATS framework. */ + /* */ + /* <Input> */ + /* fontName :: Mac OS name of the font in ATS framework. */ + /* */ + /* <Output> */ + /* path :: Buffer to store pathname of the file. For passing */ + /* to @FT_New_Face. The client must allocate this */ + /* buffer before calling this function. */ + /* */ + /* maxPathSize :: Lengths of the buffer `path' that client allocated. */ + /* */ + /* face_index :: Index of the face. For passing to @FT_New_Face. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_GetFilePath_From_Mac_ATS_Name( const char* fontName, + UInt8* path, + UInt32 maxPathSize, + FT_Long* face_index ) + FT_DEPRECATED_ATTRIBUTE; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_New_Face_From_FSSpec */ + /* */ + /* <Description> */ + /* Create a new face object from a given resource and typeface index */ + /* using an FSSpec to the font file. */ + /* */ + /* <InOut> */ + /* library :: A handle to the library resource. */ + /* */ + /* <Input> */ + /* spec :: FSSpec to the font file. */ + /* */ + /* face_index :: The index of the face within the resource. The */ + /* first face has index~0. */ + /* <Output> */ + /* aface :: A handle to a new face object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* @FT_New_Face_From_FSSpec is identical to @FT_New_Face except */ + /* it accepts an FSSpec instead of a path. */ + /* */ + FT_EXPORT( FT_Error ) + FT_New_Face_From_FSSpec( FT_Library library, + const FSSpec *spec, + FT_Long face_index, + FT_Face *aface ) + FT_DEPRECATED_ATTRIBUTE; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_New_Face_From_FSRef */ + /* */ + /* <Description> */ + /* Create a new face object from a given resource and typeface index */ + /* using an FSRef to the font file. */ + /* */ + /* <InOut> */ + /* library :: A handle to the library resource. */ + /* */ + /* <Input> */ + /* spec :: FSRef to the font file. */ + /* */ + /* face_index :: The index of the face within the resource. The */ + /* first face has index~0. */ + /* <Output> */ + /* aface :: A handle to a new face object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* @FT_New_Face_From_FSRef is identical to @FT_New_Face except */ + /* it accepts an FSRef instead of a path. */ + /* */ + FT_EXPORT( FT_Error ) + FT_New_Face_From_FSRef( FT_Library library, + const FSRef *ref, + FT_Long face_index, + FT_Face *aface ) + FT_DEPRECATED_ATTRIBUTE; + + /* */ + + +FT_END_HEADER + + +#endif /* __FTMAC_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmm.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmm.h new file mode 100644 index 0000000000..3aefb9e4f2 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmm.h @@ -0,0 +1,378 @@ +/***************************************************************************/ +/* */ +/* ftmm.h */ +/* */ +/* FreeType Multiple Master font interface (specification). */ +/* */ +/* Copyright 1996-2001, 2003, 2004, 2006, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTMM_H__ +#define __FTMM_H__ + + +#include <ft2build.h> +#include FT_TYPE1_TABLES_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* multiple_masters */ + /* */ + /* <Title> */ + /* Multiple Masters */ + /* */ + /* <Abstract> */ + /* How to manage Multiple Masters fonts. */ + /* */ + /* <Description> */ + /* The following types and functions are used to manage Multiple */ + /* Master fonts, i.e., the selection of specific design instances by */ + /* setting design axis coordinates. */ + /* */ + /* George Williams has extended this interface to make it work with */ + /* both Type~1 Multiple Masters fonts and GX distortable (var) */ + /* fonts. Some of these routines only work with MM fonts, others */ + /* will work with both types. They are similar enough that a */ + /* consistent interface makes sense. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_MM_Axis */ + /* */ + /* <Description> */ + /* A simple structure used to model a given axis in design space for */ + /* Multiple Masters fonts. */ + /* */ + /* This structure can't be used for GX var fonts. */ + /* */ + /* <Fields> */ + /* name :: The axis's name. */ + /* */ + /* minimum :: The axis's minimum design coordinate. */ + /* */ + /* maximum :: The axis's maximum design coordinate. */ + /* */ + typedef struct FT_MM_Axis_ + { + FT_String* name; + FT_Long minimum; + FT_Long maximum; + + } FT_MM_Axis; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Multi_Master */ + /* */ + /* <Description> */ + /* A structure used to model the axes and space of a Multiple Masters */ + /* font. */ + /* */ + /* This structure can't be used for GX var fonts. */ + /* */ + /* <Fields> */ + /* num_axis :: Number of axes. Cannot exceed~4. */ + /* */ + /* num_designs :: Number of designs; should be normally 2^num_axis */ + /* even though the Type~1 specification strangely */ + /* allows for intermediate designs to be present. This */ + /* number cannot exceed~16. */ + /* */ + /* axis :: A table of axis descriptors. */ + /* */ + typedef struct FT_Multi_Master_ + { + FT_UInt num_axis; + FT_UInt num_designs; + FT_MM_Axis axis[T1_MAX_MM_AXIS]; + + } FT_Multi_Master; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Var_Axis */ + /* */ + /* <Description> */ + /* A simple structure used to model a given axis in design space for */ + /* Multiple Masters and GX var fonts. */ + /* */ + /* <Fields> */ + /* name :: The axis's name. */ + /* Not always meaningful for GX. */ + /* */ + /* minimum :: The axis's minimum design coordinate. */ + /* */ + /* def :: The axis's default design coordinate. */ + /* FreeType computes meaningful default values for MM; it */ + /* is then an integer value, not in 16.16 format. */ + /* */ + /* maximum :: The axis's maximum design coordinate. */ + /* */ + /* tag :: The axis's tag (the GX equivalent to `name'). */ + /* FreeType provides default values for MM if possible. */ + /* */ + /* strid :: The entry in `name' table (another GX version of */ + /* `name'). */ + /* Not meaningful for MM. */ + /* */ + typedef struct FT_Var_Axis_ + { + FT_String* name; + + FT_Fixed minimum; + FT_Fixed def; + FT_Fixed maximum; + + FT_ULong tag; + FT_UInt strid; + + } FT_Var_Axis; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Var_Named_Style */ + /* */ + /* <Description> */ + /* A simple structure used to model a named style in a GX var font. */ + /* */ + /* This structure can't be used for MM fonts. */ + /* */ + /* <Fields> */ + /* coords :: The design coordinates for this style. */ + /* This is an array with one entry for each axis. */ + /* */ + /* strid :: The entry in `name' table identifying this style. */ + /* */ + typedef struct FT_Var_Named_Style_ + { + FT_Fixed* coords; + FT_UInt strid; + + } FT_Var_Named_Style; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_MM_Var */ + /* */ + /* <Description> */ + /* A structure used to model the axes and space of a Multiple Masters */ + /* or GX var distortable font. */ + /* */ + /* Some fields are specific to one format and not to the other. */ + /* */ + /* <Fields> */ + /* num_axis :: The number of axes. The maximum value is~4 for */ + /* MM; no limit in GX. */ + /* */ + /* num_designs :: The number of designs; should be normally */ + /* 2^num_axis for MM fonts. Not meaningful for GX */ + /* (where every glyph could have a different */ + /* number of designs). */ + /* */ + /* num_namedstyles :: The number of named styles; only meaningful for */ + /* GX which allows certain design coordinates to */ + /* have a string ID (in the `name' table) */ + /* associated with them. The font can tell the */ + /* user that, for example, Weight=1.5 is `Bold'. */ + /* */ + /* axis :: A table of axis descriptors. */ + /* GX fonts contain slightly more data than MM. */ + /* */ + /* namedstyles :: A table of named styles. */ + /* Only meaningful with GX. */ + /* */ + typedef struct FT_MM_Var_ + { + FT_UInt num_axis; + FT_UInt num_designs; + FT_UInt num_namedstyles; + FT_Var_Axis* axis; + FT_Var_Named_Style* namedstyle; + + } FT_MM_Var; + + + /* */ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Multi_Master */ + /* */ + /* <Description> */ + /* Retrieve the Multiple Master descriptor of a given font. */ + /* */ + /* This function can't be used with GX fonts. */ + /* */ + /* <Input> */ + /* face :: A handle to the source face. */ + /* */ + /* <Output> */ + /* amaster :: The Multiple Masters descriptor. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Get_Multi_Master( FT_Face face, + FT_Multi_Master *amaster ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_MM_Var */ + /* */ + /* <Description> */ + /* Retrieve the Multiple Master/GX var descriptor of a given font. */ + /* */ + /* <Input> */ + /* face :: A handle to the source face. */ + /* */ + /* <Output> */ + /* amaster :: The Multiple Masters/GX var descriptor. */ + /* Allocates a data structure, which the user must free */ + /* (a single call to FT_FREE will do it). */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Get_MM_Var( FT_Face face, + FT_MM_Var* *amaster ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Set_MM_Design_Coordinates */ + /* */ + /* <Description> */ + /* For Multiple Masters fonts, choose an interpolated font design */ + /* through design coordinates. */ + /* */ + /* This function can't be used with GX fonts. */ + /* */ + /* <InOut> */ + /* face :: A handle to the source face. */ + /* */ + /* <Input> */ + /* num_coords :: The number of design coordinates (must be equal to */ + /* the number of axes in the font). */ + /* */ + /* coords :: An array of design coordinates. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Set_MM_Design_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Long* coords ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Set_Var_Design_Coordinates */ + /* */ + /* <Description> */ + /* For Multiple Master or GX Var fonts, choose an interpolated font */ + /* design through design coordinates. */ + /* */ + /* <InOut> */ + /* face :: A handle to the source face. */ + /* */ + /* <Input> */ + /* num_coords :: The number of design coordinates (must be equal to */ + /* the number of axes in the font). */ + /* */ + /* coords :: An array of design coordinates. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Set_Var_Design_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Set_MM_Blend_Coordinates */ + /* */ + /* <Description> */ + /* For Multiple Masters and GX var fonts, choose an interpolated font */ + /* design through normalized blend coordinates. */ + /* */ + /* <InOut> */ + /* face :: A handle to the source face. */ + /* */ + /* <Input> */ + /* num_coords :: The number of design coordinates (must be equal to */ + /* the number of axes in the font). */ + /* */ + /* coords :: The design coordinates array (each element must be */ + /* between 0 and 1.0). */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Set_MM_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Set_Var_Blend_Coordinates */ + /* */ + /* <Description> */ + /* This is another name of @FT_Set_MM_Blend_Coordinates. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Set_Var_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTMM_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmodapi.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmodapi.h new file mode 100644 index 0000000000..8f2e017947 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmodapi.h @@ -0,0 +1,483 @@ +/***************************************************************************/ +/* */ +/* ftmodapi.h */ +/* */ +/* FreeType modules public interface (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2006, 2008, 2009, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTMODAPI_H__ +#define __FTMODAPI_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* module_management */ + /* */ + /* <Title> */ + /* Module Management */ + /* */ + /* <Abstract> */ + /* How to add, upgrade, and remove modules from FreeType. */ + /* */ + /* <Description> */ + /* The definitions below are used to manage modules within FreeType. */ + /* Modules can be added, upgraded, and removed at runtime. */ + /* */ + /*************************************************************************/ + + + /* module bit flags */ +#define FT_MODULE_FONT_DRIVER 1 /* this module is a font driver */ +#define FT_MODULE_RENDERER 2 /* this module is a renderer */ +#define FT_MODULE_HINTER 4 /* this module is a glyph hinter */ +#define FT_MODULE_STYLER 8 /* this module is a styler */ + +#define FT_MODULE_DRIVER_SCALABLE 0x100 /* the driver supports */ + /* scalable fonts */ +#define FT_MODULE_DRIVER_NO_OUTLINES 0x200 /* the driver does not */ + /* support vector outlines */ +#define FT_MODULE_DRIVER_HAS_HINTER 0x400 /* the driver provides its */ + /* own hinter */ + + + /* deprecated values */ +#define ft_module_font_driver FT_MODULE_FONT_DRIVER +#define ft_module_renderer FT_MODULE_RENDERER +#define ft_module_hinter FT_MODULE_HINTER +#define ft_module_styler FT_MODULE_STYLER + +#define ft_module_driver_scalable FT_MODULE_DRIVER_SCALABLE +#define ft_module_driver_no_outlines FT_MODULE_DRIVER_NO_OUTLINES +#define ft_module_driver_has_hinter FT_MODULE_DRIVER_HAS_HINTER + + + typedef FT_Pointer FT_Module_Interface; + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Module_Constructor */ + /* */ + /* <Description> */ + /* A function used to initialize (not create) a new module object. */ + /* */ + /* <Input> */ + /* module :: The module to initialize. */ + /* */ + typedef FT_Error + (*FT_Module_Constructor)( FT_Module module ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Module_Destructor */ + /* */ + /* <Description> */ + /* A function used to finalize (not destroy) a given module object. */ + /* */ + /* <Input> */ + /* module :: The module to finalize. */ + /* */ + typedef void + (*FT_Module_Destructor)( FT_Module module ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Module_Requester */ + /* */ + /* <Description> */ + /* A function used to query a given module for a specific interface. */ + /* */ + /* <Input> */ + /* module :: The module to finalize. */ + /* */ + /* name :: The name of the interface in the module. */ + /* */ + typedef FT_Module_Interface + (*FT_Module_Requester)( FT_Module module, + const char* name ); + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Module_Class */ + /* */ + /* <Description> */ + /* The module class descriptor. */ + /* */ + /* <Fields> */ + /* module_flags :: Bit flags describing the module. */ + /* */ + /* module_size :: The size of one module object/instance in */ + /* bytes. */ + /* */ + /* module_name :: The name of the module. */ + /* */ + /* module_version :: The version, as a 16.16 fixed number */ + /* (major.minor). */ + /* */ + /* module_requires :: The version of FreeType this module requires, */ + /* as a 16.16 fixed number (major.minor). Starts */ + /* at version 2.0, i.e., 0x20000. */ + /* */ + /* module_init :: The initializing function. */ + /* */ + /* module_done :: The finalizing function. */ + /* */ + /* get_interface :: The interface requesting function. */ + /* */ + typedef struct FT_Module_Class_ + { + FT_ULong module_flags; + FT_Long module_size; + const FT_String* module_name; + FT_Fixed module_version; + FT_Fixed module_requires; + + const void* module_interface; + + FT_Module_Constructor module_init; + FT_Module_Destructor module_done; + FT_Module_Requester get_interface; + + } FT_Module_Class; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Add_Module */ + /* */ + /* <Description> */ + /* Add a new module to a given library instance. */ + /* */ + /* <InOut> */ + /* library :: A handle to the library object. */ + /* */ + /* <Input> */ + /* clazz :: A pointer to class descriptor for the module. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* An error will be returned if a module already exists by that name, */ + /* or if the module requires a version of FreeType that is too great. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Add_Module( FT_Library library, + const FT_Module_Class* clazz ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Module */ + /* */ + /* <Description> */ + /* Find a module by its name. */ + /* */ + /* <Input> */ + /* library :: A handle to the library object. */ + /* */ + /* module_name :: The module's name (as an ASCII string). */ + /* */ + /* <Return> */ + /* A module handle. 0~if none was found. */ + /* */ + /* <Note> */ + /* FreeType's internal modules aren't documented very well, and you */ + /* should look up the source code for details. */ + /* */ + FT_EXPORT( FT_Module ) + FT_Get_Module( FT_Library library, + const char* module_name ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Remove_Module */ + /* */ + /* <Description> */ + /* Remove a given module from a library instance. */ + /* */ + /* <InOut> */ + /* library :: A handle to a library object. */ + /* */ + /* <Input> */ + /* module :: A handle to a module object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The module object is destroyed by the function in case of success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Remove_Module( FT_Library library, + FT_Module module ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Reference_Library */ + /* */ + /* <Description> */ + /* A counter gets initialized to~1 at the time an @FT_Library */ + /* structure is created. This function increments the counter. */ + /* @FT_Done_Library then only destroys a library if the counter is~1, */ + /* otherwise it simply decrements the counter. */ + /* */ + /* This function helps in managing life-cycles of structures which */ + /* reference @FT_Library objects. */ + /* */ + /* <Input> */ + /* library :: A handle to a target library object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Since> */ + /* 2.4.2 */ + /* */ + FT_EXPORT( FT_Error ) + FT_Reference_Library( FT_Library library ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_New_Library */ + /* */ + /* <Description> */ + /* This function is used to create a new FreeType library instance */ + /* from a given memory object. It is thus possible to use libraries */ + /* with distinct memory allocators within the same program. */ + /* */ + /* Normally, you would call this function (followed by a call to */ + /* @FT_Add_Default_Modules or a series of calls to @FT_Add_Module) */ + /* instead of @FT_Init_FreeType to initialize the FreeType library. */ + /* */ + /* Don't use @FT_Done_FreeType but @FT_Done_Library to destroy a */ + /* library instance. */ + /* */ + /* <Input> */ + /* memory :: A handle to the original memory object. */ + /* */ + /* <Output> */ + /* alibrary :: A pointer to handle of a new library object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* See the discussion of reference counters in the description of */ + /* @FT_Reference_Library. */ + /* */ + FT_EXPORT( FT_Error ) + FT_New_Library( FT_Memory memory, + FT_Library *alibrary ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Done_Library */ + /* */ + /* <Description> */ + /* Discard a given library object. This closes all drivers and */ + /* discards all resource objects. */ + /* */ + /* <Input> */ + /* library :: A handle to the target library. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* See the discussion of reference counters in the description of */ + /* @FT_Reference_Library. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Done_Library( FT_Library library ); + +/* */ + + typedef void + (*FT_DebugHook_Func)( void* arg ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Set_Debug_Hook */ + /* */ + /* <Description> */ + /* Set a debug hook function for debugging the interpreter of a font */ + /* format. */ + /* */ + /* <InOut> */ + /* library :: A handle to the library object. */ + /* */ + /* <Input> */ + /* hook_index :: The index of the debug hook. You should use the */ + /* values defined in `ftobjs.h', e.g., */ + /* `FT_DEBUG_HOOK_TRUETYPE'. */ + /* */ + /* debug_hook :: The function used to debug the interpreter. */ + /* */ + /* <Note> */ + /* Currently, four debug hook slots are available, but only two (for */ + /* the TrueType and the Type~1 interpreter) are defined. */ + /* */ + /* Since the internal headers of FreeType are no longer installed, */ + /* the symbol `FT_DEBUG_HOOK_TRUETYPE' isn't available publicly. */ + /* This is a bug and will be fixed in a forthcoming release. */ + /* */ + FT_EXPORT( void ) + FT_Set_Debug_Hook( FT_Library library, + FT_UInt hook_index, + FT_DebugHook_Func debug_hook ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Add_Default_Modules */ + /* */ + /* <Description> */ + /* Add the set of default drivers to a given library object. */ + /* This is only useful when you create a library object with */ + /* @FT_New_Library (usually to plug a custom memory manager). */ + /* */ + /* <InOut> */ + /* library :: A handle to a new library object. */ + /* */ + FT_EXPORT( void ) + FT_Add_Default_Modules( FT_Library library ); + + + + /************************************************************************** + * + * @section: + * truetype_engine + * + * @title: + * The TrueType Engine + * + * @abstract: + * TrueType bytecode support. + * + * @description: + * This section contains a function used to query the level of TrueType + * bytecode support compiled in this version of the library. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_TrueTypeEngineType + * + * @description: + * A list of values describing which kind of TrueType bytecode + * engine is implemented in a given FT_Library instance. It is used + * by the @FT_Get_TrueType_Engine_Type function. + * + * @values: + * FT_TRUETYPE_ENGINE_TYPE_NONE :: + * The library doesn't implement any kind of bytecode interpreter. + * + * FT_TRUETYPE_ENGINE_TYPE_UNPATENTED :: + * The library implements a bytecode interpreter that doesn't + * support the patented operations of the TrueType virtual machine. + * + * Its main use is to load certain Asian fonts which position and + * scale glyph components with bytecode instructions. It produces + * bad output for most other fonts. + * + * FT_TRUETYPE_ENGINE_TYPE_PATENTED :: + * The library implements a bytecode interpreter that covers + * the full instruction set of the TrueType virtual machine (this + * was governed by patents until May 2010, hence the name). + * + * @since: + * 2.2 + * + */ + typedef enum FT_TrueTypeEngineType_ + { + FT_TRUETYPE_ENGINE_TYPE_NONE = 0, + FT_TRUETYPE_ENGINE_TYPE_UNPATENTED, + FT_TRUETYPE_ENGINE_TYPE_PATENTED + + } FT_TrueTypeEngineType; + + + /************************************************************************** + * + * @func: + * FT_Get_TrueType_Engine_Type + * + * @description: + * Return an @FT_TrueTypeEngineType value to indicate which level of + * the TrueType virtual machine a given library instance supports. + * + * @input: + * library :: + * A library instance. + * + * @return: + * A value indicating which level is supported. + * + * @since: + * 2.2 + * + */ + FT_EXPORT( FT_TrueTypeEngineType ) + FT_Get_TrueType_Engine_Type( FT_Library library ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTMODAPI_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmoderr.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmoderr.h new file mode 100644 index 0000000000..1bf3b384ab --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftmoderr.h @@ -0,0 +1,156 @@ +/***************************************************************************/ +/* */ +/* ftmoderr.h */ +/* */ +/* FreeType module error offsets (specification). */ +/* */ +/* Copyright 2001, 2002, 2003, 2004, 2005, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This file is used to define the FreeType module error offsets. */ + /* */ + /* The lower byte gives the error code, the higher byte gives the */ + /* module. The base module has error offset 0. For example, the error */ + /* `FT_Err_Invalid_File_Format' has value 0x003, the error */ + /* `TT_Err_Invalid_File_Format' has value 0x1103, the error */ + /* `T1_Err_Invalid_File_Format' has value 0x1203, etc. */ + /* */ + /* Undefine the macro FT_CONFIG_OPTION_USE_MODULE_ERRORS in ftoption.h */ + /* to make the higher byte always zero (disabling the module error */ + /* mechanism). */ + /* */ + /* It can also be used to create a module error message table easily */ + /* with something like */ + /* */ + /* { */ + /* #undef __FTMODERR_H__ */ + /* #define FT_MODERRDEF( e, v, s ) { FT_Mod_Err_ ## e, s }, */ + /* #define FT_MODERR_START_LIST { */ + /* #define FT_MODERR_END_LIST { 0, 0 } }; */ + /* */ + /* const struct */ + /* { */ + /* int mod_err_offset; */ + /* const char* mod_err_msg */ + /* } ft_mod_errors[] = */ + /* */ + /* #include FT_MODULE_ERRORS_H */ + /* } */ + /* */ + /* To use such a table, all errors must be ANDed with 0xFF00 to remove */ + /* the error code. */ + /* */ + /*************************************************************************/ + + +#ifndef __FTMODERR_H__ +#define __FTMODERR_H__ + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** SETUP MACROS *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#undef FT_NEED_EXTERN_C + +#ifndef FT_MODERRDEF + +#ifdef FT_CONFIG_OPTION_USE_MODULE_ERRORS +#define FT_MODERRDEF( e, v, s ) FT_Mod_Err_ ## e = v, +#else +#define FT_MODERRDEF( e, v, s ) FT_Mod_Err_ ## e = 0, +#endif + +#define FT_MODERR_START_LIST enum { +#define FT_MODERR_END_LIST FT_Mod_Err_Max }; + +#ifdef __cplusplus +#define FT_NEED_EXTERN_C + extern "C" { +#endif + +#endif /* !FT_MODERRDEF */ + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** LIST MODULE ERROR BASES *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#ifdef FT_MODERR_START_LIST + FT_MODERR_START_LIST +#endif + + + FT_MODERRDEF( Base, 0x000, "base module" ) + FT_MODERRDEF( Autofit, 0x100, "autofitter module" ) + FT_MODERRDEF( BDF, 0x200, "BDF module" ) + FT_MODERRDEF( Bzip2, 0x300, "Bzip2 module" ) + FT_MODERRDEF( Cache, 0x400, "cache module" ) + FT_MODERRDEF( CFF, 0x500, "CFF module" ) + FT_MODERRDEF( CID, 0x600, "CID module" ) + FT_MODERRDEF( Gzip, 0x700, "Gzip module" ) + FT_MODERRDEF( LZW, 0x800, "LZW module" ) + FT_MODERRDEF( OTvalid, 0x900, "OpenType validation module" ) + FT_MODERRDEF( PCF, 0xA00, "PCF module" ) + FT_MODERRDEF( PFR, 0xB00, "PFR module" ) + FT_MODERRDEF( PSaux, 0xC00, "PS auxiliary module" ) + FT_MODERRDEF( PShinter, 0xD00, "PS hinter module" ) + FT_MODERRDEF( PSnames, 0xE00, "PS names module" ) + FT_MODERRDEF( Raster, 0xF00, "raster module" ) + FT_MODERRDEF( SFNT, 0x1000, "SFNT module" ) + FT_MODERRDEF( Smooth, 0x1100, "smooth raster module" ) + FT_MODERRDEF( TrueType, 0x1200, "TrueType module" ) + FT_MODERRDEF( Type1, 0x1300, "Type 1 module" ) + FT_MODERRDEF( Type42, 0x1400, "Type 42 module" ) + FT_MODERRDEF( Winfonts, 0x1500, "Windows FON/FNT module" ) + + +#ifdef FT_MODERR_END_LIST + FT_MODERR_END_LIST +#endif + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** CLEANUP *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#ifdef FT_NEED_EXTERN_C + } +#endif + +#undef FT_MODERR_START_LIST +#undef FT_MODERR_END_LIST +#undef FT_MODERRDEF +#undef FT_NEED_EXTERN_C + + +#endif /* __FTMODERR_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftotval.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftotval.h new file mode 100644 index 0000000000..027f2e8865 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftotval.h @@ -0,0 +1,203 @@ +/***************************************************************************/ +/* */ +/* ftotval.h */ +/* */ +/* FreeType API for validating OpenType tables (specification). */ +/* */ +/* Copyright 2004, 2005, 2006, 2007 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +/***************************************************************************/ +/* */ +/* */ +/* Warning: This module might be moved to a different library in the */ +/* future to avoid a tight dependency between FreeType and the */ +/* OpenType specification. */ +/* */ +/* */ +/***************************************************************************/ + + +#ifndef __FTOTVAL_H__ +#define __FTOTVAL_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* ot_validation */ + /* */ + /* <Title> */ + /* OpenType Validation */ + /* */ + /* <Abstract> */ + /* An API to validate OpenType tables. */ + /* */ + /* <Description> */ + /* This section contains the declaration of functions to validate */ + /* some OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). */ + /* */ + /*************************************************************************/ + + + /********************************************************************** + * + * @enum: + * FT_VALIDATE_OTXXX + * + * @description: + * A list of bit-field constants used with @FT_OpenType_Validate to + * indicate which OpenType tables should be validated. + * + * @values: + * FT_VALIDATE_BASE :: + * Validate BASE table. + * + * FT_VALIDATE_GDEF :: + * Validate GDEF table. + * + * FT_VALIDATE_GPOS :: + * Validate GPOS table. + * + * FT_VALIDATE_GSUB :: + * Validate GSUB table. + * + * FT_VALIDATE_JSTF :: + * Validate JSTF table. + * + * FT_VALIDATE_MATH :: + * Validate MATH table. + * + * FT_VALIDATE_OT :: + * Validate all OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). + * + */ +#define FT_VALIDATE_BASE 0x0100 +#define FT_VALIDATE_GDEF 0x0200 +#define FT_VALIDATE_GPOS 0x0400 +#define FT_VALIDATE_GSUB 0x0800 +#define FT_VALIDATE_JSTF 0x1000 +#define FT_VALIDATE_MATH 0x2000 + +#define FT_VALIDATE_OT FT_VALIDATE_BASE | \ + FT_VALIDATE_GDEF | \ + FT_VALIDATE_GPOS | \ + FT_VALIDATE_GSUB | \ + FT_VALIDATE_JSTF | \ + FT_VALIDATE_MATH + + /* */ + + /********************************************************************** + * + * @function: + * FT_OpenType_Validate + * + * @description: + * Validate various OpenType tables to assure that all offsets and + * indices are valid. The idea is that a higher-level library which + * actually does the text layout can access those tables without + * error checking (which can be quite time consuming). + * + * @input: + * face :: + * A handle to the input face. + * + * validation_flags :: + * A bit field which specifies the tables to be validated. See + * @FT_VALIDATE_OTXXX for possible values. + * + * @output: + * BASE_table :: + * A pointer to the BASE table. + * + * GDEF_table :: + * A pointer to the GDEF table. + * + * GPOS_table :: + * A pointer to the GPOS table. + * + * GSUB_table :: + * A pointer to the GSUB table. + * + * JSTF_table :: + * A pointer to the JSTF table. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with OpenType fonts, returning an error + * otherwise. + * + * After use, the application should deallocate the five tables with + * @FT_OpenType_Free. A NULL value indicates that the table either + * doesn't exist in the font, or the application hasn't asked for + * validation. + */ + FT_EXPORT( FT_Error ) + FT_OpenType_Validate( FT_Face face, + FT_UInt validation_flags, + FT_Bytes *BASE_table, + FT_Bytes *GDEF_table, + FT_Bytes *GPOS_table, + FT_Bytes *GSUB_table, + FT_Bytes *JSTF_table ); + + /* */ + + /********************************************************************** + * + * @function: + * FT_OpenType_Free + * + * @description: + * Free the buffer allocated by OpenType validator. + * + * @input: + * face :: + * A handle to the input face. + * + * table :: + * The pointer to the buffer that is allocated by + * @FT_OpenType_Validate. + * + * @note: + * This function must be used to free the buffer allocated by + * @FT_OpenType_Validate only. + */ + FT_EXPORT( void ) + FT_OpenType_Free( FT_Face face, + FT_Bytes table ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTOTVAL_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftoutln.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftoutln.h new file mode 100644 index 0000000000..1cf3c3f800 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftoutln.h @@ -0,0 +1,540 @@ +/***************************************************************************/ +/* */ +/* ftoutln.h */ +/* */ +/* Support for the FT_Outline type used to store glyph shapes of */ +/* most scalable font formats (specification). */ +/* */ +/* Copyright 1996-2003, 2005-2011 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTOUTLN_H__ +#define __FTOUTLN_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* outline_processing */ + /* */ + /* <Title> */ + /* Outline Processing */ + /* */ + /* <Abstract> */ + /* Functions to create, transform, and render vectorial glyph images. */ + /* */ + /* <Description> */ + /* This section contains routines used to create and destroy scalable */ + /* glyph images known as `outlines'. These can also be measured, */ + /* transformed, and converted into bitmaps and pixmaps. */ + /* */ + /* <Order> */ + /* FT_Outline */ + /* FT_OUTLINE_FLAGS */ + /* FT_Outline_New */ + /* FT_Outline_Done */ + /* FT_Outline_Copy */ + /* FT_Outline_Translate */ + /* FT_Outline_Transform */ + /* FT_Outline_Embolden */ + /* FT_Outline_Reverse */ + /* FT_Outline_Check */ + /* */ + /* FT_Outline_Get_CBox */ + /* FT_Outline_Get_BBox */ + /* */ + /* FT_Outline_Get_Bitmap */ + /* FT_Outline_Render */ + /* */ + /* FT_Outline_Decompose */ + /* FT_Outline_Funcs */ + /* FT_Outline_MoveTo_Func */ + /* FT_Outline_LineTo_Func */ + /* FT_Outline_ConicTo_Func */ + /* FT_Outline_CubicTo_Func */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Decompose */ + /* */ + /* <Description> */ + /* Walk over an outline's structure to decompose it into individual */ + /* segments and Bézier arcs. This function also emits `move to' */ + /* operations to indicate the start of new contours in the outline. */ + /* */ + /* <Input> */ + /* outline :: A pointer to the source target. */ + /* */ + /* func_interface :: A table of `emitters', i.e., function pointers */ + /* called during decomposition to indicate path */ + /* operations. */ + /* */ + /* <InOut> */ + /* user :: A typeless pointer which is passed to each */ + /* emitter during the decomposition. It can be */ + /* used to store the state during the */ + /* decomposition. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Outline_Decompose( FT_Outline* outline, + const FT_Outline_Funcs* func_interface, + void* user ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_New */ + /* */ + /* <Description> */ + /* Create a new outline of a given size. */ + /* */ + /* <Input> */ + /* library :: A handle to the library object from where the */ + /* outline is allocated. Note however that the new */ + /* outline will *not* necessarily be *freed*, when */ + /* destroying the library, by @FT_Done_FreeType. */ + /* */ + /* numPoints :: The maximal number of points within the outline. */ + /* */ + /* numContours :: The maximal number of contours within the outline. */ + /* */ + /* <Output> */ + /* anoutline :: A handle to the new outline. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The reason why this function takes a `library' parameter is simply */ + /* to use the library's memory allocator. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Outline_New( FT_Library library, + FT_UInt numPoints, + FT_Int numContours, + FT_Outline *anoutline ); + + + FT_EXPORT( FT_Error ) + FT_Outline_New_Internal( FT_Memory memory, + FT_UInt numPoints, + FT_Int numContours, + FT_Outline *anoutline ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Done */ + /* */ + /* <Description> */ + /* Destroy an outline created with @FT_Outline_New. */ + /* */ + /* <Input> */ + /* library :: A handle of the library object used to allocate the */ + /* outline. */ + /* */ + /* outline :: A pointer to the outline object to be discarded. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* If the outline's `owner' field is not set, only the outline */ + /* descriptor will be released. */ + /* */ + /* The reason why this function takes an `library' parameter is */ + /* simply to use ft_mem_free(). */ + /* */ + FT_EXPORT( FT_Error ) + FT_Outline_Done( FT_Library library, + FT_Outline* outline ); + + + FT_EXPORT( FT_Error ) + FT_Outline_Done_Internal( FT_Memory memory, + FT_Outline* outline ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Check */ + /* */ + /* <Description> */ + /* Check the contents of an outline descriptor. */ + /* */ + /* <Input> */ + /* outline :: A handle to a source outline. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Outline_Check( FT_Outline* outline ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Get_CBox */ + /* */ + /* <Description> */ + /* Return an outline's `control box'. The control box encloses all */ + /* the outline's points, including Bézier control points. Though it */ + /* coincides with the exact bounding box for most glyphs, it can be */ + /* slightly larger in some situations (like when rotating an outline */ + /* which contains Bézier outside arcs). */ + /* */ + /* Computing the control box is very fast, while getting the bounding */ + /* box can take much more time as it needs to walk over all segments */ + /* and arcs in the outline. To get the latter, you can use the */ + /* `ftbbox' component which is dedicated to this single task. */ + /* */ + /* <Input> */ + /* outline :: A pointer to the source outline descriptor. */ + /* */ + /* <Output> */ + /* acbox :: The outline's control box. */ + /* */ + /* <Note> */ + /* See @FT_Glyph_Get_CBox for a discussion of tricky fonts. */ + /* */ + FT_EXPORT( void ) + FT_Outline_Get_CBox( const FT_Outline* outline, + FT_BBox *acbox ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Translate */ + /* */ + /* <Description> */ + /* Apply a simple translation to the points of an outline. */ + /* */ + /* <InOut> */ + /* outline :: A pointer to the target outline descriptor. */ + /* */ + /* <Input> */ + /* xOffset :: The horizontal offset. */ + /* */ + /* yOffset :: The vertical offset. */ + /* */ + FT_EXPORT( void ) + FT_Outline_Translate( const FT_Outline* outline, + FT_Pos xOffset, + FT_Pos yOffset ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Copy */ + /* */ + /* <Description> */ + /* Copy an outline into another one. Both objects must have the */ + /* same sizes (number of points & number of contours) when this */ + /* function is called. */ + /* */ + /* <Input> */ + /* source :: A handle to the source outline. */ + /* */ + /* <Output> */ + /* target :: A handle to the target outline. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Outline_Copy( const FT_Outline* source, + FT_Outline *target ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Transform */ + /* */ + /* <Description> */ + /* Apply a simple 2x2 matrix to all of an outline's points. Useful */ + /* for applying rotations, slanting, flipping, etc. */ + /* */ + /* <InOut> */ + /* outline :: A pointer to the target outline descriptor. */ + /* */ + /* <Input> */ + /* matrix :: A pointer to the transformation matrix. */ + /* */ + /* <Note> */ + /* You can use @FT_Outline_Translate if you need to translate the */ + /* outline's points. */ + /* */ + FT_EXPORT( void ) + FT_Outline_Transform( const FT_Outline* outline, + const FT_Matrix* matrix ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Embolden */ + /* */ + /* <Description> */ + /* Embolden an outline. The new outline will be at most 4~times */ + /* `strength' pixels wider and higher. You may think of the left and */ + /* bottom borders as unchanged. */ + /* */ + /* Negative `strength' values to reduce the outline thickness are */ + /* possible also. */ + /* */ + /* <InOut> */ + /* outline :: A handle to the target outline. */ + /* */ + /* <Input> */ + /* strength :: How strong the glyph is emboldened. Expressed in */ + /* 26.6 pixel format. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The used algorithm to increase or decrease the thickness of the */ + /* glyph doesn't change the number of points; this means that certain */ + /* situations like acute angles or intersections are sometimes */ + /* handled incorrectly. */ + /* */ + /* If you need `better' metrics values you should call */ + /* @FT_Outline_Get_CBox or @FT_Outline_Get_BBox. */ + /* */ + /* Example call: */ + /* */ + /* { */ + /* FT_Load_Glyph( face, index, FT_LOAD_DEFAULT ); */ + /* if ( face->slot->format == FT_GLYPH_FORMAT_OUTLINE ) */ + /* FT_Outline_Embolden( &face->slot->outline, strength ); */ + /* } */ + /* */ + FT_EXPORT( FT_Error ) + FT_Outline_Embolden( FT_Outline* outline, + FT_Pos strength ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Reverse */ + /* */ + /* <Description> */ + /* Reverse the drawing direction of an outline. This is used to */ + /* ensure consistent fill conventions for mirrored glyphs. */ + /* */ + /* <InOut> */ + /* outline :: A pointer to the target outline descriptor. */ + /* */ + /* <Note> */ + /* This function toggles the bit flag @FT_OUTLINE_REVERSE_FILL in */ + /* the outline's `flags' field. */ + /* */ + /* It shouldn't be used by a normal client application, unless it */ + /* knows what it is doing. */ + /* */ + FT_EXPORT( void ) + FT_Outline_Reverse( FT_Outline* outline ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Get_Bitmap */ + /* */ + /* <Description> */ + /* Render an outline within a bitmap. The outline's image is simply */ + /* OR-ed to the target bitmap. */ + /* */ + /* <Input> */ + /* library :: A handle to a FreeType library object. */ + /* */ + /* outline :: A pointer to the source outline descriptor. */ + /* */ + /* <InOut> */ + /* abitmap :: A pointer to the target bitmap descriptor. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* This function does NOT CREATE the bitmap, it only renders an */ + /* outline image within the one you pass to it! Consequently, the */ + /* various fields in `abitmap' should be set accordingly. */ + /* */ + /* It will use the raster corresponding to the default glyph format. */ + /* */ + /* The value of the `num_grays' field in `abitmap' is ignored. If */ + /* you select the gray-level rasterizer, and you want less than 256 */ + /* gray levels, you have to use @FT_Outline_Render directly. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Outline_Get_Bitmap( FT_Library library, + FT_Outline* outline, + const FT_Bitmap *abitmap ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Outline_Render */ + /* */ + /* <Description> */ + /* Render an outline within a bitmap using the current scan-convert. */ + /* This function uses an @FT_Raster_Params structure as an argument, */ + /* allowing advanced features like direct composition, translucency, */ + /* etc. */ + /* */ + /* <Input> */ + /* library :: A handle to a FreeType library object. */ + /* */ + /* outline :: A pointer to the source outline descriptor. */ + /* */ + /* <InOut> */ + /* params :: A pointer to an @FT_Raster_Params structure used to */ + /* describe the rendering operation. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* You should know what you are doing and how @FT_Raster_Params works */ + /* to use this function. */ + /* */ + /* The field `params.source' will be set to `outline' before the scan */ + /* converter is called, which means that the value you give to it is */ + /* actually ignored. */ + /* */ + /* The gray-level rasterizer always uses 256 gray levels. If you */ + /* want less gray levels, you have to provide your own span callback. */ + /* See the @FT_RASTER_FLAG_DIRECT value of the `flags' field in the */ + /* @FT_Raster_Params structure for more details. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Outline_Render( FT_Library library, + FT_Outline* outline, + FT_Raster_Params* params ); + + + /************************************************************************** + * + * @enum: + * FT_Orientation + * + * @description: + * A list of values used to describe an outline's contour orientation. + * + * The TrueType and PostScript specifications use different conventions + * to determine whether outline contours should be filled or unfilled. + * + * @values: + * FT_ORIENTATION_TRUETYPE :: + * According to the TrueType specification, clockwise contours must + * be filled, and counter-clockwise ones must be unfilled. + * + * FT_ORIENTATION_POSTSCRIPT :: + * According to the PostScript specification, counter-clockwise contours + * must be filled, and clockwise ones must be unfilled. + * + * FT_ORIENTATION_FILL_RIGHT :: + * This is identical to @FT_ORIENTATION_TRUETYPE, but is used to + * remember that in TrueType, everything that is to the right of + * the drawing direction of a contour must be filled. + * + * FT_ORIENTATION_FILL_LEFT :: + * This is identical to @FT_ORIENTATION_POSTSCRIPT, but is used to + * remember that in PostScript, everything that is to the left of + * the drawing direction of a contour must be filled. + * + * FT_ORIENTATION_NONE :: + * The orientation cannot be determined. That is, different parts of + * the glyph have different orientation. + * + */ + typedef enum FT_Orientation_ + { + FT_ORIENTATION_TRUETYPE = 0, + FT_ORIENTATION_POSTSCRIPT = 1, + FT_ORIENTATION_FILL_RIGHT = FT_ORIENTATION_TRUETYPE, + FT_ORIENTATION_FILL_LEFT = FT_ORIENTATION_POSTSCRIPT, + FT_ORIENTATION_NONE + + } FT_Orientation; + + + /************************************************************************** + * + * @function: + * FT_Outline_Get_Orientation + * + * @description: + * This function analyzes a glyph outline and tries to compute its + * fill orientation (see @FT_Orientation). This is done by computing + * the direction of each global horizontal and/or vertical extrema + * within the outline. + * + * Note that this will return @FT_ORIENTATION_TRUETYPE for empty + * outlines. + * + * @input: + * outline :: + * A handle to the source outline. + * + * @return: + * The orientation. + * + */ + FT_EXPORT( FT_Orientation ) + FT_Outline_Get_Orientation( FT_Outline* outline ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTOUTLN_H__ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftpfr.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftpfr.h new file mode 100644 index 0000000000..0b7b7d427c --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftpfr.h @@ -0,0 +1,172 @@ +/***************************************************************************/ +/* */ +/* ftpfr.h */ +/* */ +/* FreeType API for accessing PFR-specific data (specification only). */ +/* */ +/* Copyright 2002, 2003, 2004, 2006, 2008, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTPFR_H__ +#define __FTPFR_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* pfr_fonts */ + /* */ + /* <Title> */ + /* PFR Fonts */ + /* */ + /* <Abstract> */ + /* PFR/TrueDoc specific API. */ + /* */ + /* <Description> */ + /* This section contains the declaration of PFR-specific functions. */ + /* */ + /*************************************************************************/ + + + /********************************************************************** + * + * @function: + * FT_Get_PFR_Metrics + * + * @description: + * Return the outline and metrics resolutions of a given PFR face. + * + * @input: + * face :: Handle to the input face. It can be a non-PFR face. + * + * @output: + * aoutline_resolution :: + * Outline resolution. This is equivalent to `face->units_per_EM' + * for non-PFR fonts. Optional (parameter can be NULL). + * + * ametrics_resolution :: + * Metrics resolution. This is equivalent to `outline_resolution' + * for non-PFR fonts. Optional (parameter can be NULL). + * + * ametrics_x_scale :: + * A 16.16 fixed-point number used to scale distance expressed + * in metrics units to device sub-pixels. This is equivalent to + * `face->size->x_scale', but for metrics only. Optional (parameter + * can be NULL). + * + * ametrics_y_scale :: + * Same as `ametrics_x_scale' but for the vertical direction. + * optional (parameter can be NULL). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If the input face is not a PFR, this function will return an error. + * However, in all cases, it will return valid values. + */ + FT_EXPORT( FT_Error ) + FT_Get_PFR_Metrics( FT_Face face, + FT_UInt *aoutline_resolution, + FT_UInt *ametrics_resolution, + FT_Fixed *ametrics_x_scale, + FT_Fixed *ametrics_y_scale ); + + + /********************************************************************** + * + * @function: + * FT_Get_PFR_Kerning + * + * @description: + * Return the kerning pair corresponding to two glyphs in a PFR face. + * The distance is expressed in metrics units, unlike the result of + * @FT_Get_Kerning. + * + * @input: + * face :: A handle to the input face. + * + * left :: Index of the left glyph. + * + * right :: Index of the right glyph. + * + * @output: + * avector :: A kerning vector. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function always return distances in original PFR metrics + * units. This is unlike @FT_Get_Kerning with the @FT_KERNING_UNSCALED + * mode, which always returns distances converted to outline units. + * + * You can use the value of the `x_scale' and `y_scale' parameters + * returned by @FT_Get_PFR_Metrics to scale these to device sub-pixels. + */ + FT_EXPORT( FT_Error ) + FT_Get_PFR_Kerning( FT_Face face, + FT_UInt left, + FT_UInt right, + FT_Vector *avector ); + + + /********************************************************************** + * + * @function: + * FT_Get_PFR_Advance + * + * @description: + * Return a given glyph advance, expressed in original metrics units, + * from a PFR font. + * + * @input: + * face :: A handle to the input face. + * + * gindex :: The glyph index. + * + * @output: + * aadvance :: The glyph advance in metrics units. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You can use the `x_scale' or `y_scale' results of @FT_Get_PFR_Metrics + * to convert the advance to device sub-pixels (i.e., 1/64th of pixels). + */ + FT_EXPORT( FT_Error ) + FT_Get_PFR_Advance( FT_Face face, + FT_UInt gindex, + FT_Pos *aadvance ); + + /* */ + + +FT_END_HEADER + +#endif /* __FTPFR_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftrender.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftrender.h new file mode 100644 index 0000000000..dd0229b815 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftrender.h @@ -0,0 +1,238 @@ +/***************************************************************************/ +/* */ +/* ftrender.h */ +/* */ +/* FreeType renderer modules public interface (specification). */ +/* */ +/* Copyright 1996-2001, 2005, 2006, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTRENDER_H__ +#define __FTRENDER_H__ + + +#include <ft2build.h> +#include FT_MODULE_H +#include FT_GLYPH_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* module_management */ + /* */ + /*************************************************************************/ + + + /* create a new glyph object */ + typedef FT_Error + (*FT_Glyph_InitFunc)( FT_Glyph glyph, + FT_GlyphSlot slot ); + + /* destroys a given glyph object */ + typedef void + (*FT_Glyph_DoneFunc)( FT_Glyph glyph ); + + typedef void + (*FT_Glyph_TransformFunc)( FT_Glyph glyph, + const FT_Matrix* matrix, + const FT_Vector* delta ); + + typedef void + (*FT_Glyph_GetBBoxFunc)( FT_Glyph glyph, + FT_BBox* abbox ); + + typedef FT_Error + (*FT_Glyph_CopyFunc)( FT_Glyph source, + FT_Glyph target ); + + typedef FT_Error + (*FT_Glyph_PrepareFunc)( FT_Glyph glyph, + FT_GlyphSlot slot ); + +/* deprecated */ +#define FT_Glyph_Init_Func FT_Glyph_InitFunc +#define FT_Glyph_Done_Func FT_Glyph_DoneFunc +#define FT_Glyph_Transform_Func FT_Glyph_TransformFunc +#define FT_Glyph_BBox_Func FT_Glyph_GetBBoxFunc +#define FT_Glyph_Copy_Func FT_Glyph_CopyFunc +#define FT_Glyph_Prepare_Func FT_Glyph_PrepareFunc + + + struct FT_Glyph_Class_ + { + FT_Long glyph_size; + FT_Glyph_Format glyph_format; + FT_Glyph_InitFunc glyph_init; + FT_Glyph_DoneFunc glyph_done; + FT_Glyph_CopyFunc glyph_copy; + FT_Glyph_TransformFunc glyph_transform; + FT_Glyph_GetBBoxFunc glyph_bbox; + FT_Glyph_PrepareFunc glyph_prepare; + }; + + + typedef FT_Error + (*FT_Renderer_RenderFunc)( FT_Renderer renderer, + FT_GlyphSlot slot, + FT_UInt mode, + const FT_Vector* origin ); + + typedef FT_Error + (*FT_Renderer_TransformFunc)( FT_Renderer renderer, + FT_GlyphSlot slot, + const FT_Matrix* matrix, + const FT_Vector* delta ); + + + typedef void + (*FT_Renderer_GetCBoxFunc)( FT_Renderer renderer, + FT_GlyphSlot slot, + FT_BBox* cbox ); + + + typedef FT_Error + (*FT_Renderer_SetModeFunc)( FT_Renderer renderer, + FT_ULong mode_tag, + FT_Pointer mode_ptr ); + +/* deprecated identifiers */ +#define FTRenderer_render FT_Renderer_RenderFunc +#define FTRenderer_transform FT_Renderer_TransformFunc +#define FTRenderer_getCBox FT_Renderer_GetCBoxFunc +#define FTRenderer_setMode FT_Renderer_SetModeFunc + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Renderer_Class */ + /* */ + /* <Description> */ + /* The renderer module class descriptor. */ + /* */ + /* <Fields> */ + /* root :: The root @FT_Module_Class fields. */ + /* */ + /* glyph_format :: The glyph image format this renderer handles. */ + /* */ + /* render_glyph :: A method used to render the image that is in a */ + /* given glyph slot into a bitmap. */ + /* */ + /* transform_glyph :: A method used to transform the image that is in */ + /* a given glyph slot. */ + /* */ + /* get_glyph_cbox :: A method used to access the glyph's cbox. */ + /* */ + /* set_mode :: A method used to pass additional parameters. */ + /* */ + /* raster_class :: For @FT_GLYPH_FORMAT_OUTLINE renderers only. */ + /* This is a pointer to its raster's class. */ + /* */ + typedef struct FT_Renderer_Class_ + { + FT_Module_Class root; + + FT_Glyph_Format glyph_format; + + FT_Renderer_RenderFunc render_glyph; + FT_Renderer_TransformFunc transform_glyph; + FT_Renderer_GetCBoxFunc get_glyph_cbox; + FT_Renderer_SetModeFunc set_mode; + + FT_Raster_Funcs* raster_class; + + } FT_Renderer_Class; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Renderer */ + /* */ + /* <Description> */ + /* Retrieve the current renderer for a given glyph format. */ + /* */ + /* <Input> */ + /* library :: A handle to the library object. */ + /* */ + /* format :: The glyph format. */ + /* */ + /* <Return> */ + /* A renderer handle. 0~if none found. */ + /* */ + /* <Note> */ + /* An error will be returned if a module already exists by that name, */ + /* or if the module requires a version of FreeType that is too great. */ + /* */ + /* To add a new renderer, simply use @FT_Add_Module. To retrieve a */ + /* renderer by its name, use @FT_Get_Module. */ + /* */ + FT_EXPORT( FT_Renderer ) + FT_Get_Renderer( FT_Library library, + FT_Glyph_Format format ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Set_Renderer */ + /* */ + /* <Description> */ + /* Set the current renderer to use, and set additional mode. */ + /* */ + /* <InOut> */ + /* library :: A handle to the library object. */ + /* */ + /* <Input> */ + /* renderer :: A handle to the renderer object. */ + /* */ + /* num_params :: The number of additional parameters. */ + /* */ + /* parameters :: Additional parameters. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* In case of success, the renderer will be used to convert glyph */ + /* images in the renderer's known format into bitmaps. */ + /* */ + /* This doesn't change the current renderer for other formats. */ + /* */ + /* Currently, only the B/W renderer, if compiled with */ + /* FT_RASTER_OPTION_ANTI_ALIASING (providing a 5-levels */ + /* anti-aliasing mode; this option must be set directly in */ + /* `ftraster.c' and is undefined by default) accepts a single tag */ + /* `pal5' to set its gray palette as a character string with */ + /* 5~elements. Consequently, the third and fourth argument are zero */ + /* normally. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Set_Renderer( FT_Library library, + FT_Renderer renderer, + FT_UInt num_params, + FT_Parameter* parameters ); + + + /* */ + + +FT_END_HEADER + +#endif /* __FTRENDER_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsizes.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsizes.h new file mode 100644 index 0000000000..3e548cc39f --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsizes.h @@ -0,0 +1,159 @@ +/***************************************************************************/ +/* */ +/* ftsizes.h */ +/* */ +/* FreeType size objects management (specification). */ +/* */ +/* Copyright 1996-2001, 2003, 2004, 2006, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* Typical application would normally not need to use these functions. */ + /* However, they have been placed in a public API for the rare cases */ + /* where they are needed. */ + /* */ + /*************************************************************************/ + + +#ifndef __FTSIZES_H__ +#define __FTSIZES_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* sizes_management */ + /* */ + /* <Title> */ + /* Size Management */ + /* */ + /* <Abstract> */ + /* Managing multiple sizes per face. */ + /* */ + /* <Description> */ + /* When creating a new face object (e.g., with @FT_New_Face), an */ + /* @FT_Size object is automatically created and used to store all */ + /* pixel-size dependent information, available in the `face->size' */ + /* field. */ + /* */ + /* It is however possible to create more sizes for a given face, */ + /* mostly in order to manage several character pixel sizes of the */ + /* same font family and style. See @FT_New_Size and @FT_Done_Size. */ + /* */ + /* Note that @FT_Set_Pixel_Sizes and @FT_Set_Char_Size only */ + /* modify the contents of the current `active' size; you thus need */ + /* to use @FT_Activate_Size to change it. */ + /* */ + /* 99% of applications won't need the functions provided here, */ + /* especially if they use the caching sub-system, so be cautious */ + /* when using these. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_New_Size */ + /* */ + /* <Description> */ + /* Create a new size object from a given face object. */ + /* */ + /* <Input> */ + /* face :: A handle to a parent face object. */ + /* */ + /* <Output> */ + /* asize :: A handle to a new size object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* You need to call @FT_Activate_Size in order to select the new size */ + /* for upcoming calls to @FT_Set_Pixel_Sizes, @FT_Set_Char_Size, */ + /* @FT_Load_Glyph, @FT_Load_Char, etc. */ + /* */ + FT_EXPORT( FT_Error ) + FT_New_Size( FT_Face face, + FT_Size* size ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Done_Size */ + /* */ + /* <Description> */ + /* Discard a given size object. Note that @FT_Done_Face */ + /* automatically discards all size objects allocated with */ + /* @FT_New_Size. */ + /* */ + /* <Input> */ + /* size :: A handle to a target size object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Done_Size( FT_Size size ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Activate_Size */ + /* */ + /* <Description> */ + /* Even though it is possible to create several size objects for a */ + /* given face (see @FT_New_Size for details), functions like */ + /* @FT_Load_Glyph or @FT_Load_Char only use the one which has been */ + /* activated last to determine the `current character pixel size'. */ + /* */ + /* This function can be used to `activate' a previously created size */ + /* object. */ + /* */ + /* <Input> */ + /* size :: A handle to a target size object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* If `face' is the size's parent face object, this function changes */ + /* the value of `face->size' to the input size handle. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Activate_Size( FT_Size size ); + + /* */ + + +FT_END_HEADER + +#endif /* __FTSIZES_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsnames.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsnames.h new file mode 100644 index 0000000000..485e4e162e --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsnames.h @@ -0,0 +1,200 @@ +/***************************************************************************/ +/* */ +/* ftsnames.h */ +/* */ +/* Simple interface to access SFNT name tables (which are used */ +/* to hold font names, copyright info, notices, etc.) (specification). */ +/* */ +/* This is _not_ used to retrieve glyph names! */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2006, 2009, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FT_SFNT_NAMES_H__ +#define __FT_SFNT_NAMES_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* sfnt_names */ + /* */ + /* <Title> */ + /* SFNT Names */ + /* */ + /* <Abstract> */ + /* Access the names embedded in TrueType and OpenType files. */ + /* */ + /* <Description> */ + /* The TrueType and OpenType specifications allow the inclusion of */ + /* a special `names table' in font files. This table contains */ + /* textual (and internationalized) information regarding the font, */ + /* like family name, copyright, version, etc. */ + /* */ + /* The definitions below are used to access them if available. */ + /* */ + /* Note that this has nothing to do with glyph names! */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_SfntName */ + /* */ + /* <Description> */ + /* A structure used to model an SFNT `name' table entry. */ + /* */ + /* <Fields> */ + /* platform_id :: The platform ID for `string'. */ + /* */ + /* encoding_id :: The encoding ID for `string'. */ + /* */ + /* language_id :: The language ID for `string'. */ + /* */ + /* name_id :: An identifier for `string'. */ + /* */ + /* string :: The `name' string. Note that its format differs */ + /* depending on the (platform,encoding) pair. It can */ + /* be a Pascal String, a UTF-16 one, etc. */ + /* */ + /* Generally speaking, the string is not */ + /* zero-terminated. Please refer to the TrueType */ + /* specification for details. */ + /* */ + /* string_len :: The length of `string' in bytes. */ + /* */ + /* <Note> */ + /* Possible values for `platform_id', `encoding_id', `language_id', */ + /* and `name_id' are given in the file `ttnameid.h'. For details */ + /* please refer to the TrueType or OpenType specification. */ + /* */ + /* See also @TT_PLATFORM_XXX, @TT_APPLE_ID_XXX, @TT_MAC_ID_XXX, */ + /* @TT_ISO_ID_XXX, and @TT_MS_ID_XXX. */ + /* */ + typedef struct FT_SfntName_ + { + FT_UShort platform_id; + FT_UShort encoding_id; + FT_UShort language_id; + FT_UShort name_id; + + FT_Byte* string; /* this string is *not* null-terminated! */ + FT_UInt string_len; /* in bytes */ + + } FT_SfntName; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Sfnt_Name_Count */ + /* */ + /* <Description> */ + /* Retrieve the number of name strings in the SFNT `name' table. */ + /* */ + /* <Input> */ + /* face :: A handle to the source face. */ + /* */ + /* <Return> */ + /* The number of strings in the `name' table. */ + /* */ + FT_EXPORT( FT_UInt ) + FT_Get_Sfnt_Name_Count( FT_Face face ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Sfnt_Name */ + /* */ + /* <Description> */ + /* Retrieve a string of the SFNT `name' table for a given index. */ + /* */ + /* <Input> */ + /* face :: A handle to the source face. */ + /* */ + /* idx :: The index of the `name' string. */ + /* */ + /* <Output> */ + /* aname :: The indexed @FT_SfntName structure. */ + /* */ + /* <Return> */ + /* FreeType error code. 0~means success. */ + /* */ + /* <Note> */ + /* The `string' array returned in the `aname' structure is not */ + /* null-terminated. The application should deallocate it if it is no */ + /* longer in use. */ + /* */ + /* Use @FT_Get_Sfnt_Name_Count to get the total number of available */ + /* `name' table entries, then do a loop until you get the right */ + /* platform, encoding, and name ID. */ + /* */ + FT_EXPORT( FT_Error ) + FT_Get_Sfnt_Name( FT_Face face, + FT_UInt idx, + FT_SfntName *aname ); + + + /*************************************************************************** + * + * @constant: + * FT_PARAM_TAG_IGNORE_PREFERRED_FAMILY + * + * @description: + * A constant used as the tag of @FT_Parameter structures to make + * FT_Open_Face() ignore preferred family subfamily names in `name' + * table since OpenType version 1.4. For backwards compatibility with + * legacy systems which has 4-face-per-family restriction. + * + */ +#define FT_PARAM_TAG_IGNORE_PREFERRED_FAMILY FT_MAKE_TAG( 'i', 'g', 'p', 'f' ) + + + /*************************************************************************** + * + * @constant: + * FT_PARAM_TAG_IGNORE_PREFERRED_SUBFAMILY + * + * @description: + * A constant used as the tag of @FT_Parameter structures to make + * FT_Open_Face() ignore preferred subfamily names in `name' table since + * OpenType version 1.4. For backwards compatibility with legacy + * systems which has 4-face-per-family restriction. + * + */ +#define FT_PARAM_TAG_IGNORE_PREFERRED_SUBFAMILY FT_MAKE_TAG( 'i', 'g', 'p', 's' ) + + /* */ + + +FT_END_HEADER + +#endif /* __FT_SFNT_NAMES_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftstroke.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftstroke.h new file mode 100644 index 0000000000..dbda6d23de --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftstroke.h @@ -0,0 +1,741 @@ +/***************************************************************************/ +/* */ +/* ftstroke.h */ +/* */ +/* FreeType path stroker (specification). */ +/* */ +/* Copyright 2002-2006, 2008, 2009, 2011 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FT_STROKE_H__ +#define __FT_STROKE_H__ + +#include <ft2build.h> +#include FT_OUTLINE_H +#include FT_GLYPH_H + + +FT_BEGIN_HEADER + + + /************************************************************************ + * + * @section: + * glyph_stroker + * + * @title: + * Glyph Stroker + * + * @abstract: + * Generating bordered and stroked glyphs. + * + * @description: + * This component generates stroked outlines of a given vectorial + * glyph. It also allows you to retrieve the `outside' and/or the + * `inside' borders of the stroke. + * + * This can be useful to generate `bordered' glyph, i.e., glyphs + * displayed with a coloured (and anti-aliased) border around their + * shape. + */ + + + /************************************************************** + * + * @type: + * FT_Stroker + * + * @description: + * Opaque handler to a path stroker object. + */ + typedef struct FT_StrokerRec_* FT_Stroker; + + + /************************************************************** + * + * @enum: + * FT_Stroker_LineJoin + * + * @description: + * These values determine how two joining lines are rendered + * in a stroker. + * + * @values: + * FT_STROKER_LINEJOIN_ROUND :: + * Used to render rounded line joins. Circular arcs are used + * to join two lines smoothly. + * + * FT_STROKER_LINEJOIN_BEVEL :: + * Used to render beveled line joins. The outer corner of + * the joined lines is filled by enclosing the triangular + * region of the corner with a straight line between the + * outer corners of each stroke. + * + * FT_STROKER_LINEJOIN_MITER_FIXED :: + * Used to render mitered line joins, with fixed bevels if the + * miter limit is exceeded. The outer edges of the strokes + * for the two segments are extended until they meet at an + * angle. If the segments meet at too sharp an angle (such + * that the miter would extend from the intersection of the + * segments a distance greater than the product of the miter + * limit value and the border radius), then a bevel join (see + * above) is used instead. This prevents long spikes being + * created. FT_STROKER_LINEJOIN_MITER_FIXED generates a miter + * line join as used in PostScript and PDF. + * + * FT_STROKER_LINEJOIN_MITER_VARIABLE :: + * FT_STROKER_LINEJOIN_MITER :: + * Used to render mitered line joins, with variable bevels if + * the miter limit is exceeded. The intersection of the + * strokes is clipped at a line perpendicular to the bisector + * of the angle between the strokes, at the distance from the + * intersection of the segments equal to the product of the + * miter limit value and the border radius. This prevents + * long spikes being created. + * FT_STROKER_LINEJOIN_MITER_VARIABLE generates a mitered line + * join as used in XPS. FT_STROKER_LINEJOIN_MITER is an alias + * for FT_STROKER_LINEJOIN_MITER_VARIABLE, retained for + * backwards compatibility. + */ + typedef enum FT_Stroker_LineJoin_ + { + FT_STROKER_LINEJOIN_ROUND = 0, + FT_STROKER_LINEJOIN_BEVEL = 1, + FT_STROKER_LINEJOIN_MITER_VARIABLE = 2, + FT_STROKER_LINEJOIN_MITER = FT_STROKER_LINEJOIN_MITER_VARIABLE, + FT_STROKER_LINEJOIN_MITER_FIXED = 3 + + } FT_Stroker_LineJoin; + + + /************************************************************** + * + * @enum: + * FT_Stroker_LineCap + * + * @description: + * These values determine how the end of opened sub-paths are + * rendered in a stroke. + * + * @values: + * FT_STROKER_LINECAP_BUTT :: + * The end of lines is rendered as a full stop on the last + * point itself. + * + * FT_STROKER_LINECAP_ROUND :: + * The end of lines is rendered as a half-circle around the + * last point. + * + * FT_STROKER_LINECAP_SQUARE :: + * The end of lines is rendered as a square around the + * last point. + */ + typedef enum FT_Stroker_LineCap_ + { + FT_STROKER_LINECAP_BUTT = 0, + FT_STROKER_LINECAP_ROUND, + FT_STROKER_LINECAP_SQUARE + + } FT_Stroker_LineCap; + + + /************************************************************** + * + * @enum: + * FT_StrokerBorder + * + * @description: + * These values are used to select a given stroke border + * in @FT_Stroker_GetBorderCounts and @FT_Stroker_ExportBorder. + * + * @values: + * FT_STROKER_BORDER_LEFT :: + * Select the left border, relative to the drawing direction. + * + * FT_STROKER_BORDER_RIGHT :: + * Select the right border, relative to the drawing direction. + * + * @note: + * Applications are generally interested in the `inside' and `outside' + * borders. However, there is no direct mapping between these and the + * `left' and `right' ones, since this really depends on the glyph's + * drawing orientation, which varies between font formats. + * + * You can however use @FT_Outline_GetInsideBorder and + * @FT_Outline_GetOutsideBorder to get these. + */ + typedef enum FT_StrokerBorder_ + { + FT_STROKER_BORDER_LEFT = 0, + FT_STROKER_BORDER_RIGHT + + } FT_StrokerBorder; + + + /************************************************************** + * + * @function: + * FT_Outline_GetInsideBorder + * + * @description: + * Retrieve the @FT_StrokerBorder value corresponding to the + * `inside' borders of a given outline. + * + * @input: + * outline :: + * The source outline handle. + * + * @return: + * The border index. @FT_STROKER_BORDER_RIGHT for empty or invalid + * outlines. + */ + FT_EXPORT( FT_StrokerBorder ) + FT_Outline_GetInsideBorder( FT_Outline* outline ); + + + /************************************************************** + * + * @function: + * FT_Outline_GetOutsideBorder + * + * @description: + * Retrieve the @FT_StrokerBorder value corresponding to the + * `outside' borders of a given outline. + * + * @input: + * outline :: + * The source outline handle. + * + * @return: + * The border index. @FT_STROKER_BORDER_LEFT for empty or invalid + * outlines. + */ + FT_EXPORT( FT_StrokerBorder ) + FT_Outline_GetOutsideBorder( FT_Outline* outline ); + + + /************************************************************** + * + * @function: + * FT_Stroker_New + * + * @description: + * Create a new stroker object. + * + * @input: + * library :: + * FreeType library handle. + * + * @output: + * astroker :: + * A new stroker object handle. NULL in case of error. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_New( FT_Library library, + FT_Stroker *astroker ); + + + /************************************************************** + * + * @function: + * FT_Stroker_Set + * + * @description: + * Reset a stroker object's attributes. + * + * @input: + * stroker :: + * The target stroker handle. + * + * radius :: + * The border radius. + * + * line_cap :: + * The line cap style. + * + * line_join :: + * The line join style. + * + * miter_limit :: + * The miter limit for the FT_STROKER_LINEJOIN_MITER_FIXED and + * FT_STROKER_LINEJOIN_MITER_VARIABLE line join styles, + * expressed as 16.16 fixed point value. + * + * @note: + * The radius is expressed in the same units as the outline + * coordinates. + */ + FT_EXPORT( void ) + FT_Stroker_Set( FT_Stroker stroker, + FT_Fixed radius, + FT_Stroker_LineCap line_cap, + FT_Stroker_LineJoin line_join, + FT_Fixed miter_limit ); + + + /************************************************************** + * + * @function: + * FT_Stroker_Rewind + * + * @description: + * Reset a stroker object without changing its attributes. + * You should call this function before beginning a new + * series of calls to @FT_Stroker_BeginSubPath or + * @FT_Stroker_EndSubPath. + * + * @input: + * stroker :: + * The target stroker handle. + */ + FT_EXPORT( void ) + FT_Stroker_Rewind( FT_Stroker stroker ); + + + /************************************************************** + * + * @function: + * FT_Stroker_ParseOutline + * + * @description: + * A convenience function used to parse a whole outline with + * the stroker. The resulting outline(s) can be retrieved + * later by functions like @FT_Stroker_GetCounts and @FT_Stroker_Export. + * + * @input: + * stroker :: + * The target stroker handle. + * + * outline :: + * The source outline. + * + * opened :: + * A boolean. If~1, the outline is treated as an open path instead + * of a closed one. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If `opened' is~0 (the default), the outline is treated as a closed + * path, and the stroker generates two distinct `border' outlines. + * + * If `opened' is~1, the outline is processed as an open path, and the + * stroker generates a single `stroke' outline. + * + * This function calls @FT_Stroker_Rewind automatically. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_ParseOutline( FT_Stroker stroker, + FT_Outline* outline, + FT_Bool opened ); + + + /************************************************************** + * + * @function: + * FT_Stroker_BeginSubPath + * + * @description: + * Start a new sub-path in the stroker. + * + * @input: + * stroker :: + * The target stroker handle. + * + * to :: + * A pointer to the start vector. + * + * open :: + * A boolean. If~1, the sub-path is treated as an open one. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function is useful when you need to stroke a path that is + * not stored as an @FT_Outline object. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_BeginSubPath( FT_Stroker stroker, + FT_Vector* to, + FT_Bool open ); + + + /************************************************************** + * + * @function: + * FT_Stroker_EndSubPath + * + * @description: + * Close the current sub-path in the stroker. + * + * @input: + * stroker :: + * The target stroker handle. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function after @FT_Stroker_BeginSubPath. + * If the subpath was not `opened', this function `draws' a + * single line segment to the start position when needed. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_EndSubPath( FT_Stroker stroker ); + + + /************************************************************** + * + * @function: + * FT_Stroker_LineTo + * + * @description: + * `Draw' a single line segment in the stroker's current sub-path, + * from the last position. + * + * @input: + * stroker :: + * The target stroker handle. + * + * to :: + * A pointer to the destination point. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function between @FT_Stroker_BeginSubPath and + * @FT_Stroker_EndSubPath. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_LineTo( FT_Stroker stroker, + FT_Vector* to ); + + + /************************************************************** + * + * @function: + * FT_Stroker_ConicTo + * + * @description: + * `Draw' a single quadratic Bézier in the stroker's current sub-path, + * from the last position. + * + * @input: + * stroker :: + * The target stroker handle. + * + * control :: + * A pointer to a Bézier control point. + * + * to :: + * A pointer to the destination point. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function between @FT_Stroker_BeginSubPath and + * @FT_Stroker_EndSubPath. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_ConicTo( FT_Stroker stroker, + FT_Vector* control, + FT_Vector* to ); + + + /************************************************************** + * + * @function: + * FT_Stroker_CubicTo + * + * @description: + * `Draw' a single cubic Bézier in the stroker's current sub-path, + * from the last position. + * + * @input: + * stroker :: + * The target stroker handle. + * + * control1 :: + * A pointer to the first Bézier control point. + * + * control2 :: + * A pointer to second Bézier control point. + * + * to :: + * A pointer to the destination point. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function between @FT_Stroker_BeginSubPath and + * @FT_Stroker_EndSubPath. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_CubicTo( FT_Stroker stroker, + FT_Vector* control1, + FT_Vector* control2, + FT_Vector* to ); + + + /************************************************************** + * + * @function: + * FT_Stroker_GetBorderCounts + * + * @description: + * Call this function once you have finished parsing your paths + * with the stroker. It returns the number of points and + * contours necessary to export one of the `border' or `stroke' + * outlines generated by the stroker. + * + * @input: + * stroker :: + * The target stroker handle. + * + * border :: + * The border index. + * + * @output: + * anum_points :: + * The number of points. + * + * anum_contours :: + * The number of contours. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * When an outline, or a sub-path, is `closed', the stroker generates + * two independent `border' outlines, named `left' and `right'. + * + * When the outline, or a sub-path, is `opened', the stroker merges + * the `border' outlines with caps. The `left' border receives all + * points, while the `right' border becomes empty. + * + * Use the function @FT_Stroker_GetCounts instead if you want to + * retrieve the counts associated to both borders. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_GetBorderCounts( FT_Stroker stroker, + FT_StrokerBorder border, + FT_UInt *anum_points, + FT_UInt *anum_contours ); + + + /************************************************************** + * + * @function: + * FT_Stroker_ExportBorder + * + * @description: + * Call this function after @FT_Stroker_GetBorderCounts to + * export the corresponding border to your own @FT_Outline + * structure. + * + * Note that this function appends the border points and + * contours to your outline, but does not try to resize its + * arrays. + * + * @input: + * stroker :: + * The target stroker handle. + * + * border :: + * The border index. + * + * outline :: + * The target outline handle. + * + * @note: + * Always call this function after @FT_Stroker_GetBorderCounts to + * get sure that there is enough room in your @FT_Outline object to + * receive all new data. + * + * When an outline, or a sub-path, is `closed', the stroker generates + * two independent `border' outlines, named `left' and `right' + * + * When the outline, or a sub-path, is `opened', the stroker merges + * the `border' outlines with caps. The `left' border receives all + * points, while the `right' border becomes empty. + * + * Use the function @FT_Stroker_Export instead if you want to + * retrieve all borders at once. + */ + FT_EXPORT( void ) + FT_Stroker_ExportBorder( FT_Stroker stroker, + FT_StrokerBorder border, + FT_Outline* outline ); + + + /************************************************************** + * + * @function: + * FT_Stroker_GetCounts + * + * @description: + * Call this function once you have finished parsing your paths + * with the stroker. It returns the number of points and + * contours necessary to export all points/borders from the stroked + * outline/path. + * + * @input: + * stroker :: + * The target stroker handle. + * + * @output: + * anum_points :: + * The number of points. + * + * anum_contours :: + * The number of contours. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_GetCounts( FT_Stroker stroker, + FT_UInt *anum_points, + FT_UInt *anum_contours ); + + + /************************************************************** + * + * @function: + * FT_Stroker_Export + * + * @description: + * Call this function after @FT_Stroker_GetBorderCounts to + * export all borders to your own @FT_Outline structure. + * + * Note that this function appends the border points and + * contours to your outline, but does not try to resize its + * arrays. + * + * @input: + * stroker :: + * The target stroker handle. + * + * outline :: + * The target outline handle. + */ + FT_EXPORT( void ) + FT_Stroker_Export( FT_Stroker stroker, + FT_Outline* outline ); + + + /************************************************************** + * + * @function: + * FT_Stroker_Done + * + * @description: + * Destroy a stroker object. + * + * @input: + * stroker :: + * A stroker handle. Can be NULL. + */ + FT_EXPORT( void ) + FT_Stroker_Done( FT_Stroker stroker ); + + + /************************************************************** + * + * @function: + * FT_Glyph_Stroke + * + * @description: + * Stroke a given outline glyph object with a given stroker. + * + * @inout: + * pglyph :: + * Source glyph handle on input, new glyph handle on output. + * + * @input: + * stroker :: + * A stroker handle. + * + * destroy :: + * A Boolean. If~1, the source glyph object is destroyed + * on success. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source glyph is untouched in case of error. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_Stroke( FT_Glyph *pglyph, + FT_Stroker stroker, + FT_Bool destroy ); + + + /************************************************************** + * + * @function: + * FT_Glyph_StrokeBorder + * + * @description: + * Stroke a given outline glyph object with a given stroker, but + * only return either its inside or outside border. + * + * @inout: + * pglyph :: + * Source glyph handle on input, new glyph handle on output. + * + * @input: + * stroker :: + * A stroker handle. + * + * inside :: + * A Boolean. If~1, return the inside border, otherwise + * the outside border. + * + * destroy :: + * A Boolean. If~1, the source glyph object is destroyed + * on success. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source glyph is untouched in case of error. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_StrokeBorder( FT_Glyph *pglyph, + FT_Stroker stroker, + FT_Bool inside, + FT_Bool destroy ); + + /* */ + +FT_END_HEADER + +#endif /* __FT_STROKE_H__ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsynth.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsynth.h new file mode 100644 index 0000000000..a068b7928d --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsynth.h @@ -0,0 +1,80 @@ +/***************************************************************************/ +/* */ +/* ftsynth.h */ +/* */ +/* FreeType synthesizing code for emboldening and slanting */ +/* (specification). */ +/* */ +/* Copyright 2000-2001, 2003, 2006, 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /********* *********/ + /********* WARNING, THIS IS ALPHA CODE! THIS API *********/ + /********* IS DUE TO CHANGE UNTIL STRICTLY NOTIFIED BY THE *********/ + /********* FREETYPE DEVELOPMENT TEAM *********/ + /********* *********/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /* Main reason for not lifting the functions in this module to a */ + /* `standard' API is that the used parameters for emboldening and */ + /* slanting are not configurable. Consider the functions as a */ + /* code resource which should be copied into the application and */ + /* adapted to the particular needs. */ + + +#ifndef __FTSYNTH_H__ +#define __FTSYNTH_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /* Embolden a glyph by a `reasonable' value (which is highly a matter of */ + /* taste). This function is actually a convenience function, providing */ + /* a wrapper for @FT_Outline_Embolden and @FT_Bitmap_Embolden. */ + /* */ + /* For emboldened outlines the metrics are estimates only; if you need */ + /* precise values you should call @FT_Outline_Get_CBox. */ + FT_EXPORT( void ) + FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); + + /* Slant an outline glyph to the right by about 12 degrees. */ + FT_EXPORT( void ) + FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); + + /* */ + +FT_END_HEADER + +#endif /* __FTSYNTH_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsystem.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsystem.h new file mode 100644 index 0000000000..e07460c55d --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftsystem.h @@ -0,0 +1,347 @@ +/***************************************************************************/ +/* */ +/* ftsystem.h */ +/* */ +/* FreeType low-level system interface definition (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2005, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTSYSTEM_H__ +#define __FTSYSTEM_H__ + + +#include <ft2build.h> + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* system_interface */ + /* */ + /* <Title> */ + /* System Interface */ + /* */ + /* <Abstract> */ + /* How FreeType manages memory and i/o. */ + /* */ + /* <Description> */ + /* This section contains various definitions related to memory */ + /* management and i/o access. You need to understand this */ + /* information if you want to use a custom memory manager or you own */ + /* i/o streams. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* M E M O R Y M A N A G E M E N T */ + /* */ + /*************************************************************************/ + + + /************************************************************************* + * + * @type: + * FT_Memory + * + * @description: + * A handle to a given memory manager object, defined with an + * @FT_MemoryRec structure. + * + */ + typedef struct FT_MemoryRec_* FT_Memory; + + + /************************************************************************* + * + * @functype: + * FT_Alloc_Func + * + * @description: + * A function used to allocate `size' bytes from `memory'. + * + * @input: + * memory :: + * A handle to the source memory manager. + * + * size :: + * The size in bytes to allocate. + * + * @return: + * Address of new memory block. 0~in case of failure. + * + */ + typedef void* + (*FT_Alloc_Func)( FT_Memory memory, + long size ); + + + /************************************************************************* + * + * @functype: + * FT_Free_Func + * + * @description: + * A function used to release a given block of memory. + * + * @input: + * memory :: + * A handle to the source memory manager. + * + * block :: + * The address of the target memory block. + * + */ + typedef void + (*FT_Free_Func)( FT_Memory memory, + void* block ); + + + /************************************************************************* + * + * @functype: + * FT_Realloc_Func + * + * @description: + * A function used to re-allocate a given block of memory. + * + * @input: + * memory :: + * A handle to the source memory manager. + * + * cur_size :: + * The block's current size in bytes. + * + * new_size :: + * The block's requested new size. + * + * block :: + * The block's current address. + * + * @return: + * New block address. 0~in case of memory shortage. + * + * @note: + * In case of error, the old block must still be available. + * + */ + typedef void* + (*FT_Realloc_Func)( FT_Memory memory, + long cur_size, + long new_size, + void* block ); + + + /************************************************************************* + * + * @struct: + * FT_MemoryRec + * + * @description: + * A structure used to describe a given memory manager to FreeType~2. + * + * @fields: + * user :: + * A generic typeless pointer for user data. + * + * alloc :: + * A pointer type to an allocation function. + * + * free :: + * A pointer type to an memory freeing function. + * + * realloc :: + * A pointer type to a reallocation function. + * + */ + struct FT_MemoryRec_ + { + void* user; + FT_Alloc_Func alloc; + FT_Free_Func free; + FT_Realloc_Func realloc; + }; + + + /*************************************************************************/ + /* */ + /* I / O M A N A G E M E N T */ + /* */ + /*************************************************************************/ + + + /************************************************************************* + * + * @type: + * FT_Stream + * + * @description: + * A handle to an input stream. + * + */ + typedef struct FT_StreamRec_* FT_Stream; + + + /************************************************************************* + * + * @struct: + * FT_StreamDesc + * + * @description: + * A union type used to store either a long or a pointer. This is used + * to store a file descriptor or a `FILE*' in an input stream. + * + */ + typedef union FT_StreamDesc_ + { + long value; + void* pointer; + + } FT_StreamDesc; + + + /************************************************************************* + * + * @functype: + * FT_Stream_IoFunc + * + * @description: + * A function used to seek and read data from a given input stream. + * + * @input: + * stream :: + * A handle to the source stream. + * + * offset :: + * The offset of read in stream (always from start). + * + * buffer :: + * The address of the read buffer. + * + * count :: + * The number of bytes to read from the stream. + * + * @return: + * The number of bytes effectively read by the stream. + * + * @note: + * This function might be called to perform a seek or skip operation + * with a `count' of~0. A non-zero return value then indicates an + * error. + * + */ + typedef unsigned long + (*FT_Stream_IoFunc)( FT_Stream stream, + unsigned long offset, + unsigned char* buffer, + unsigned long count ); + + + /************************************************************************* + * + * @functype: + * FT_Stream_CloseFunc + * + * @description: + * A function used to close a given input stream. + * + * @input: + * stream :: + * A handle to the target stream. + * + */ + typedef void + (*FT_Stream_CloseFunc)( FT_Stream stream ); + + + /************************************************************************* + * + * @struct: + * FT_StreamRec + * + * @description: + * A structure used to describe an input stream. + * + * @input: + * base :: + * For memory-based streams, this is the address of the first stream + * byte in memory. This field should always be set to NULL for + * disk-based streams. + * + * size :: + * The stream size in bytes. + * + * pos :: + * The current position within the stream. + * + * descriptor :: + * This field is a union that can hold an integer or a pointer. It is + * used by stream implementations to store file descriptors or `FILE*' + * pointers. + * + * pathname :: + * This field is completely ignored by FreeType. However, it is often + * useful during debugging to use it to store the stream's filename + * (where available). + * + * read :: + * The stream's input function. + * + * close :: + * The stream's close function. + * + * memory :: + * The memory manager to use to preload frames. This is set + * internally by FreeType and shouldn't be touched by stream + * implementations. + * + * cursor :: + * This field is set and used internally by FreeType when parsing + * frames. + * + * limit :: + * This field is set and used internally by FreeType when parsing + * frames. + * + */ + typedef struct FT_StreamRec_ + { + unsigned char* base; + unsigned long size; + unsigned long pos; + + FT_StreamDesc descriptor; + FT_StreamDesc pathname; + FT_Stream_IoFunc read; + FT_Stream_CloseFunc close; + + FT_Memory memory; + unsigned char* cursor; + unsigned char* limit; + + } FT_StreamRec; + + + /* */ + + +FT_END_HEADER + +#endif /* __FTSYSTEM_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fttrigon.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fttrigon.h new file mode 100644 index 0000000000..6b77d2ee54 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fttrigon.h @@ -0,0 +1,350 @@ +/***************************************************************************/ +/* */ +/* fttrigon.h */ +/* */ +/* FreeType trigonometric functions (specification). */ +/* */ +/* Copyright 2001, 2003, 2005, 2007 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTTRIGON_H__ +#define __FTTRIGON_H__ + +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* computations */ + /* */ + /*************************************************************************/ + + + /************************************************************************* + * + * @type: + * FT_Angle + * + * @description: + * This type is used to model angle values in FreeType. Note that the + * angle is a 16.16 fixed float value expressed in degrees. + * + */ + typedef FT_Fixed FT_Angle; + + + /************************************************************************* + * + * @macro: + * FT_ANGLE_PI + * + * @description: + * The angle pi expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_PI ( 180L << 16 ) + + + /************************************************************************* + * + * @macro: + * FT_ANGLE_2PI + * + * @description: + * The angle 2*pi expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_2PI ( FT_ANGLE_PI * 2 ) + + + /************************************************************************* + * + * @macro: + * FT_ANGLE_PI2 + * + * @description: + * The angle pi/2 expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_PI2 ( FT_ANGLE_PI / 2 ) + + + /************************************************************************* + * + * @macro: + * FT_ANGLE_PI4 + * + * @description: + * The angle pi/4 expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_PI4 ( FT_ANGLE_PI / 4 ) + + + /************************************************************************* + * + * @function: + * FT_Sin + * + * @description: + * Return the sinus of a given angle in fixed point format. + * + * @input: + * angle :: + * The input angle. + * + * @return: + * The sinus value. + * + * @note: + * If you need both the sinus and cosinus for a given angle, use the + * function @FT_Vector_Unit. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Sin( FT_Angle angle ); + + + /************************************************************************* + * + * @function: + * FT_Cos + * + * @description: + * Return the cosinus of a given angle in fixed point format. + * + * @input: + * angle :: + * The input angle. + * + * @return: + * The cosinus value. + * + * @note: + * If you need both the sinus and cosinus for a given angle, use the + * function @FT_Vector_Unit. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Cos( FT_Angle angle ); + + + /************************************************************************* + * + * @function: + * FT_Tan + * + * @description: + * Return the tangent of a given angle in fixed point format. + * + * @input: + * angle :: + * The input angle. + * + * @return: + * The tangent value. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Tan( FT_Angle angle ); + + + /************************************************************************* + * + * @function: + * FT_Atan2 + * + * @description: + * Return the arc-tangent corresponding to a given vector (x,y) in + * the 2d plane. + * + * @input: + * x :: + * The horizontal vector coordinate. + * + * y :: + * The vertical vector coordinate. + * + * @return: + * The arc-tangent value (i.e. angle). + * + */ + FT_EXPORT( FT_Angle ) + FT_Atan2( FT_Fixed x, + FT_Fixed y ); + + + /************************************************************************* + * + * @function: + * FT_Angle_Diff + * + * @description: + * Return the difference between two angles. The result is always + * constrained to the ]-PI..PI] interval. + * + * @input: + * angle1 :: + * First angle. + * + * angle2 :: + * Second angle. + * + * @return: + * Constrained value of `value2-value1'. + * + */ + FT_EXPORT( FT_Angle ) + FT_Angle_Diff( FT_Angle angle1, + FT_Angle angle2 ); + + + /************************************************************************* + * + * @function: + * FT_Vector_Unit + * + * @description: + * Return the unit vector corresponding to a given angle. After the + * call, the value of `vec.x' will be `sin(angle)', and the value of + * `vec.y' will be `cos(angle)'. + * + * This function is useful to retrieve both the sinus and cosinus of a + * given angle quickly. + * + * @output: + * vec :: + * The address of target vector. + * + * @input: + * angle :: + * The address of angle. + * + */ + FT_EXPORT( void ) + FT_Vector_Unit( FT_Vector* vec, + FT_Angle angle ); + + + /************************************************************************* + * + * @function: + * FT_Vector_Rotate + * + * @description: + * Rotate a vector by a given angle. + * + * @inout: + * vec :: + * The address of target vector. + * + * @input: + * angle :: + * The address of angle. + * + */ + FT_EXPORT( void ) + FT_Vector_Rotate( FT_Vector* vec, + FT_Angle angle ); + + + /************************************************************************* + * + * @function: + * FT_Vector_Length + * + * @description: + * Return the length of a given vector. + * + * @input: + * vec :: + * The address of target vector. + * + * @return: + * The vector length, expressed in the same units that the original + * vector coordinates. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Vector_Length( FT_Vector* vec ); + + + /************************************************************************* + * + * @function: + * FT_Vector_Polarize + * + * @description: + * Compute both the length and angle of a given vector. + * + * @input: + * vec :: + * The address of source vector. + * + * @output: + * length :: + * The vector length. + * + * angle :: + * The vector angle. + * + */ + FT_EXPORT( void ) + FT_Vector_Polarize( FT_Vector* vec, + FT_Fixed *length, + FT_Angle *angle ); + + + /************************************************************************* + * + * @function: + * FT_Vector_From_Polar + * + * @description: + * Compute vector coordinates from a length and angle. + * + * @output: + * vec :: + * The address of source vector. + * + * @input: + * length :: + * The vector length. + * + * angle :: + * The vector angle. + * + */ + FT_EXPORT( void ) + FT_Vector_From_Polar( FT_Vector* vec, + FT_Fixed length, + FT_Angle angle ); + + /* */ + + +FT_END_HEADER + +#endif /* __FTTRIGON_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fttypes.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fttypes.h new file mode 100644 index 0000000000..a57ffa69bd --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/fttypes.h @@ -0,0 +1,588 @@ +/***************************************************************************/ +/* */ +/* fttypes.h */ +/* */ +/* FreeType simple types definitions (specification only). */ +/* */ +/* Copyright 1996-2001, 2002, 2004, 2006, 2007, 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTTYPES_H__ +#define __FTTYPES_H__ + + +#include <ft2build.h> +#include FT_CONFIG_CONFIG_H +#include FT_SYSTEM_H +#include FT_IMAGE_H + +#include <stddef.h> + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* basic_types */ + /* */ + /* <Title> */ + /* Basic Data Types */ + /* */ + /* <Abstract> */ + /* The basic data types defined by the library. */ + /* */ + /* <Description> */ + /* This section contains the basic data types defined by FreeType~2, */ + /* ranging from simple scalar types to bitmap descriptors. More */ + /* font-specific structures are defined in a different section. */ + /* */ + /* <Order> */ + /* FT_Byte */ + /* FT_Bytes */ + /* FT_Char */ + /* FT_Int */ + /* FT_UInt */ + /* FT_Int16 */ + /* FT_UInt16 */ + /* FT_Int32 */ + /* FT_UInt32 */ + /* FT_Short */ + /* FT_UShort */ + /* FT_Long */ + /* FT_ULong */ + /* FT_Bool */ + /* FT_Offset */ + /* FT_PtrDist */ + /* FT_String */ + /* FT_Tag */ + /* FT_Error */ + /* FT_Fixed */ + /* FT_Pointer */ + /* FT_Pos */ + /* FT_Vector */ + /* FT_BBox */ + /* FT_Matrix */ + /* FT_FWord */ + /* FT_UFWord */ + /* FT_F2Dot14 */ + /* FT_UnitVector */ + /* FT_F26Dot6 */ + /* */ + /* */ + /* FT_Generic */ + /* FT_Generic_Finalizer */ + /* */ + /* FT_Bitmap */ + /* FT_Pixel_Mode */ + /* FT_Palette_Mode */ + /* FT_Glyph_Format */ + /* FT_IMAGE_TAG */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Bool */ + /* */ + /* <Description> */ + /* A typedef of unsigned char, used for simple booleans. As usual, */ + /* values 1 and~0 represent true and false, respectively. */ + /* */ + typedef unsigned char FT_Bool; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_FWord */ + /* */ + /* <Description> */ + /* A signed 16-bit integer used to store a distance in original font */ + /* units. */ + /* */ + typedef signed short FT_FWord; /* distance in FUnits */ + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_UFWord */ + /* */ + /* <Description> */ + /* An unsigned 16-bit integer used to store a distance in original */ + /* font units. */ + /* */ + typedef unsigned short FT_UFWord; /* unsigned distance */ + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Char */ + /* */ + /* <Description> */ + /* A simple typedef for the _signed_ char type. */ + /* */ + typedef signed char FT_Char; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Byte */ + /* */ + /* <Description> */ + /* A simple typedef for the _unsigned_ char type. */ + /* */ + typedef unsigned char FT_Byte; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Bytes */ + /* */ + /* <Description> */ + /* A typedef for constant memory areas. */ + /* */ + typedef const FT_Byte* FT_Bytes; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Tag */ + /* */ + /* <Description> */ + /* A typedef for 32-bit tags (as used in the SFNT format). */ + /* */ + typedef FT_UInt32 FT_Tag; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_String */ + /* */ + /* <Description> */ + /* A simple typedef for the char type, usually used for strings. */ + /* */ + typedef char FT_String; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Short */ + /* */ + /* <Description> */ + /* A typedef for signed short. */ + /* */ + typedef signed short FT_Short; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_UShort */ + /* */ + /* <Description> */ + /* A typedef for unsigned short. */ + /* */ + typedef unsigned short FT_UShort; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Int */ + /* */ + /* <Description> */ + /* A typedef for the int type. */ + /* */ + typedef signed int FT_Int; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_UInt */ + /* */ + /* <Description> */ + /* A typedef for the unsigned int type. */ + /* */ + typedef unsigned int FT_UInt; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Long */ + /* */ + /* <Description> */ + /* A typedef for signed long. */ + /* */ + typedef signed long FT_Long; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_ULong */ + /* */ + /* <Description> */ + /* A typedef for unsigned long. */ + /* */ + typedef unsigned long FT_ULong; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_F2Dot14 */ + /* */ + /* <Description> */ + /* A signed 2.14 fixed float type used for unit vectors. */ + /* */ + typedef signed short FT_F2Dot14; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_F26Dot6 */ + /* */ + /* <Description> */ + /* A signed 26.6 fixed float type used for vectorial pixel */ + /* coordinates. */ + /* */ + typedef signed long FT_F26Dot6; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Fixed */ + /* */ + /* <Description> */ + /* This type is used to store 16.16 fixed float values, like scaling */ + /* values or matrix coefficients. */ + /* */ + typedef signed long FT_Fixed; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Error */ + /* */ + /* <Description> */ + /* The FreeType error code type. A value of~0 is always interpreted */ + /* as a successful operation. */ + /* */ + typedef int FT_Error; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Pointer */ + /* */ + /* <Description> */ + /* A simple typedef for a typeless pointer. */ + /* */ + typedef void* FT_Pointer; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_Offset */ + /* */ + /* <Description> */ + /* This is equivalent to the ANSI~C `size_t' type, i.e., the largest */ + /* _unsigned_ integer type used to express a file size or position, */ + /* or a memory block size. */ + /* */ + typedef size_t FT_Offset; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_PtrDist */ + /* */ + /* <Description> */ + /* This is equivalent to the ANSI~C `ptrdiff_t' type, i.e., the */ + /* largest _signed_ integer type used to express the distance */ + /* between two pointers. */ + /* */ + typedef ft_ptrdiff_t FT_PtrDist; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_UnitVector */ + /* */ + /* <Description> */ + /* A simple structure used to store a 2D vector unit vector. Uses */ + /* FT_F2Dot14 types. */ + /* */ + /* <Fields> */ + /* x :: Horizontal coordinate. */ + /* */ + /* y :: Vertical coordinate. */ + /* */ + typedef struct FT_UnitVector_ + { + FT_F2Dot14 x; + FT_F2Dot14 y; + + } FT_UnitVector; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Matrix */ + /* */ + /* <Description> */ + /* A simple structure used to store a 2x2 matrix. Coefficients are */ + /* in 16.16 fixed float format. The computation performed is: */ + /* */ + /* { */ + /* x' = x*xx + y*xy */ + /* y' = x*yx + y*yy */ + /* } */ + /* */ + /* <Fields> */ + /* xx :: Matrix coefficient. */ + /* */ + /* xy :: Matrix coefficient. */ + /* */ + /* yx :: Matrix coefficient. */ + /* */ + /* yy :: Matrix coefficient. */ + /* */ + typedef struct FT_Matrix_ + { + FT_Fixed xx, xy; + FT_Fixed yx, yy; + + } FT_Matrix; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Data */ + /* */ + /* <Description> */ + /* Read-only binary data represented as a pointer and a length. */ + /* */ + /* <Fields> */ + /* pointer :: The data. */ + /* */ + /* length :: The length of the data in bytes. */ + /* */ + typedef struct FT_Data_ + { + const FT_Byte* pointer; + FT_Int length; + + } FT_Data; + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Generic_Finalizer */ + /* */ + /* <Description> */ + /* Describe a function used to destroy the `client' data of any */ + /* FreeType object. See the description of the @FT_Generic type for */ + /* details of usage. */ + /* */ + /* <Input> */ + /* The address of the FreeType object which is under finalization. */ + /* Its client data is accessed through its `generic' field. */ + /* */ + typedef void (*FT_Generic_Finalizer)(void* object); + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Generic */ + /* */ + /* <Description> */ + /* Client applications often need to associate their own data to a */ + /* variety of FreeType core objects. For example, a text layout API */ + /* might want to associate a glyph cache to a given size object. */ + /* */ + /* Most FreeType object contains a `generic' field, of type */ + /* FT_Generic, which usage is left to client applications and font */ + /* servers. */ + /* */ + /* It can be used to store a pointer to client-specific data, as well */ + /* as the address of a `finalizer' function, which will be called by */ + /* FreeType when the object is destroyed (for example, the previous */ + /* client example would put the address of the glyph cache destructor */ + /* in the `finalizer' field). */ + /* */ + /* <Fields> */ + /* data :: A typeless pointer to any client-specified data. This */ + /* field is completely ignored by the FreeType library. */ + /* */ + /* finalizer :: A pointer to a `generic finalizer' function, which */ + /* will be called when the object is destroyed. If this */ + /* field is set to NULL, no code will be called. */ + /* */ + typedef struct FT_Generic_ + { + void* data; + FT_Generic_Finalizer finalizer; + + } FT_Generic; + + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_MAKE_TAG */ + /* */ + /* <Description> */ + /* This macro converts four-letter tags which are used to label */ + /* TrueType tables into an unsigned long to be used within FreeType. */ + /* */ + /* <Note> */ + /* The produced values *must* be 32-bit integers. Don't redefine */ + /* this macro. */ + /* */ +#define FT_MAKE_TAG( _x1, _x2, _x3, _x4 ) \ + (FT_Tag) \ + ( ( (FT_ULong)_x1 << 24 ) | \ + ( (FT_ULong)_x2 << 16 ) | \ + ( (FT_ULong)_x3 << 8 ) | \ + (FT_ULong)_x4 ) + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* L I S T M A N A G E M E N T */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* list_processing */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_ListNode */ + /* */ + /* <Description> */ + /* Many elements and objects in FreeType are listed through an */ + /* @FT_List record (see @FT_ListRec). As its name suggests, an */ + /* FT_ListNode is a handle to a single list element. */ + /* */ + typedef struct FT_ListNodeRec_* FT_ListNode; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* FT_List */ + /* */ + /* <Description> */ + /* A handle to a list record (see @FT_ListRec). */ + /* */ + typedef struct FT_ListRec_* FT_List; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_ListNodeRec */ + /* */ + /* <Description> */ + /* A structure used to hold a single list element. */ + /* */ + /* <Fields> */ + /* prev :: The previous element in the list. NULL if first. */ + /* */ + /* next :: The next element in the list. NULL if last. */ + /* */ + /* data :: A typeless pointer to the listed object. */ + /* */ + typedef struct FT_ListNodeRec_ + { + FT_ListNode prev; + FT_ListNode next; + void* data; + + } FT_ListNodeRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_ListRec */ + /* */ + /* <Description> */ + /* A structure used to hold a simple doubly-linked list. These are */ + /* used in many parts of FreeType. */ + /* */ + /* <Fields> */ + /* head :: The head (first element) of doubly-linked list. */ + /* */ + /* tail :: The tail (last element) of doubly-linked list. */ + /* */ + typedef struct FT_ListRec_ + { + FT_ListNode head; + FT_ListNode tail; + + } FT_ListRec; + + + /* */ + +#define FT_IS_EMPTY( list ) ( (list).head == 0 ) + + /* return base error code (without module-specific prefix) */ +#define FT_ERROR_BASE( x ) ( (x) & 0xFF ) + + /* return module error code */ +#define FT_ERROR_MODULE( x ) ( (x) & 0xFF00U ) + +#define FT_BOOL( x ) ( (FT_Bool)( x ) ) + +FT_END_HEADER + +#endif /* __FTTYPES_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftwinfnt.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftwinfnt.h new file mode 100644 index 0000000000..ea33353536 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftwinfnt.h @@ -0,0 +1,274 @@ +/***************************************************************************/ +/* */ +/* ftwinfnt.h */ +/* */ +/* FreeType API for accessing Windows fnt-specific data. */ +/* */ +/* Copyright 2003, 2004, 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTWINFNT_H__ +#define __FTWINFNT_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* winfnt_fonts */ + /* */ + /* <Title> */ + /* Window FNT Files */ + /* */ + /* <Abstract> */ + /* Windows FNT specific API. */ + /* */ + /* <Description> */ + /* This section contains the declaration of Windows FNT specific */ + /* functions. */ + /* */ + /*************************************************************************/ + + + /************************************************************************* + * + * @enum: + * FT_WinFNT_ID_XXX + * + * @description: + * A list of valid values for the `charset' byte in + * @FT_WinFNT_HeaderRec. Exact mapping tables for the various cpXXXX + * encodings (except for cp1361) can be found at ftp://ftp.unicode.org + * in the MAPPINGS/VENDORS/MICSFT/WINDOWS subdirectory. cp1361 is + * roughly a superset of MAPPINGS/OBSOLETE/EASTASIA/KSC/JOHAB.TXT. + * + * @values: + * FT_WinFNT_ID_DEFAULT :: + * This is used for font enumeration and font creation as a + * `don't care' value. Valid font files don't contain this value. + * When querying for information about the character set of the font + * that is currently selected into a specified device context, this + * return value (of the related Windows API) simply denotes failure. + * + * FT_WinFNT_ID_SYMBOL :: + * There is no known mapping table available. + * + * FT_WinFNT_ID_MAC :: + * Mac Roman encoding. + * + * FT_WinFNT_ID_OEM :: + * From Michael Pöttgen <michael@poettgen.de>: + * + * The `Windows Font Mapping' article says that FT_WinFNT_ID_OEM + * is used for the charset of vector fonts, like `modern.fon', + * `roman.fon', and `script.fon' on Windows. + * + * The `CreateFont' documentation says: The FT_WinFNT_ID_OEM value + * specifies a character set that is operating-system dependent. + * + * The `IFIMETRICS' documentation from the `Windows Driver + * Development Kit' says: This font supports an OEM-specific + * character set. The OEM character set is system dependent. + * + * In general OEM, as opposed to ANSI (i.e., cp1252), denotes the + * second default codepage that most international versions of + * Windows have. It is one of the OEM codepages from + * + * http://www.microsoft.com/globaldev/reference/cphome.mspx, + * + * and is used for the `DOS boxes', to support legacy applications. + * A German Windows version for example usually uses ANSI codepage + * 1252 and OEM codepage 850. + * + * FT_WinFNT_ID_CP874 :: + * A superset of Thai TIS 620 and ISO 8859-11. + * + * FT_WinFNT_ID_CP932 :: + * A superset of Japanese Shift-JIS (with minor deviations). + * + * FT_WinFNT_ID_CP936 :: + * A superset of simplified Chinese GB 2312-1980 (with different + * ordering and minor deviations). + * + * FT_WinFNT_ID_CP949 :: + * A superset of Korean Hangul KS~C 5601-1987 (with different + * ordering and minor deviations). + * + * FT_WinFNT_ID_CP950 :: + * A superset of traditional Chinese Big~5 ETen (with different + * ordering and minor deviations). + * + * FT_WinFNT_ID_CP1250 :: + * A superset of East European ISO 8859-2 (with slightly different + * ordering). + * + * FT_WinFNT_ID_CP1251 :: + * A superset of Russian ISO 8859-5 (with different ordering). + * + * FT_WinFNT_ID_CP1252 :: + * ANSI encoding. A superset of ISO 8859-1. + * + * FT_WinFNT_ID_CP1253 :: + * A superset of Greek ISO 8859-7 (with minor modifications). + * + * FT_WinFNT_ID_CP1254 :: + * A superset of Turkish ISO 8859-9. + * + * FT_WinFNT_ID_CP1255 :: + * A superset of Hebrew ISO 8859-8 (with some modifications). + * + * FT_WinFNT_ID_CP1256 :: + * A superset of Arabic ISO 8859-6 (with different ordering). + * + * FT_WinFNT_ID_CP1257 :: + * A superset of Baltic ISO 8859-13 (with some deviations). + * + * FT_WinFNT_ID_CP1258 :: + * For Vietnamese. This encoding doesn't cover all necessary + * characters. + * + * FT_WinFNT_ID_CP1361 :: + * Korean (Johab). + */ + +#define FT_WinFNT_ID_CP1252 0 +#define FT_WinFNT_ID_DEFAULT 1 +#define FT_WinFNT_ID_SYMBOL 2 +#define FT_WinFNT_ID_MAC 77 +#define FT_WinFNT_ID_CP932 128 +#define FT_WinFNT_ID_CP949 129 +#define FT_WinFNT_ID_CP1361 130 +#define FT_WinFNT_ID_CP936 134 +#define FT_WinFNT_ID_CP950 136 +#define FT_WinFNT_ID_CP1253 161 +#define FT_WinFNT_ID_CP1254 162 +#define FT_WinFNT_ID_CP1258 163 +#define FT_WinFNT_ID_CP1255 177 +#define FT_WinFNT_ID_CP1256 178 +#define FT_WinFNT_ID_CP1257 186 +#define FT_WinFNT_ID_CP1251 204 +#define FT_WinFNT_ID_CP874 222 +#define FT_WinFNT_ID_CP1250 238 +#define FT_WinFNT_ID_OEM 255 + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_WinFNT_HeaderRec */ + /* */ + /* <Description> */ + /* Windows FNT Header info. */ + /* */ + typedef struct FT_WinFNT_HeaderRec_ + { + FT_UShort version; + FT_ULong file_size; + FT_Byte copyright[60]; + FT_UShort file_type; + FT_UShort nominal_point_size; + FT_UShort vertical_resolution; + FT_UShort horizontal_resolution; + FT_UShort ascent; + FT_UShort internal_leading; + FT_UShort external_leading; + FT_Byte italic; + FT_Byte underline; + FT_Byte strike_out; + FT_UShort weight; + FT_Byte charset; + FT_UShort pixel_width; + FT_UShort pixel_height; + FT_Byte pitch_and_family; + FT_UShort avg_width; + FT_UShort max_width; + FT_Byte first_char; + FT_Byte last_char; + FT_Byte default_char; + FT_Byte break_char; + FT_UShort bytes_per_row; + FT_ULong device_offset; + FT_ULong face_name_offset; + FT_ULong bits_pointer; + FT_ULong bits_offset; + FT_Byte reserved; + FT_ULong flags; + FT_UShort A_space; + FT_UShort B_space; + FT_UShort C_space; + FT_UShort color_table_offset; + FT_ULong reserved1[4]; + + } FT_WinFNT_HeaderRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_WinFNT_Header */ + /* */ + /* <Description> */ + /* A handle to an @FT_WinFNT_HeaderRec structure. */ + /* */ + typedef struct FT_WinFNT_HeaderRec_* FT_WinFNT_Header; + + + /********************************************************************** + * + * @function: + * FT_Get_WinFNT_Header + * + * @description: + * Retrieve a Windows FNT font info header. + * + * @input: + * face :: A handle to the input face. + * + * @output: + * aheader :: The WinFNT header. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with Windows FNT faces, returning an error + * otherwise. + */ + FT_EXPORT( FT_Error ) + FT_Get_WinFNT_Header( FT_Face face, + FT_WinFNT_HeaderRec *aheader ); + + + /* */ + +FT_END_HEADER + +#endif /* __FTWINFNT_H__ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftxf86.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftxf86.h new file mode 100644 index 0000000000..8c68afdcc5 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ftxf86.h @@ -0,0 +1,83 @@ +/***************************************************************************/ +/* */ +/* ftxf86.h */ +/* */ +/* Support functions for X11. */ +/* */ +/* Copyright 2002, 2003, 2004, 2006, 2007 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTXF86_H__ +#define __FTXF86_H__ + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* font_formats */ + /* */ + /* <Title> */ + /* Font Formats */ + /* */ + /* <Abstract> */ + /* Getting the font format. */ + /* */ + /* <Description> */ + /* The single function in this section can be used to get the font */ + /* format. Note that this information is not needed normally; */ + /* however, there are special cases (like in PDF devices) where it is */ + /* important to differentiate, in spite of FreeType's uniform API. */ + /* */ + /* This function is in the X11/xf86 namespace for historical reasons */ + /* and in no way depends on that windowing system. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_X11_Font_Format */ + /* */ + /* <Description> */ + /* Return a string describing the format of a given face, using values */ + /* which can be used as an X11 FONT_PROPERTY. Possible values are */ + /* `TrueType', `Type~1', `BDF', `PCF', `Type~42', `CID~Type~1', `CFF', */ + /* `PFR', and `Windows~FNT'. */ + /* */ + /* <Input> */ + /* face :: */ + /* Input face handle. */ + /* */ + /* <Return> */ + /* Font format string. NULL in case of error. */ + /* */ + FT_EXPORT( const char* ) + FT_Get_X11_Font_Format( FT_Face face ); + + /* */ + +FT_END_HEADER + +#endif /* __FTXF86_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/autohint.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/autohint.h new file mode 100644 index 0000000000..7e3a08a051 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/autohint.h @@ -0,0 +1,231 @@ +/***************************************************************************/ +/* */ +/* autohint.h */ +/* */ +/* High-level `autohint' module-specific interface (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2007 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* The auto-hinter is used to load and automatically hint glyphs if a */ + /* format-specific hinter isn't available. */ + /* */ + /*************************************************************************/ + + +#ifndef __AUTOHINT_H__ +#define __AUTOHINT_H__ + + + /*************************************************************************/ + /* */ + /* A small technical note regarding automatic hinting in order to */ + /* clarify this module interface. */ + /* */ + /* An automatic hinter might compute two kinds of data for a given face: */ + /* */ + /* - global hints: Usually some metrics that describe global properties */ + /* of the face. It is computed by scanning more or less */ + /* aggressively the glyphs in the face, and thus can be */ + /* very slow to compute (even if the size of global */ + /* hints is really small). */ + /* */ + /* - glyph hints: These describe some important features of the glyph */ + /* outline, as well as how to align them. They are */ + /* generally much faster to compute than global hints. */ + /* */ + /* The current FreeType auto-hinter does a pretty good job while */ + /* performing fast computations for both global and glyph hints. */ + /* However, we might be interested in introducing more complex and */ + /* powerful algorithms in the future, like the one described in the John */ + /* D. Hobby paper, which unfortunately requires a lot more horsepower. */ + /* */ + /* Because a sufficiently sophisticated font management system would */ + /* typically implement an LRU cache of opened face objects to reduce */ + /* memory usage, it is a good idea to be able to avoid recomputing */ + /* global hints every time the same face is re-opened. */ + /* */ + /* We thus provide the ability to cache global hints outside of the face */ + /* object, in order to speed up font re-opening time. Of course, this */ + /* feature is purely optional, so most client programs won't even notice */ + /* it. */ + /* */ + /* I initially thought that it would be a good idea to cache the glyph */ + /* hints too. However, my general idea now is that if you really need */ + /* to cache these too, you are simply in need of a new font format, */ + /* where all this information could be stored within the font file and */ + /* decoded on the fly. */ + /* */ + /*************************************************************************/ + + +#include <ft2build.h> +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + typedef struct FT_AutoHinterRec_ *FT_AutoHinter; + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_AutoHinter_GlobalGetFunc */ + /* */ + /* <Description> */ + /* Retrieves the global hints computed for a given face object the */ + /* resulting data is dissociated from the face and will survive a */ + /* call to FT_Done_Face(). It must be discarded through the API */ + /* FT_AutoHinter_GlobalDoneFunc(). */ + /* */ + /* <Input> */ + /* hinter :: A handle to the source auto-hinter. */ + /* */ + /* face :: A handle to the source face object. */ + /* */ + /* <Output> */ + /* global_hints :: A typeless pointer to the global hints. */ + /* */ + /* global_len :: The size in bytes of the global hints. */ + /* */ + typedef void + (*FT_AutoHinter_GlobalGetFunc)( FT_AutoHinter hinter, + FT_Face face, + void** global_hints, + long* global_len ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_AutoHinter_GlobalDoneFunc */ + /* */ + /* <Description> */ + /* Discards the global hints retrieved through */ + /* FT_AutoHinter_GlobalGetFunc(). This is the only way these hints */ + /* are freed from memory. */ + /* */ + /* <Input> */ + /* hinter :: A handle to the auto-hinter module. */ + /* */ + /* global :: A pointer to retrieved global hints to discard. */ + /* */ + typedef void + (*FT_AutoHinter_GlobalDoneFunc)( FT_AutoHinter hinter, + void* global ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_AutoHinter_GlobalResetFunc */ + /* */ + /* <Description> */ + /* This function is used to recompute the global metrics in a given */ + /* font. This is useful when global font data changes (e.g. Multiple */ + /* Masters fonts where blend coordinates change). */ + /* */ + /* <Input> */ + /* hinter :: A handle to the source auto-hinter. */ + /* */ + /* face :: A handle to the face. */ + /* */ + typedef void + (*FT_AutoHinter_GlobalResetFunc)( FT_AutoHinter hinter, + FT_Face face ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_AutoHinter_GlyphLoadFunc */ + /* */ + /* <Description> */ + /* This function is used to load, scale, and automatically hint a */ + /* glyph from a given face. */ + /* */ + /* <Input> */ + /* face :: A handle to the face. */ + /* */ + /* glyph_index :: The glyph index. */ + /* */ + /* load_flags :: The load flags. */ + /* */ + /* <Note> */ + /* This function is capable of loading composite glyphs by hinting */ + /* each sub-glyph independently (which improves quality). */ + /* */ + /* It will call the font driver with FT_Load_Glyph(), with */ + /* FT_LOAD_NO_SCALE set. */ + /* */ + typedef FT_Error + (*FT_AutoHinter_GlyphLoadFunc)( FT_AutoHinter hinter, + FT_GlyphSlot slot, + FT_Size size, + FT_UInt glyph_index, + FT_Int32 load_flags ); + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_AutoHinter_ServiceRec */ + /* */ + /* <Description> */ + /* The auto-hinter module's interface. */ + /* */ + typedef struct FT_AutoHinter_ServiceRec_ + { + FT_AutoHinter_GlobalResetFunc reset_face; + FT_AutoHinter_GlobalGetFunc get_global_hints; + FT_AutoHinter_GlobalDoneFunc done_global_hints; + FT_AutoHinter_GlyphLoadFunc load_glyph; + + } FT_AutoHinter_ServiceRec, *FT_AutoHinter_Service; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_AUTOHINTER_SERVICE(class_, reset_face_, get_global_hints_, \ + done_global_hints_, load_glyph_) \ + FT_CALLBACK_TABLE_DEF \ + const FT_AutoHinter_ServiceRec class_ = \ + { \ + reset_face_, get_global_hints_, done_global_hints_, load_glyph_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_AUTOHINTER_SERVICE(class_, reset_face_, get_global_hints_, \ + done_global_hints_, load_glyph_) \ + void \ + FT_Init_Class_##class_( FT_Library library, \ + FT_AutoHinter_ServiceRec* clazz) \ + { \ + FT_UNUSED(library); \ + clazz->reset_face = reset_face_; \ + clazz->get_global_hints = get_global_hints_; \ + clazz->done_global_hints = done_global_hints_; \ + clazz->load_glyph = load_glyph_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + +FT_END_HEADER + +#endif /* __AUTOHINT_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftcalc.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftcalc.h new file mode 100644 index 0000000000..f8b4324777 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftcalc.h @@ -0,0 +1,179 @@ +/***************************************************************************/ +/* */ +/* ftcalc.h */ +/* */ +/* Arithmetic computations (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTCALC_H__ +#define __FTCALC_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_FixedSqrt */ + /* */ + /* <Description> */ + /* Computes the square root of a 16.16 fixed point value. */ + /* */ + /* <Input> */ + /* x :: The value to compute the root for. */ + /* */ + /* <Return> */ + /* The result of `sqrt(x)'. */ + /* */ + /* <Note> */ + /* This function is not very fast. */ + /* */ + FT_BASE( FT_Int32 ) + FT_SqrtFixed( FT_Int32 x ); + + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Sqrt32 */ + /* */ + /* <Description> */ + /* Computes the square root of an Int32 integer (which will be */ + /* handled as an unsigned long value). */ + /* */ + /* <Input> */ + /* x :: The value to compute the root for. */ + /* */ + /* <Return> */ + /* The result of `sqrt(x)'. */ + /* */ + FT_EXPORT( FT_Int32 ) + FT_Sqrt32( FT_Int32 x ); + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + + /*************************************************************************/ + /* */ + /* FT_MulDiv() and FT_MulFix() are declared in freetype.h. */ + /* */ + /*************************************************************************/ + + +#ifdef TT_USE_BYTECODE_INTERPRETER + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_MulDiv_No_Round */ + /* */ + /* <Description> */ + /* A very simple function used to perform the computation `(a*b)/c' */ + /* (without rounding) with maximal accuracy (it uses a 64-bit */ + /* intermediate integer whenever necessary). */ + /* */ + /* This function isn't necessarily as fast as some processor specific */ + /* operations, but is at least completely portable. */ + /* */ + /* <Input> */ + /* a :: The first multiplier. */ + /* b :: The second multiplier. */ + /* c :: The divisor. */ + /* */ + /* <Return> */ + /* The result of `(a*b)/c'. This function never traps when trying to */ + /* divide by zero; it simply returns `MaxInt' or `MinInt' depending */ + /* on the signs of `a' and `b'. */ + /* */ + FT_BASE( FT_Long ) + FT_MulDiv_No_Round( FT_Long a, + FT_Long b, + FT_Long c ); + +#endif /* TT_USE_BYTECODE_INTERPRETER */ + + + /* + * A variant of FT_Matrix_Multiply which scales its result afterwards. + * The idea is that both `a' and `b' are scaled by factors of 10 so that + * the values are as precise as possible to get a correct result during + * the 64bit multiplication. Let `sa' and `sb' be the scaling factors of + * `a' and `b', respectively, then the scaling factor of the result is + * `sa*sb'. + */ + FT_BASE( void ) + FT_Matrix_Multiply_Scaled( const FT_Matrix* a, + FT_Matrix *b, + FT_Long scaling ); + + + /* + * A variant of FT_Vector_Transform. See comments for + * FT_Matrix_Multiply_Scaled. + */ + + FT_BASE( void ) + FT_Vector_Transform_Scaled( FT_Vector* vector, + const FT_Matrix* matrix, + FT_Long scaling ); + + + /* + * Return -1, 0, or +1, depending on the orientation of a given corner. + * We use the Cartesian coordinate system, with positive vertical values + * going upwards. The function returns +1 if the corner turns to the + * left, -1 to the right, and 0 for undecidable cases. + */ + FT_BASE( FT_Int ) + ft_corner_orientation( FT_Pos in_x, + FT_Pos in_y, + FT_Pos out_x, + FT_Pos out_y ); + + /* + * Return TRUE if a corner is flat or nearly flat. This is equivalent to + * saying that the angle difference between the `in' and `out' vectors is + * very small. + */ + FT_BASE( FT_Int ) + ft_corner_is_flat( FT_Pos in_x, + FT_Pos in_y, + FT_Pos out_x, + FT_Pos out_y ); + + +#define INT_TO_F26DOT6( x ) ( (FT_Long)(x) << 6 ) +#define INT_TO_F2DOT14( x ) ( (FT_Long)(x) << 14 ) +#define INT_TO_FIXED( x ) ( (FT_Long)(x) << 16 ) +#define F2DOT14_TO_FIXED( x ) ( (FT_Long)(x) << 2 ) +#define FLOAT_TO_FIXED( x ) ( (FT_Long)( x * 65536.0 ) ) +#define FIXED_TO_INT( x ) ( FT_RoundFix( x ) >> 16 ) + +#define ROUND_F26DOT6( x ) ( x >= 0 ? ( ( (x) + 32 ) & -64 ) \ + : ( -( ( 32 - (x) ) & -64 ) ) ) + + +FT_END_HEADER + +#endif /* __FTCALC_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftdebug.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftdebug.h new file mode 100644 index 0000000000..7baae3531d --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftdebug.h @@ -0,0 +1,250 @@ +/***************************************************************************/ +/* */ +/* ftdebug.h */ +/* */ +/* Debugging and logging component (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2004, 2006, 2007, 2008, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/* */ +/* IMPORTANT: A description of FreeType's debugging support can be */ +/* found in `docs/DEBUG.TXT'. Read it if you need to use or */ +/* understand this code. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTDEBUG_H__ +#define __FTDEBUG_H__ + + +#include <ft2build.h> +#include FT_CONFIG_CONFIG_H +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + /* force the definition of FT_DEBUG_LEVEL_ERROR if FT_DEBUG_LEVEL_TRACE */ + /* is already defined; this simplifies the following #ifdefs */ + /* */ +#ifdef FT_DEBUG_LEVEL_TRACE +#undef FT_DEBUG_LEVEL_ERROR +#define FT_DEBUG_LEVEL_ERROR +#endif + + + /*************************************************************************/ + /* */ + /* Define the trace enums as well as the trace levels array when they */ + /* are needed. */ + /* */ + /*************************************************************************/ + +#ifdef FT_DEBUG_LEVEL_TRACE + +#define FT_TRACE_DEF( x ) trace_ ## x , + + /* defining the enumeration */ + typedef enum FT_Trace_ + { +#include FT_INTERNAL_TRACE_H + trace_count + + } FT_Trace; + + + /* defining the array of trace levels, provided by `src/base/ftdebug.c' */ + extern int ft_trace_levels[trace_count]; + +#undef FT_TRACE_DEF + +#endif /* FT_DEBUG_LEVEL_TRACE */ + + + /*************************************************************************/ + /* */ + /* Define the FT_TRACE macro */ + /* */ + /* IMPORTANT! */ + /* */ + /* Each component must define the macro FT_COMPONENT to a valid FT_Trace */ + /* value before using any TRACE macro. */ + /* */ + /*************************************************************************/ + +#ifdef FT_DEBUG_LEVEL_TRACE + +#define FT_TRACE( level, varformat ) \ + do \ + { \ + if ( ft_trace_levels[FT_COMPONENT] >= level ) \ + FT_Message varformat; \ + } while ( 0 ) + +#else /* !FT_DEBUG_LEVEL_TRACE */ + +#define FT_TRACE( level, varformat ) do { } while ( 0 ) /* nothing */ + +#endif /* !FT_DEBUG_LEVEL_TRACE */ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Trace_Get_Count */ + /* */ + /* <Description> */ + /* Return the number of available trace components. */ + /* */ + /* <Return> */ + /* The number of trace components. 0 if FreeType 2 is not built with */ + /* FT_DEBUG_LEVEL_TRACE definition. */ + /* */ + /* <Note> */ + /* This function may be useful if you want to access elements of */ + /* the internal `ft_trace_levels' array by an index. */ + /* */ + FT_BASE( FT_Int ) + FT_Trace_Get_Count( void ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Trace_Get_Name */ + /* */ + /* <Description> */ + /* Return the name of a trace component. */ + /* */ + /* <Input> */ + /* The index of the trace component. */ + /* */ + /* <Return> */ + /* The name of the trace component. This is a statically allocated */ + /* C string, so do not free it after use. NULL if FreeType 2 is not */ + /* built with FT_DEBUG_LEVEL_TRACE definition. */ + /* */ + /* <Note> */ + /* Use @FT_Trace_Get_Count to get the number of available trace */ + /* components. */ + /* */ + /* This function may be useful if you want to control FreeType 2's */ + /* debug level in your application. */ + /* */ + FT_BASE( const char * ) + FT_Trace_Get_Name( FT_Int idx ); + + + /*************************************************************************/ + /* */ + /* You need two opening and closing parentheses! */ + /* */ + /* Example: FT_TRACE0(( "Value is %i", foo )) */ + /* */ + /* Output of the FT_TRACEX macros is sent to stderr. */ + /* */ + /*************************************************************************/ + +#define FT_TRACE0( varformat ) FT_TRACE( 0, varformat ) +#define FT_TRACE1( varformat ) FT_TRACE( 1, varformat ) +#define FT_TRACE2( varformat ) FT_TRACE( 2, varformat ) +#define FT_TRACE3( varformat ) FT_TRACE( 3, varformat ) +#define FT_TRACE4( varformat ) FT_TRACE( 4, varformat ) +#define FT_TRACE5( varformat ) FT_TRACE( 5, varformat ) +#define FT_TRACE6( varformat ) FT_TRACE( 6, varformat ) +#define FT_TRACE7( varformat ) FT_TRACE( 7, varformat ) + + + /*************************************************************************/ + /* */ + /* Define the FT_ERROR macro. */ + /* */ + /* Output of this macro is sent to stderr. */ + /* */ + /*************************************************************************/ + +#ifdef FT_DEBUG_LEVEL_ERROR + +#define FT_ERROR( varformat ) FT_Message varformat + +#else /* !FT_DEBUG_LEVEL_ERROR */ + +#define FT_ERROR( varformat ) do { } while ( 0 ) /* nothing */ + +#endif /* !FT_DEBUG_LEVEL_ERROR */ + + + /*************************************************************************/ + /* */ + /* Define the FT_ASSERT macro. */ + /* */ + /*************************************************************************/ + +#ifdef FT_DEBUG_LEVEL_ERROR + +#define FT_ASSERT( condition ) \ + do \ + { \ + if ( !( condition ) ) \ + FT_Panic( "assertion failed on line %d of file %s\n", \ + __LINE__, __FILE__ ); \ + } while ( 0 ) + +#else /* !FT_DEBUG_LEVEL_ERROR */ + +#define FT_ASSERT( condition ) do { } while ( 0 ) + +#endif /* !FT_DEBUG_LEVEL_ERROR */ + + + /*************************************************************************/ + /* */ + /* Define `FT_Message' and `FT_Panic' when needed. */ + /* */ + /*************************************************************************/ + +#ifdef FT_DEBUG_LEVEL_ERROR + +#include "stdio.h" /* for vfprintf() */ + + /* print a message */ + FT_BASE( void ) + FT_Message( const char* fmt, + ... ); + + /* print a message and exit */ + FT_BASE( void ) + FT_Panic( const char* fmt, + ... ); + +#endif /* FT_DEBUG_LEVEL_ERROR */ + + + FT_BASE( void ) + ft_debug_init( void ); + + +#if defined( _MSC_VER ) /* Visual C++ (and Intel C++) */ + + /* We disable the warning `conditional expression is constant' here */ + /* in order to compile cleanly with the maximum level of warnings. */ +#pragma warning( disable : 4127 ) + +#endif /* _MSC_VER */ + + +FT_END_HEADER + +#endif /* __FTDEBUG_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftdriver.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftdriver.h new file mode 100644 index 0000000000..1d06997bd1 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftdriver.h @@ -0,0 +1,422 @@ +/***************************************************************************/ +/* */ +/* ftdriver.h */ +/* */ +/* FreeType font driver interface (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2006, 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTDRIVER_H__ +#define __FTDRIVER_H__ + + +#include <ft2build.h> +#include FT_MODULE_H + + +FT_BEGIN_HEADER + + + typedef FT_Error + (*FT_Face_InitFunc)( FT_Stream stream, + FT_Face face, + FT_Int typeface_index, + FT_Int num_params, + FT_Parameter* parameters ); + + typedef void + (*FT_Face_DoneFunc)( FT_Face face ); + + + typedef FT_Error + (*FT_Size_InitFunc)( FT_Size size ); + + typedef void + (*FT_Size_DoneFunc)( FT_Size size ); + + + typedef FT_Error + (*FT_Slot_InitFunc)( FT_GlyphSlot slot ); + + typedef void + (*FT_Slot_DoneFunc)( FT_GlyphSlot slot ); + + + typedef FT_Error + (*FT_Size_RequestFunc)( FT_Size size, + FT_Size_Request req ); + + typedef FT_Error + (*FT_Size_SelectFunc)( FT_Size size, + FT_ULong size_index ); + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + typedef FT_Error + (*FT_Size_ResetPointsFunc)( FT_Size size, + FT_F26Dot6 char_width, + FT_F26Dot6 char_height, + FT_UInt horz_resolution, + FT_UInt vert_resolution ); + + typedef FT_Error + (*FT_Size_ResetPixelsFunc)( FT_Size size, + FT_UInt pixel_width, + FT_UInt pixel_height ); + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + typedef FT_Error + (*FT_Slot_LoadFunc)( FT_GlyphSlot slot, + FT_Size size, + FT_UInt glyph_index, + FT_Int32 load_flags ); + + + typedef FT_UInt + (*FT_CharMap_CharIndexFunc)( FT_CharMap charmap, + FT_Long charcode ); + + typedef FT_Long + (*FT_CharMap_CharNextFunc)( FT_CharMap charmap, + FT_Long charcode ); + + + typedef FT_Error + (*FT_Face_GetKerningFunc)( FT_Face face, + FT_UInt left_glyph, + FT_UInt right_glyph, + FT_Vector* kerning ); + + + typedef FT_Error + (*FT_Face_AttachFunc)( FT_Face face, + FT_Stream stream ); + + + typedef FT_Error + (*FT_Face_GetAdvancesFunc)( FT_Face face, + FT_UInt first, + FT_UInt count, + FT_Int32 flags, + FT_Fixed* advances ); + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Driver_ClassRec */ + /* */ + /* <Description> */ + /* The font driver class. This structure mostly contains pointers to */ + /* driver methods. */ + /* */ + /* <Fields> */ + /* root :: The parent module. */ + /* */ + /* face_object_size :: The size of a face object in bytes. */ + /* */ + /* size_object_size :: The size of a size object in bytes. */ + /* */ + /* slot_object_size :: The size of a glyph object in bytes. */ + /* */ + /* init_face :: The format-specific face constructor. */ + /* */ + /* done_face :: The format-specific face destructor. */ + /* */ + /* init_size :: The format-specific size constructor. */ + /* */ + /* done_size :: The format-specific size destructor. */ + /* */ + /* init_slot :: The format-specific slot constructor. */ + /* */ + /* done_slot :: The format-specific slot destructor. */ + /* */ + /* */ + /* load_glyph :: A function handle to load a glyph to a slot. */ + /* This field is mandatory! */ + /* */ + /* get_kerning :: A function handle to return the unscaled */ + /* kerning for a given pair of glyphs. Can be */ + /* set to 0 if the format doesn't support */ + /* kerning. */ + /* */ + /* attach_file :: This function handle is used to read */ + /* additional data for a face from another */ + /* file/stream. For example, this can be used to */ + /* add data from AFM or PFM files on a Type 1 */ + /* face, or a CIDMap on a CID-keyed face. */ + /* */ + /* get_advances :: A function handle used to return advance */ + /* widths of `count' glyphs (in font units), */ + /* starting at `first'. The `vertical' flag must */ + /* be set to get vertical advance heights. The */ + /* `advances' buffer is caller-allocated. */ + /* Currently not implemented. The idea of this */ + /* function is to be able to perform */ + /* device-independent text layout without loading */ + /* a single glyph image. */ + /* */ + /* request_size :: A handle to a function used to request the new */ + /* character size. Can be set to 0 if the */ + /* scaling done in the base layer suffices. */ + /* */ + /* select_size :: A handle to a function used to select a new */ + /* fixed size. It is used only if */ + /* @FT_FACE_FLAG_FIXED_SIZES is set. Can be set */ + /* to 0 if the scaling done in the base layer */ + /* suffices. */ + /* <Note> */ + /* Most function pointers, with the exception of `load_glyph', can be */ + /* set to 0 to indicate a default behaviour. */ + /* */ + typedef struct FT_Driver_ClassRec_ + { + FT_Module_Class root; + + FT_Long face_object_size; + FT_Long size_object_size; + FT_Long slot_object_size; + + FT_Face_InitFunc init_face; + FT_Face_DoneFunc done_face; + + FT_Size_InitFunc init_size; + FT_Size_DoneFunc done_size; + + FT_Slot_InitFunc init_slot; + FT_Slot_DoneFunc done_slot; + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + FT_Size_ResetPointsFunc set_char_sizes; + FT_Size_ResetPixelsFunc set_pixel_sizes; + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + FT_Slot_LoadFunc load_glyph; + + FT_Face_GetKerningFunc get_kerning; + FT_Face_AttachFunc attach_file; + FT_Face_GetAdvancesFunc get_advances; + + /* since version 2.2 */ + FT_Size_RequestFunc request_size; + FT_Size_SelectFunc select_size; + + } FT_Driver_ClassRec, *FT_Driver_Class; + + + /* + * The following functions are used as stubs for `set_char_sizes' and + * `set_pixel_sizes'; the code uses `request_size' and `select_size' + * functions instead. + * + * Implementation is in `src/base/ftobjs.c'. + */ +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + FT_BASE( FT_Error ) + ft_stub_set_char_sizes( FT_Size size, + FT_F26Dot6 width, + FT_F26Dot6 height, + FT_UInt horz_res, + FT_UInt vert_res ); + + FT_BASE( FT_Error ) + ft_stub_set_pixel_sizes( FT_Size size, + FT_UInt width, + FT_UInt height ); + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_DECLARE_DRIVER */ + /* */ + /* <Description> */ + /* Used to create a forward declaration of a */ + /* FT_Driver_ClassRec stract instance. */ + /* */ + /* <Macro> */ + /* FT_DEFINE_DRIVER */ + /* */ + /* <Description> */ + /* Used to initialize an instance of FT_Driver_ClassRec struct. */ + /* */ + /* When FT_CONFIG_OPTION_PIC is defined a Create funtion will need */ + /* to called with a pointer where the allocated stracture is returned.*/ + /* And when it is no longer needed a Destroy function needs */ + /* to be called to release that allocation. */ + /* fcinit.c (ft_create_default_module_classes) already contains */ + /* a mechanism to call these functions for the default modules */ + /* described in ftmodule.h */ + /* */ + /* Notice that the created Create and Destroy functions call */ + /* pic_init and pic_free function to allow you to manually allocate */ + /* and initialize any additional global data, like module specific */ + /* interface, and put them in the global pic container defined in */ + /* ftpic.h. if you don't need them just implement the functions as */ + /* empty to resolve the link error. */ + /* */ + /* When FT_CONFIG_OPTION_PIC is not defined the struct will be */ + /* allocated in the global scope (or the scope where the macro */ + /* is used). */ + /* */ +#ifndef FT_CONFIG_OPTION_PIC + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS +#define FT_DEFINE_DRIVERS_OLD_INTERNALS(a_,b_) \ + a_, b_, +#else + #define FT_DEFINE_DRIVERS_OLD_INTERNALS(a_,b_) +#endif + +#define FT_DECLARE_DRIVER(class_) \ + FT_CALLBACK_TABLE \ + const FT_Driver_ClassRec class_; + +#define FT_DEFINE_DRIVER(class_, \ + flags_, size_, name_, version_, requires_, \ + interface_, init_, done_, get_interface_, \ + face_object_size_, size_object_size_, \ + slot_object_size_, init_face_, done_face_, \ + init_size_, done_size_, init_slot_, done_slot_, \ + old_set_char_sizes_, old_set_pixel_sizes_, \ + load_glyph_, get_kerning_, attach_file_, \ + get_advances_, request_size_, select_size_ ) \ + FT_CALLBACK_TABLE_DEF \ + const FT_Driver_ClassRec class_ = \ + { \ + FT_DEFINE_ROOT_MODULE(flags_,size_,name_,version_,requires_,interface_, \ + init_,done_,get_interface_) \ + \ + face_object_size_, \ + size_object_size_, \ + slot_object_size_, \ + \ + init_face_, \ + done_face_, \ + \ + init_size_, \ + done_size_, \ + \ + init_slot_, \ + done_slot_, \ + \ + FT_DEFINE_DRIVERS_OLD_INTERNALS(old_set_char_sizes_, old_set_pixel_sizes_) \ + \ + load_glyph_, \ + \ + get_kerning_, \ + attach_file_, \ + get_advances_, \ + \ + request_size_, \ + select_size_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS +#define FT_DEFINE_DRIVERS_OLD_INTERNALS(a_,b_) \ + clazz->set_char_sizes = a_; \ + clazz->set_pixel_sizes = b_; +#else + #define FT_DEFINE_DRIVERS_OLD_INTERNALS(a_,b_) +#endif + +#define FT_DECLARE_DRIVER(class_) FT_DECLARE_MODULE(class_) + +#define FT_DEFINE_DRIVER(class_, \ + flags_, size_, name_, version_, requires_, \ + interface_, init_, done_, get_interface_, \ + face_object_size_, size_object_size_, \ + slot_object_size_, init_face_, done_face_, \ + init_size_, done_size_, init_slot_, done_slot_, \ + old_set_char_sizes_, old_set_pixel_sizes_, \ + load_glyph_, get_kerning_, attach_file_, \ + get_advances_, request_size_, select_size_ ) \ + void class_##_pic_free( FT_Library library ); \ + FT_Error class_##_pic_init( FT_Library library ); \ + \ + void \ + FT_Destroy_Class_##class_( FT_Library library, \ + FT_Module_Class* clazz ) \ + { \ + FT_Memory memory = library->memory; \ + FT_Driver_Class dclazz = (FT_Driver_Class)clazz; \ + class_##_pic_free( library ); \ + if ( dclazz ) \ + FT_FREE( dclazz ); \ + } \ + \ + FT_Error \ + FT_Create_Class_##class_( FT_Library library, \ + FT_Module_Class** output_class ) \ + { \ + FT_Driver_Class clazz; \ + FT_Error error; \ + FT_Memory memory = library->memory; \ + \ + if ( FT_ALLOC( clazz, sizeof(*clazz) ) ) \ + return error; \ + \ + error = class_##_pic_init( library ); \ + if(error) \ + { \ + FT_FREE( clazz ); \ + return error; \ + } \ + \ + FT_DEFINE_ROOT_MODULE(flags_,size_,name_,version_,requires_,interface_, \ + init_,done_,get_interface_) \ + \ + clazz->face_object_size = face_object_size_; \ + clazz->size_object_size = size_object_size_; \ + clazz->slot_object_size = slot_object_size_; \ + \ + clazz->init_face = init_face_; \ + clazz->done_face = done_face_; \ + \ + clazz->init_size = init_size_; \ + clazz->done_size = done_size_; \ + \ + clazz->init_slot = init_slot_; \ + clazz->done_slot = done_slot_; \ + \ + FT_DEFINE_DRIVERS_OLD_INTERNALS(old_set_char_sizes_, old_set_pixel_sizes_) \ + \ + clazz->load_glyph = load_glyph_; \ + \ + clazz->get_kerning = get_kerning_; \ + clazz->attach_file = attach_file_; \ + clazz->get_advances = get_advances_; \ + \ + clazz->request_size = request_size_; \ + clazz->select_size = select_size_; \ + \ + *output_class = (FT_Module_Class*)clazz; \ + return FT_Err_Ok; \ + } + + +#endif /* FT_CONFIG_OPTION_PIC */ + +FT_END_HEADER + +#endif /* __FTDRIVER_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftgloadr.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftgloadr.h new file mode 100644 index 0000000000..ce4dc6c9cc --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftgloadr.h @@ -0,0 +1,168 @@ +/***************************************************************************/ +/* */ +/* ftgloadr.h */ +/* */ +/* The FreeType glyph loader (specification). */ +/* */ +/* Copyright 2002, 2003, 2005, 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTGLOADR_H__ +#define __FTGLOADR_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_GlyphLoader */ + /* */ + /* <Description> */ + /* The glyph loader is an internal object used to load several glyphs */ + /* together (for example, in the case of composites). */ + /* */ + /* <Note> */ + /* The glyph loader implementation is not part of the high-level API, */ + /* hence the forward structure declaration. */ + /* */ + typedef struct FT_GlyphLoaderRec_* FT_GlyphLoader ; + + +#if 0 /* moved to freetype.h in version 2.2 */ +#define FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS 1 +#define FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES 2 +#define FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID 4 +#define FT_SUBGLYPH_FLAG_SCALE 8 +#define FT_SUBGLYPH_FLAG_XY_SCALE 0x40 +#define FT_SUBGLYPH_FLAG_2X2 0x80 +#define FT_SUBGLYPH_FLAG_USE_MY_METRICS 0x200 +#endif + + + typedef struct FT_SubGlyphRec_ + { + FT_Int index; + FT_UShort flags; + FT_Int arg1; + FT_Int arg2; + FT_Matrix transform; + + } FT_SubGlyphRec; + + + typedef struct FT_GlyphLoadRec_ + { + FT_Outline outline; /* outline */ + FT_Vector* extra_points; /* extra points table */ + FT_Vector* extra_points2; /* second extra points table */ + FT_UInt num_subglyphs; /* number of subglyphs */ + FT_SubGlyph subglyphs; /* subglyphs */ + + } FT_GlyphLoadRec, *FT_GlyphLoad; + + + typedef struct FT_GlyphLoaderRec_ + { + FT_Memory memory; + FT_UInt max_points; + FT_UInt max_contours; + FT_UInt max_subglyphs; + FT_Bool use_extra; + + FT_GlyphLoadRec base; + FT_GlyphLoadRec current; + + void* other; /* for possible future extension? */ + + } FT_GlyphLoaderRec; + + + /* create new empty glyph loader */ + FT_BASE( FT_Error ) + FT_GlyphLoader_New( FT_Memory memory, + FT_GlyphLoader *aloader ); + + /* add an extra points table to a glyph loader */ + FT_BASE( FT_Error ) + FT_GlyphLoader_CreateExtra( FT_GlyphLoader loader ); + + /* destroy a glyph loader */ + FT_BASE( void ) + FT_GlyphLoader_Done( FT_GlyphLoader loader ); + + /* reset a glyph loader (frees everything int it) */ + FT_BASE( void ) + FT_GlyphLoader_Reset( FT_GlyphLoader loader ); + + /* rewind a glyph loader */ + FT_BASE( void ) + FT_GlyphLoader_Rewind( FT_GlyphLoader loader ); + + /* check that there is enough space to add `n_points' and `n_contours' */ + /* to the glyph loader */ + FT_BASE( FT_Error ) + FT_GlyphLoader_CheckPoints( FT_GlyphLoader loader, + FT_UInt n_points, + FT_UInt n_contours ); + + +#define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \ + ( (_count) == 0 || ((_loader)->base.outline.n_points + \ + (_loader)->current.outline.n_points + \ + (unsigned long)(_count)) <= (_loader)->max_points ) + +#define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \ + ( (_count) == 0 || ((_loader)->base.outline.n_contours + \ + (_loader)->current.outline.n_contours + \ + (unsigned long)(_count)) <= (_loader)->max_contours ) + +#define FT_GLYPHLOADER_CHECK_POINTS( _loader, _points,_contours ) \ + ( ( FT_GLYPHLOADER_CHECK_P( _loader, _points ) && \ + FT_GLYPHLOADER_CHECK_C( _loader, _contours ) ) \ + ? 0 \ + : FT_GlyphLoader_CheckPoints( (_loader), (_points), (_contours) ) ) + + + /* check that there is enough space to add `n_subs' sub-glyphs to */ + /* a glyph loader */ + FT_BASE( FT_Error ) + FT_GlyphLoader_CheckSubGlyphs( FT_GlyphLoader loader, + FT_UInt n_subs ); + + /* prepare a glyph loader, i.e. empty the current glyph */ + FT_BASE( void ) + FT_GlyphLoader_Prepare( FT_GlyphLoader loader ); + + /* add the current glyph to the base glyph */ + FT_BASE( void ) + FT_GlyphLoader_Add( FT_GlyphLoader loader ); + + /* copy points from one glyph loader to another */ + FT_BASE( FT_Error ) + FT_GlyphLoader_CopyPoints( FT_GlyphLoader target, + FT_GlyphLoader source ); + + /* */ + + +FT_END_HEADER + +#endif /* __FTGLOADR_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftmemory.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftmemory.h new file mode 100644 index 0000000000..026aa63eaa --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftmemory.h @@ -0,0 +1,380 @@ +/***************************************************************************/ +/* */ +/* ftmemory.h */ +/* */ +/* The FreeType memory management macros (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2004, 2005, 2006, 2007, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTMEMORY_H__ +#define __FTMEMORY_H__ + + +#include <ft2build.h> +#include FT_CONFIG_CONFIG_H +#include FT_TYPES_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_SET_ERROR */ + /* */ + /* <Description> */ + /* This macro is used to set an implicit `error' variable to a given */ + /* expression's value (usually a function call), and convert it to a */ + /* boolean which is set whenever the value is != 0. */ + /* */ +#undef FT_SET_ERROR +#define FT_SET_ERROR( expression ) \ + ( ( error = (expression) ) != 0 ) + + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** M E M O R Y ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /* + * C++ refuses to handle statements like p = (void*)anything, with `p' a + * typed pointer. Since we don't have a `typeof' operator in standard + * C++, we have to use a template to emulate it. + */ + +#ifdef __cplusplus + + extern "C++" + template <typename T> inline T* + cplusplus_typeof( T*, + void *v ) + { + return static_cast <T*> ( v ); + } + +#define FT_ASSIGNP( p, val ) (p) = cplusplus_typeof( (p), (val) ) + +#else + +#define FT_ASSIGNP( p, val ) (p) = (val) + +#endif + + + +#ifdef FT_DEBUG_MEMORY + + FT_BASE( const char* ) _ft_debug_file; + FT_BASE( long ) _ft_debug_lineno; + +#define FT_DEBUG_INNER( exp ) ( _ft_debug_file = __FILE__, \ + _ft_debug_lineno = __LINE__, \ + (exp) ) + +#define FT_ASSIGNP_INNER( p, exp ) ( _ft_debug_file = __FILE__, \ + _ft_debug_lineno = __LINE__, \ + FT_ASSIGNP( p, exp ) ) + +#else /* !FT_DEBUG_MEMORY */ + +#define FT_DEBUG_INNER( exp ) (exp) +#define FT_ASSIGNP_INNER( p, exp ) FT_ASSIGNP( p, exp ) + +#endif /* !FT_DEBUG_MEMORY */ + + + /* + * The allocation functions return a pointer, and the error code + * is written to through the `p_error' parameter. See below for + * for documentation. + */ + + FT_BASE( FT_Pointer ) + ft_mem_alloc( FT_Memory memory, + FT_Long size, + FT_Error *p_error ); + + FT_BASE( FT_Pointer ) + ft_mem_qalloc( FT_Memory memory, + FT_Long size, + FT_Error *p_error ); + + FT_BASE( FT_Pointer ) + ft_mem_realloc( FT_Memory memory, + FT_Long item_size, + FT_Long cur_count, + FT_Long new_count, + void* block, + FT_Error *p_error ); + + FT_BASE( FT_Pointer ) + ft_mem_qrealloc( FT_Memory memory, + FT_Long item_size, + FT_Long cur_count, + FT_Long new_count, + void* block, + FT_Error *p_error ); + + FT_BASE( void ) + ft_mem_free( FT_Memory memory, + const void* P ); + + +#define FT_MEM_ALLOC( ptr, size ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, (size), &error ) ) + +#define FT_MEM_FREE( ptr ) \ + FT_BEGIN_STMNT \ + ft_mem_free( memory, (ptr) ); \ + (ptr) = NULL; \ + FT_END_STMNT + +#define FT_MEM_NEW( ptr ) \ + FT_MEM_ALLOC( ptr, sizeof ( *(ptr) ) ) + +#define FT_MEM_REALLOC( ptr, cursz, newsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, 1, \ + (cursz), (newsz), \ + (ptr), &error ) ) + +#define FT_MEM_QALLOC( ptr, size ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qalloc( memory, (size), &error ) ) + +#define FT_MEM_QNEW( ptr ) \ + FT_MEM_QALLOC( ptr, sizeof ( *(ptr) ) ) + +#define FT_MEM_QREALLOC( ptr, cursz, newsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, 1, \ + (cursz), (newsz), \ + (ptr), &error ) ) + +#define FT_MEM_QRENEW_ARRAY( ptr, cursz, newsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, sizeof ( *(ptr) ), \ + (cursz), (newsz), \ + (ptr), &error ) ) + +#define FT_MEM_ALLOC_MULT( ptr, count, item_size ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, (item_size), \ + 0, (count), \ + NULL, &error ) ) + +#define FT_MEM_REALLOC_MULT( ptr, oldcnt, newcnt, itmsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, (itmsz), \ + (oldcnt), (newcnt), \ + (ptr), &error ) ) + +#define FT_MEM_QALLOC_MULT( ptr, count, item_size ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, (item_size), \ + 0, (count), \ + NULL, &error ) ) + +#define FT_MEM_QREALLOC_MULT( ptr, oldcnt, newcnt, itmsz) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, (itmsz), \ + (oldcnt), (newcnt), \ + (ptr), &error ) ) + + +#define FT_MEM_SET_ERROR( cond ) ( (cond), error != 0 ) + + +#define FT_MEM_SET( dest, byte, count ) ft_memset( dest, byte, count ) + +#define FT_MEM_COPY( dest, source, count ) ft_memcpy( dest, source, count ) + +#define FT_MEM_MOVE( dest, source, count ) ft_memmove( dest, source, count ) + + +#define FT_MEM_ZERO( dest, count ) FT_MEM_SET( dest, 0, count ) + +#define FT_ZERO( p ) FT_MEM_ZERO( p, sizeof ( *(p) ) ) + + +#define FT_ARRAY_ZERO( dest, count ) \ + FT_MEM_ZERO( dest, (count) * sizeof ( *(dest) ) ) + +#define FT_ARRAY_COPY( dest, source, count ) \ + FT_MEM_COPY( dest, source, (count) * sizeof ( *(dest) ) ) + +#define FT_ARRAY_MOVE( dest, source, count ) \ + FT_MEM_MOVE( dest, source, (count) * sizeof ( *(dest) ) ) + + + /* + * Return the maximum number of addressable elements in an array. + * We limit ourselves to INT_MAX, rather than UINT_MAX, to avoid + * any problems. + */ +#define FT_ARRAY_MAX( ptr ) ( FT_INT_MAX / sizeof ( *(ptr) ) ) + +#define FT_ARRAY_CHECK( ptr, count ) ( (count) <= FT_ARRAY_MAX( ptr ) ) + + + /*************************************************************************/ + /* */ + /* The following functions macros expect that their pointer argument is */ + /* _typed_ in order to automatically compute array element sizes. */ + /* */ + +#define FT_MEM_NEW_ARRAY( ptr, count ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, sizeof ( *(ptr) ), \ + 0, (count), \ + NULL, &error ) ) + +#define FT_MEM_RENEW_ARRAY( ptr, cursz, newsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, sizeof ( *(ptr) ), \ + (cursz), (newsz), \ + (ptr), &error ) ) + +#define FT_MEM_QNEW_ARRAY( ptr, count ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, sizeof ( *(ptr) ), \ + 0, (count), \ + NULL, &error ) ) + +#define FT_MEM_QRENEW_ARRAY( ptr, cursz, newsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, sizeof ( *(ptr) ), \ + (cursz), (newsz), \ + (ptr), &error ) ) + + +#define FT_ALLOC( ptr, size ) \ + FT_MEM_SET_ERROR( FT_MEM_ALLOC( ptr, size ) ) + +#define FT_REALLOC( ptr, cursz, newsz ) \ + FT_MEM_SET_ERROR( FT_MEM_REALLOC( ptr, cursz, newsz ) ) + +#define FT_ALLOC_MULT( ptr, count, item_size ) \ + FT_MEM_SET_ERROR( FT_MEM_ALLOC_MULT( ptr, count, item_size ) ) + +#define FT_REALLOC_MULT( ptr, oldcnt, newcnt, itmsz ) \ + FT_MEM_SET_ERROR( FT_MEM_REALLOC_MULT( ptr, oldcnt, \ + newcnt, itmsz ) ) + +#define FT_QALLOC( ptr, size ) \ + FT_MEM_SET_ERROR( FT_MEM_QALLOC( ptr, size ) ) + +#define FT_QREALLOC( ptr, cursz, newsz ) \ + FT_MEM_SET_ERROR( FT_MEM_QREALLOC( ptr, cursz, newsz ) ) + +#define FT_QALLOC_MULT( ptr, count, item_size ) \ + FT_MEM_SET_ERROR( FT_MEM_QALLOC_MULT( ptr, count, item_size ) ) + +#define FT_QREALLOC_MULT( ptr, oldcnt, newcnt, itmsz ) \ + FT_MEM_SET_ERROR( FT_MEM_QREALLOC_MULT( ptr, oldcnt, \ + newcnt, itmsz ) ) + +#define FT_FREE( ptr ) FT_MEM_FREE( ptr ) + +#define FT_NEW( ptr ) FT_MEM_SET_ERROR( FT_MEM_NEW( ptr ) ) + +#define FT_NEW_ARRAY( ptr, count ) \ + FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) + +#define FT_RENEW_ARRAY( ptr, curcnt, newcnt ) \ + FT_MEM_SET_ERROR( FT_MEM_RENEW_ARRAY( ptr, curcnt, newcnt ) ) + +#define FT_QNEW( ptr ) \ + FT_MEM_SET_ERROR( FT_MEM_QNEW( ptr ) ) + +#define FT_QNEW_ARRAY( ptr, count ) \ + FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) + +#define FT_QRENEW_ARRAY( ptr, curcnt, newcnt ) \ + FT_MEM_SET_ERROR( FT_MEM_RENEW_ARRAY( ptr, curcnt, newcnt ) ) + + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + FT_BASE( FT_Error ) + FT_Alloc( FT_Memory memory, + FT_Long size, + void* *P ); + + FT_BASE( FT_Error ) + FT_QAlloc( FT_Memory memory, + FT_Long size, + void* *p ); + + FT_BASE( FT_Error ) + FT_Realloc( FT_Memory memory, + FT_Long current, + FT_Long size, + void* *P ); + + FT_BASE( FT_Error ) + FT_QRealloc( FT_Memory memory, + FT_Long current, + FT_Long size, + void* *p ); + + FT_BASE( void ) + FT_Free( FT_Memory memory, + void* *P ); + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + + FT_BASE( FT_Pointer ) + ft_mem_strdup( FT_Memory memory, + const char* str, + FT_Error *p_error ); + + FT_BASE( FT_Pointer ) + ft_mem_dup( FT_Memory memory, + const void* address, + FT_ULong size, + FT_Error *p_error ); + +#define FT_MEM_STRDUP( dst, str ) \ + (dst) = (char*)ft_mem_strdup( memory, (const char*)(str), &error ) + +#define FT_STRDUP( dst, str ) \ + FT_MEM_SET_ERROR( FT_MEM_STRDUP( dst, str ) ) + +#define FT_MEM_DUP( dst, address, size ) \ + (dst) = ft_mem_dup( memory, (address), (FT_ULong)(size), &error ) + +#define FT_DUP( dst, address, size ) \ + FT_MEM_SET_ERROR( FT_MEM_DUP( dst, address, size ) ) + + + /* Return >= 1 if a truncation occurs. */ + /* Return 0 if the source string fits the buffer. */ + /* This is *not* the same as strlcpy(). */ + FT_BASE( FT_Int ) + ft_mem_strcpyn( char* dst, + const char* src, + FT_ULong size ); + +#define FT_STRCPYN( dst, src, size ) \ + ft_mem_strcpyn( (char*)dst, (const char*)(src), (FT_ULong)(size) ) + + /* */ + + +FT_END_HEADER + +#endif /* __FTMEMORY_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftobjs.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftobjs.h new file mode 100644 index 0000000000..670eb78a84 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftobjs.h @@ -0,0 +1,1428 @@ +/***************************************************************************/ +/* */ +/* ftobjs.h */ +/* */ +/* The FreeType private base classes (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2008, 2010 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This file contains the definition of all internal FreeType classes. */ + /* */ + /*************************************************************************/ + + +#ifndef __FTOBJS_H__ +#define __FTOBJS_H__ + +#include <ft2build.h> +#include FT_RENDER_H +#include FT_SIZES_H +#include FT_LCD_FILTER_H +#include FT_INTERNAL_MEMORY_H +#include FT_INTERNAL_GLYPH_LOADER_H +#include FT_INTERNAL_DRIVER_H +#include FT_INTERNAL_AUTOHINT_H +#include FT_INTERNAL_SERVICE_H +#include FT_INTERNAL_PIC_H + +#ifdef FT_CONFIG_OPTION_INCREMENTAL +#include FT_INCREMENTAL_H +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* Some generic definitions. */ + /* */ +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif + +#ifndef NULL +#define NULL (void*)0 +#endif + + + /*************************************************************************/ + /* */ + /* The min and max functions missing in C. As usual, be careful not to */ + /* write things like FT_MIN( a++, b++ ) to avoid side effects. */ + /* */ +#define FT_MIN( a, b ) ( (a) < (b) ? (a) : (b) ) +#define FT_MAX( a, b ) ( (a) > (b) ? (a) : (b) ) + +#define FT_ABS( a ) ( (a) < 0 ? -(a) : (a) ) + + +#define FT_PAD_FLOOR( x, n ) ( (x) & ~((n)-1) ) +#define FT_PAD_ROUND( x, n ) FT_PAD_FLOOR( (x) + ((n)/2), n ) +#define FT_PAD_CEIL( x, n ) FT_PAD_FLOOR( (x) + ((n)-1), n ) + +#define FT_PIX_FLOOR( x ) ( (x) & ~63 ) +#define FT_PIX_ROUND( x ) FT_PIX_FLOOR( (x) + 32 ) +#define FT_PIX_CEIL( x ) FT_PIX_FLOOR( (x) + 63 ) + + + /* + * Return the highest power of 2 that is <= value; this correspond to + * the highest bit in a given 32-bit value. + */ + FT_BASE( FT_UInt32 ) + ft_highpow2( FT_UInt32 value ); + + + /* + * character classification functions -- since these are used to parse + * font files, we must not use those in <ctypes.h> which are + * locale-dependent + */ +#define ft_isdigit( x ) ( ( (unsigned)(x) - '0' ) < 10U ) + +#define ft_isxdigit( x ) ( ( (unsigned)(x) - '0' ) < 10U || \ + ( (unsigned)(x) - 'a' ) < 6U || \ + ( (unsigned)(x) - 'A' ) < 6U ) + + /* the next two macros assume ASCII representation */ +#define ft_isupper( x ) ( ( (unsigned)(x) - 'A' ) < 26U ) +#define ft_islower( x ) ( ( (unsigned)(x) - 'a' ) < 26U ) + +#define ft_isalpha( x ) ( ft_isupper( x ) || ft_islower( x ) ) +#define ft_isalnum( x ) ( ft_isdigit( x ) || ft_isalpha( x ) ) + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** C H A R M A P S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + /* handle to internal charmap object */ + typedef struct FT_CMapRec_* FT_CMap; + + /* handle to charmap class structure */ + typedef const struct FT_CMap_ClassRec_* FT_CMap_Class; + + /* internal charmap object structure */ + typedef struct FT_CMapRec_ + { + FT_CharMapRec charmap; + FT_CMap_Class clazz; + + } FT_CMapRec; + + /* typecase any pointer to a charmap handle */ +#define FT_CMAP( x ) ((FT_CMap)( x )) + + /* obvious macros */ +#define FT_CMAP_PLATFORM_ID( x ) FT_CMAP( x )->charmap.platform_id +#define FT_CMAP_ENCODING_ID( x ) FT_CMAP( x )->charmap.encoding_id +#define FT_CMAP_ENCODING( x ) FT_CMAP( x )->charmap.encoding +#define FT_CMAP_FACE( x ) FT_CMAP( x )->charmap.face + + + /* class method definitions */ + typedef FT_Error + (*FT_CMap_InitFunc)( FT_CMap cmap, + FT_Pointer init_data ); + + typedef void + (*FT_CMap_DoneFunc)( FT_CMap cmap ); + + typedef FT_UInt + (*FT_CMap_CharIndexFunc)( FT_CMap cmap, + FT_UInt32 char_code ); + + typedef FT_UInt + (*FT_CMap_CharNextFunc)( FT_CMap cmap, + FT_UInt32 *achar_code ); + + typedef FT_UInt + (*FT_CMap_CharVarIndexFunc)( FT_CMap cmap, + FT_CMap unicode_cmap, + FT_UInt32 char_code, + FT_UInt32 variant_selector ); + + typedef FT_Bool + (*FT_CMap_CharVarIsDefaultFunc)( FT_CMap cmap, + FT_UInt32 char_code, + FT_UInt32 variant_selector ); + + typedef FT_UInt32 * + (*FT_CMap_VariantListFunc)( FT_CMap cmap, + FT_Memory mem ); + + typedef FT_UInt32 * + (*FT_CMap_CharVariantListFunc)( FT_CMap cmap, + FT_Memory mem, + FT_UInt32 char_code ); + + typedef FT_UInt32 * + (*FT_CMap_VariantCharListFunc)( FT_CMap cmap, + FT_Memory mem, + FT_UInt32 variant_selector ); + + + typedef struct FT_CMap_ClassRec_ + { + FT_ULong size; + FT_CMap_InitFunc init; + FT_CMap_DoneFunc done; + FT_CMap_CharIndexFunc char_index; + FT_CMap_CharNextFunc char_next; + + /* Subsequent entries are special ones for format 14 -- the variant */ + /* selector subtable which behaves like no other */ + + FT_CMap_CharVarIndexFunc char_var_index; + FT_CMap_CharVarIsDefaultFunc char_var_default; + FT_CMap_VariantListFunc variant_list; + FT_CMap_CharVariantListFunc charvariant_list; + FT_CMap_VariantCharListFunc variantchar_list; + + } FT_CMap_ClassRec; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DECLARE_CMAP_CLASS(class_) \ + FT_CALLBACK_TABLE const FT_CMap_ClassRec class_; + +#define FT_DEFINE_CMAP_CLASS(class_, size_, init_, done_, char_index_, \ + char_next_, char_var_index_, char_var_default_, variant_list_, \ + charvariant_list_, variantchar_list_) \ + FT_CALLBACK_TABLE_DEF \ + const FT_CMap_ClassRec class_ = \ + { \ + size_, init_, done_, char_index_, char_next_, char_var_index_, \ + char_var_default_, variant_list_, charvariant_list_, variantchar_list_ \ + }; +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DECLARE_CMAP_CLASS(class_) \ + void FT_Init_Class_##class_( FT_Library library, FT_CMap_ClassRec* clazz); + +#define FT_DEFINE_CMAP_CLASS(class_, size_, init_, done_, char_index_, \ + char_next_, char_var_index_, char_var_default_, variant_list_, \ + charvariant_list_, variantchar_list_) \ + void \ + FT_Init_Class_##class_( FT_Library library, \ + FT_CMap_ClassRec* clazz) \ + { \ + FT_UNUSED(library); \ + clazz->size = size_; \ + clazz->init = init_; \ + clazz->done = done_; \ + clazz->char_index = char_index_; \ + clazz->char_next = char_next_; \ + clazz->char_var_index = char_var_index_; \ + clazz->char_var_default = char_var_default_; \ + clazz->variant_list = variant_list_; \ + clazz->charvariant_list = charvariant_list_; \ + clazz->variantchar_list = variantchar_list_; \ + } +#endif /* FT_CONFIG_OPTION_PIC */ + + /* create a new charmap and add it to charmap->face */ + FT_BASE( FT_Error ) + FT_CMap_New( FT_CMap_Class clazz, + FT_Pointer init_data, + FT_CharMap charmap, + FT_CMap *acmap ); + + /* destroy a charmap and remove it from face's list */ + FT_BASE( void ) + FT_CMap_Done( FT_CMap cmap ); + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Face_InternalRec */ + /* */ + /* <Description> */ + /* This structure contains the internal fields of each FT_Face */ + /* object. These fields may change between different releases of */ + /* FreeType. */ + /* */ + /* <Fields> */ + /* max_points :: */ + /* The maximal number of points used to store the vectorial outline */ + /* of any glyph in this face. If this value cannot be known in */ + /* advance, or if the face isn't scalable, this should be set to 0. */ + /* Only relevant for scalable formats. */ + /* */ + /* max_contours :: */ + /* The maximal number of contours used to store the vectorial */ + /* outline of any glyph in this face. If this value cannot be */ + /* known in advance, or if the face isn't scalable, this should be */ + /* set to 0. Only relevant for scalable formats. */ + /* */ + /* transform_matrix :: */ + /* A 2x2 matrix of 16.16 coefficients used to transform glyph */ + /* outlines after they are loaded from the font. Only used by the */ + /* convenience functions. */ + /* */ + /* transform_delta :: */ + /* A translation vector used to transform glyph outlines after they */ + /* are loaded from the font. Only used by the convenience */ + /* functions. */ + /* */ + /* transform_flags :: */ + /* Some flags used to classify the transform. Only used by the */ + /* convenience functions. */ + /* */ + /* services :: */ + /* A cache for frequently used services. It should be only */ + /* accessed with the macro `FT_FACE_LOOKUP_SERVICE'. */ + /* */ + /* incremental_interface :: */ + /* If non-null, the interface through which glyph data and metrics */ + /* are loaded incrementally for faces that do not provide all of */ + /* this data when first opened. This field exists only if */ + /* @FT_CONFIG_OPTION_INCREMENTAL is defined. */ + /* */ + /* ignore_unpatented_hinter :: */ + /* This boolean flag instructs the glyph loader to ignore the */ + /* native font hinter, if one is found. This is exclusively used */ + /* in the case when the unpatented hinter is compiled within the */ + /* library. */ + /* */ + /* refcount :: */ + /* A counter initialized to~1 at the time an @FT_Face structure is */ + /* created. @FT_Reference_Face increments this counter, and */ + /* @FT_Done_Face only destroys a face if the counter is~1, */ + /* otherwise it simply decrements it. */ + /* */ + typedef struct FT_Face_InternalRec_ + { +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + FT_UShort reserved1; + FT_Short reserved2; +#endif + FT_Matrix transform_matrix; + FT_Vector transform_delta; + FT_Int transform_flags; + + FT_ServiceCacheRec services; + +#ifdef FT_CONFIG_OPTION_INCREMENTAL + FT_Incremental_InterfaceRec* incremental_interface; +#endif + + FT_Bool ignore_unpatented_hinter; + FT_UInt refcount; + + } FT_Face_InternalRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Slot_InternalRec */ + /* */ + /* <Description> */ + /* This structure contains the internal fields of each FT_GlyphSlot */ + /* object. These fields may change between different releases of */ + /* FreeType. */ + /* */ + /* <Fields> */ + /* loader :: The glyph loader object used to load outlines */ + /* into the glyph slot. */ + /* */ + /* flags :: Possible values are zero or */ + /* FT_GLYPH_OWN_BITMAP. The latter indicates */ + /* that the FT_GlyphSlot structure owns the */ + /* bitmap buffer. */ + /* */ + /* glyph_transformed :: Boolean. Set to TRUE when the loaded glyph */ + /* must be transformed through a specific */ + /* font transformation. This is _not_ the same */ + /* as the face transform set through */ + /* FT_Set_Transform(). */ + /* */ + /* glyph_matrix :: The 2x2 matrix corresponding to the glyph */ + /* transformation, if necessary. */ + /* */ + /* glyph_delta :: The 2d translation vector corresponding to */ + /* the glyph transformation, if necessary. */ + /* */ + /* glyph_hints :: Format-specific glyph hints management. */ + /* */ + +#define FT_GLYPH_OWN_BITMAP 0x1 + + typedef struct FT_Slot_InternalRec_ + { + FT_GlyphLoader loader; + FT_UInt flags; + FT_Bool glyph_transformed; + FT_Matrix glyph_matrix; + FT_Vector glyph_delta; + void* glyph_hints; + + } FT_GlyphSlot_InternalRec; + + +#if 0 + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_Size_InternalRec */ + /* */ + /* <Description> */ + /* This structure contains the internal fields of each FT_Size */ + /* object. Currently, it's empty. */ + /* */ + /*************************************************************************/ + + typedef struct FT_Size_InternalRec_ + { + /* empty */ + + } FT_Size_InternalRec; + +#endif + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** M O D U L E S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_ModuleRec */ + /* */ + /* <Description> */ + /* A module object instance. */ + /* */ + /* <Fields> */ + /* clazz :: A pointer to the module's class. */ + /* */ + /* library :: A handle to the parent library object. */ + /* */ + /* memory :: A handle to the memory manager. */ + /* */ + /* generic :: A generic structure for user-level extensibility (?). */ + /* */ + typedef struct FT_ModuleRec_ + { + FT_Module_Class* clazz; + FT_Library library; + FT_Memory memory; + FT_Generic generic; + + } FT_ModuleRec; + + + /* typecast an object to a FT_Module */ +#define FT_MODULE( x ) ((FT_Module)( x )) +#define FT_MODULE_CLASS( x ) FT_MODULE( x )->clazz +#define FT_MODULE_LIBRARY( x ) FT_MODULE( x )->library +#define FT_MODULE_MEMORY( x ) FT_MODULE( x )->memory + + +#define FT_MODULE_IS_DRIVER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_FONT_DRIVER ) + +#define FT_MODULE_IS_RENDERER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_RENDERER ) + +#define FT_MODULE_IS_HINTER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_HINTER ) + +#define FT_MODULE_IS_STYLER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_STYLER ) + +#define FT_DRIVER_IS_SCALABLE( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_DRIVER_SCALABLE ) + +#define FT_DRIVER_USES_OUTLINES( x ) !( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_DRIVER_NO_OUTLINES ) + +#define FT_DRIVER_HAS_HINTER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_DRIVER_HAS_HINTER ) + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Module_Interface */ + /* */ + /* <Description> */ + /* Finds a module and returns its specific interface as a typeless */ + /* pointer. */ + /* */ + /* <Input> */ + /* library :: A handle to the library object. */ + /* */ + /* module_name :: The module's name (as an ASCII string). */ + /* */ + /* <Return> */ + /* A module-specific interface if available, 0 otherwise. */ + /* */ + /* <Note> */ + /* You should better be familiar with FreeType internals to know */ + /* which module to look for, and what its interface is :-) */ + /* */ + FT_BASE( const void* ) + FT_Get_Module_Interface( FT_Library library, + const char* mod_name ); + + FT_BASE( FT_Pointer ) + ft_module_get_service( FT_Module module, + const char* service_id ); + + /* */ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** FACE, SIZE & GLYPH SLOT OBJECTS ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + /* a few macros used to perform easy typecasts with minimal brain damage */ + +#define FT_FACE( x ) ((FT_Face)(x)) +#define FT_SIZE( x ) ((FT_Size)(x)) +#define FT_SLOT( x ) ((FT_GlyphSlot)(x)) + +#define FT_FACE_DRIVER( x ) FT_FACE( x )->driver +#define FT_FACE_LIBRARY( x ) FT_FACE_DRIVER( x )->root.library +#define FT_FACE_MEMORY( x ) FT_FACE( x )->memory +#define FT_FACE_STREAM( x ) FT_FACE( x )->stream + +#define FT_SIZE_FACE( x ) FT_SIZE( x )->face +#define FT_SLOT_FACE( x ) FT_SLOT( x )->face + +#define FT_FACE_SLOT( x ) FT_FACE( x )->glyph +#define FT_FACE_SIZE( x ) FT_FACE( x )->size + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_New_GlyphSlot */ + /* */ + /* <Description> */ + /* It is sometimes useful to have more than one glyph slot for a */ + /* given face object. This function is used to create additional */ + /* slots. All of them are automatically discarded when the face is */ + /* destroyed. */ + /* */ + /* <Input> */ + /* face :: A handle to a parent face object. */ + /* */ + /* <Output> */ + /* aslot :: A handle to a new glyph slot object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + FT_BASE( FT_Error ) + FT_New_GlyphSlot( FT_Face face, + FT_GlyphSlot *aslot ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Done_GlyphSlot */ + /* */ + /* <Description> */ + /* Destroys a given glyph slot. Remember however that all slots are */ + /* automatically destroyed with its parent. Using this function is */ + /* not always mandatory. */ + /* */ + /* <Input> */ + /* slot :: A handle to a target glyph slot. */ + /* */ + FT_BASE( void ) + FT_Done_GlyphSlot( FT_GlyphSlot slot ); + + /* */ + +#define FT_REQUEST_WIDTH( req ) \ + ( (req)->horiResolution \ + ? (FT_Pos)( (req)->width * (req)->horiResolution + 36 ) / 72 \ + : (req)->width ) + +#define FT_REQUEST_HEIGHT( req ) \ + ( (req)->vertResolution \ + ? (FT_Pos)( (req)->height * (req)->vertResolution + 36 ) / 72 \ + : (req)->height ) + + + /* Set the metrics according to a bitmap strike. */ + FT_BASE( void ) + FT_Select_Metrics( FT_Face face, + FT_ULong strike_index ); + + + /* Set the metrics according to a size request. */ + FT_BASE( void ) + FT_Request_Metrics( FT_Face face, + FT_Size_Request req ); + + + /* Match a size request against `available_sizes'. */ + FT_BASE( FT_Error ) + FT_Match_Size( FT_Face face, + FT_Size_Request req, + FT_Bool ignore_width, + FT_ULong* size_index ); + + + /* Use the horizontal metrics to synthesize the vertical metrics. */ + /* If `advance' is zero, it is also synthesized. */ + FT_BASE( void ) + ft_synthesize_vertical_metrics( FT_Glyph_Metrics* metrics, + FT_Pos advance ); + + + /* Free the bitmap of a given glyphslot when needed (i.e., only when it */ + /* was allocated with ft_glyphslot_alloc_bitmap). */ + FT_BASE( void ) + ft_glyphslot_free_bitmap( FT_GlyphSlot slot ); + + + /* Allocate a new bitmap buffer in a glyph slot. */ + FT_BASE( FT_Error ) + ft_glyphslot_alloc_bitmap( FT_GlyphSlot slot, + FT_ULong size ); + + + /* Set the bitmap buffer in a glyph slot to a given pointer. The buffer */ + /* will not be freed by a later call to ft_glyphslot_free_bitmap. */ + FT_BASE( void ) + ft_glyphslot_set_bitmap( FT_GlyphSlot slot, + FT_Byte* buffer ); + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** R E N D E R E R S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + +#define FT_RENDERER( x ) ((FT_Renderer)( x )) +#define FT_GLYPH( x ) ((FT_Glyph)( x )) +#define FT_BITMAP_GLYPH( x ) ((FT_BitmapGlyph)( x )) +#define FT_OUTLINE_GLYPH( x ) ((FT_OutlineGlyph)( x )) + + + typedef struct FT_RendererRec_ + { + FT_ModuleRec root; + FT_Renderer_Class* clazz; + FT_Glyph_Format glyph_format; + FT_Glyph_Class glyph_class; + + FT_Raster raster; + FT_Raster_Render_Func raster_render; + FT_Renderer_RenderFunc render; + + } FT_RendererRec; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** F O N T D R I V E R S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /* typecast a module into a driver easily */ +#define FT_DRIVER( x ) ((FT_Driver)(x)) + + /* typecast a module as a driver, and get its driver class */ +#define FT_DRIVER_CLASS( x ) FT_DRIVER( x )->clazz + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_DriverRec */ + /* */ + /* <Description> */ + /* The root font driver class. A font driver is responsible for */ + /* managing and loading font files of a given format. */ + /* */ + /* <Fields> */ + /* root :: Contains the fields of the root module class. */ + /* */ + /* clazz :: A pointer to the font driver's class. Note that */ + /* this is NOT root.clazz. `class' wasn't used */ + /* as it is a reserved word in C++. */ + /* */ + /* faces_list :: The list of faces currently opened by this */ + /* driver. */ + /* */ + /* extensions :: A typeless pointer to the driver's extensions */ + /* registry, if they are supported through the */ + /* configuration macro FT_CONFIG_OPTION_EXTENSIONS. */ + /* */ + /* glyph_loader :: The glyph loader for all faces managed by this */ + /* driver. This object isn't defined for unscalable */ + /* formats. */ + /* */ + typedef struct FT_DriverRec_ + { + FT_ModuleRec root; + FT_Driver_Class clazz; + + FT_ListRec faces_list; + void* extensions; + + FT_GlyphLoader glyph_loader; + + } FT_DriverRec; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** L I B R A R I E S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /* This hook is used by the TrueType debugger. It must be set to an */ + /* alternate truetype bytecode interpreter function. */ +#define FT_DEBUG_HOOK_TRUETYPE 0 + + + /* Set this debug hook to a non-null pointer to force unpatented hinting */ + /* for all faces when both TT_USE_BYTECODE_INTERPRETER and */ + /* TT_CONFIG_OPTION_UNPATENTED_HINTING are defined. This is only used */ + /* during debugging. */ +#define FT_DEBUG_HOOK_UNPATENTED_HINTING 1 + + + typedef void (*FT_Bitmap_LcdFilterFunc)( FT_Bitmap* bitmap, + FT_Render_Mode render_mode, + FT_Library library ); + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* FT_LibraryRec */ + /* */ + /* <Description> */ + /* The FreeType library class. This is the root of all FreeType */ + /* data. Use FT_New_Library() to create a library object, and */ + /* FT_Done_Library() to discard it and all child objects. */ + /* */ + /* <Fields> */ + /* memory :: The library's memory object. Manages memory */ + /* allocation. */ + /* */ + /* generic :: Client data variable. Used to extend the */ + /* Library class by higher levels and clients. */ + /* */ + /* version_major :: The major version number of the library. */ + /* */ + /* version_minor :: The minor version number of the library. */ + /* */ + /* version_patch :: The current patch level of the library. */ + /* */ + /* num_modules :: The number of modules currently registered */ + /* within this library. This is set to 0 for new */ + /* libraries. New modules are added through the */ + /* FT_Add_Module() API function. */ + /* */ + /* modules :: A table used to store handles to the currently */ + /* registered modules. Note that each font driver */ + /* contains a list of its opened faces. */ + /* */ + /* renderers :: The list of renderers currently registered */ + /* within the library. */ + /* */ + /* cur_renderer :: The current outline renderer. This is a */ + /* shortcut used to avoid parsing the list on */ + /* each call to FT_Outline_Render(). It is a */ + /* handle to the current renderer for the */ + /* FT_GLYPH_FORMAT_OUTLINE format. */ + /* */ + /* auto_hinter :: XXX */ + /* */ + /* raster_pool :: The raster object's render pool. This can */ + /* ideally be changed dynamically at run-time. */ + /* */ + /* raster_pool_size :: The size of the render pool in bytes. */ + /* */ + /* debug_hooks :: XXX */ + /* */ + /* lcd_filter :: If subpixel rendering is activated, the */ + /* selected LCD filter mode. */ + /* */ + /* lcd_extra :: If subpixel rendering is activated, the number */ + /* of extra pixels needed for the LCD filter. */ + /* */ + /* lcd_weights :: If subpixel rendering is activated, the LCD */ + /* filter weights, if any. */ + /* */ + /* lcd_filter_func :: If subpixel rendering is activated, the LCD */ + /* filtering callback function. */ + /* */ + /* pic_container :: Contains global structs and tables, instead */ + /* of defining them globallly. */ + /* */ + /* refcount :: A counter initialized to~1 at the time an */ + /* @FT_Library structure is created. */ + /* @FT_Reference_Library increments this counter, */ + /* and @FT_Done_Library only destroys a library */ + /* if the counter is~1, otherwise it simply */ + /* decrements it. */ + /* */ + typedef struct FT_LibraryRec_ + { + FT_Memory memory; /* library's memory manager */ + + FT_Generic generic; + + FT_Int version_major; + FT_Int version_minor; + FT_Int version_patch; + + FT_UInt num_modules; + FT_Module modules[FT_MAX_MODULES]; /* module objects */ + + FT_ListRec renderers; /* list of renderers */ + FT_Renderer cur_renderer; /* current outline renderer */ + FT_Module auto_hinter; + + FT_Byte* raster_pool; /* scan-line conversion */ + /* render pool */ + FT_ULong raster_pool_size; /* size of render pool in bytes */ + + FT_DebugHook_Func debug_hooks[4]; + +#ifdef FT_CONFIG_OPTION_SUBPIXEL_RENDERING + FT_LcdFilter lcd_filter; + FT_Int lcd_extra; /* number of extra pixels */ + FT_Byte lcd_weights[7]; /* filter weights, if any */ + FT_Bitmap_LcdFilterFunc lcd_filter_func; /* filtering callback */ +#endif + +#ifdef FT_CONFIG_OPTION_PIC + FT_PIC_Container pic_container; +#endif + + FT_UInt refcount; + + } FT_LibraryRec; + + + FT_BASE( FT_Renderer ) + FT_Lookup_Renderer( FT_Library library, + FT_Glyph_Format format, + FT_ListNode* node ); + + FT_BASE( FT_Error ) + FT_Render_Glyph_Internal( FT_Library library, + FT_GlyphSlot slot, + FT_Render_Mode render_mode ); + + typedef const char* + (*FT_Face_GetPostscriptNameFunc)( FT_Face face ); + + typedef FT_Error + (*FT_Face_GetGlyphNameFunc)( FT_Face face, + FT_UInt glyph_index, + FT_Pointer buffer, + FT_UInt buffer_max ); + + typedef FT_UInt + (*FT_Face_GetGlyphNameIndexFunc)( FT_Face face, + FT_String* glyph_name ); + + +#ifndef FT_CONFIG_OPTION_NO_DEFAULT_SYSTEM + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_New_Memory */ + /* */ + /* <Description> */ + /* Creates a new memory object. */ + /* */ + /* <Return> */ + /* A pointer to the new memory object. 0 in case of error. */ + /* */ + FT_BASE( FT_Memory ) + FT_New_Memory( void ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Done_Memory */ + /* */ + /* <Description> */ + /* Discards memory manager. */ + /* */ + /* <Input> */ + /* memory :: A handle to the memory manager. */ + /* */ + FT_BASE( void ) + FT_Done_Memory( FT_Memory memory ); + +#endif /* !FT_CONFIG_OPTION_NO_DEFAULT_SYSTEM */ + + + /* Define default raster's interface. The default raster is located in */ + /* `src/base/ftraster.c'. */ + /* */ + /* Client applications can register new rasters through the */ + /* FT_Set_Raster() API. */ + +#ifndef FT_NO_DEFAULT_RASTER + FT_EXPORT_VAR( FT_Raster_Funcs ) ft_default_raster; +#endif + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** PIC-Support Macros for ftimage.h ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_DEFINE_OUTLINE_FUNCS */ + /* */ + /* <Description> */ + /* Used to initialize an instance of FT_Outline_Funcs struct. */ + /* When FT_CONFIG_OPTION_PIC is defined an init funtion will need to */ + /* called with a pre-allocated stracture to be filled. */ + /* When FT_CONFIG_OPTION_PIC is not defined the struct will be */ + /* allocated in the global scope (or the scope where the macro */ + /* is used). */ + /* */ +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_OUTLINE_FUNCS(class_, move_to_, line_to_, conic_to_, \ + cubic_to_, shift_, delta_) \ + static const FT_Outline_Funcs class_ = \ + { \ + move_to_, line_to_, conic_to_, cubic_to_, shift_, delta_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_OUTLINE_FUNCS(class_, move_to_, line_to_, conic_to_, \ + cubic_to_, shift_, delta_) \ + static FT_Error \ + Init_Class_##class_( FT_Outline_Funcs* clazz ) \ + { \ + clazz->move_to = move_to_; \ + clazz->line_to = line_to_; \ + clazz->conic_to = conic_to_; \ + clazz->cubic_to = cubic_to_; \ + clazz->shift = shift_; \ + clazz->delta = delta_; \ + return FT_Err_Ok; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_DEFINE_RASTER_FUNCS */ + /* */ + /* <Description> */ + /* Used to initialize an instance of FT_Raster_Funcs struct. */ + /* When FT_CONFIG_OPTION_PIC is defined an init funtion will need to */ + /* called with a pre-allocated stracture to be filled. */ + /* When FT_CONFIG_OPTION_PIC is not defined the struct will be */ + /* allocated in the global scope (or the scope where the macro */ + /* is used). */ + /* */ +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_RASTER_FUNCS(class_, glyph_format_, raster_new_, \ + raster_reset_, raster_set_mode_, \ + raster_render_, raster_done_) \ + const FT_Raster_Funcs class_ = \ + { \ + glyph_format_, raster_new_, raster_reset_, \ + raster_set_mode_, raster_render_, raster_done_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_RASTER_FUNCS(class_, glyph_format_, raster_new_, \ + raster_reset_, raster_set_mode_, raster_render_, raster_done_) \ + void \ + FT_Init_Class_##class_( FT_Raster_Funcs* clazz ) \ + { \ + clazz->glyph_format = glyph_format_; \ + clazz->raster_new = raster_new_; \ + clazz->raster_reset = raster_reset_; \ + clazz->raster_set_mode = raster_set_mode_; \ + clazz->raster_render = raster_render_; \ + clazz->raster_done = raster_done_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** PIC-Support Macros for ftrender.h ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_DEFINE_GLYPH */ + /* */ + /* <Description> */ + /* Used to initialize an instance of FT_Glyph_Class struct. */ + /* When FT_CONFIG_OPTION_PIC is defined an init funtion will need to */ + /* called with a pre-allocated stracture to be filled. */ + /* When FT_CONFIG_OPTION_PIC is not defined the struct will be */ + /* allocated in the global scope (or the scope where the macro */ + /* is used). */ + /* */ +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_GLYPH(class_, size_, format_, init_, done_, copy_, \ + transform_, bbox_, prepare_) \ + FT_CALLBACK_TABLE_DEF \ + const FT_Glyph_Class class_ = \ + { \ + size_, format_, init_, done_, copy_, transform_, bbox_, prepare_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_GLYPH(class_, size_, format_, init_, done_, copy_, \ + transform_, bbox_, prepare_) \ + void \ + FT_Init_Class_##class_( FT_Glyph_Class* clazz ) \ + { \ + clazz->glyph_size = size_; \ + clazz->glyph_format = format_; \ + clazz->glyph_init = init_; \ + clazz->glyph_done = done_; \ + clazz->glyph_copy = copy_; \ + clazz->glyph_transform = transform_; \ + clazz->glyph_bbox = bbox_; \ + clazz->glyph_prepare = prepare_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_DECLARE_RENDERER */ + /* */ + /* <Description> */ + /* Used to create a forward declaration of a */ + /* FT_Renderer_Class stract instance. */ + /* */ + /* <Macro> */ + /* FT_DEFINE_RENDERER */ + /* */ + /* <Description> */ + /* Used to initialize an instance of FT_Renderer_Class struct. */ + /* */ + /* When FT_CONFIG_OPTION_PIC is defined a Create funtion will need */ + /* to called with a pointer where the allocated stracture is returned.*/ + /* And when it is no longer needed a Destroy function needs */ + /* to be called to release that allocation. */ + /* fcinit.c (ft_create_default_module_classes) already contains */ + /* a mechanism to call these functions for the default modules */ + /* described in ftmodule.h */ + /* */ + /* Notice that the created Create and Destroy functions call */ + /* pic_init and pic_free function to allow you to manually allocate */ + /* and initialize any additional global data, like module specific */ + /* interface, and put them in the global pic container defined in */ + /* ftpic.h. if you don't need them just implement the functions as */ + /* empty to resolve the link error. */ + /* */ + /* When FT_CONFIG_OPTION_PIC is not defined the struct will be */ + /* allocated in the global scope (or the scope where the macro */ + /* is used). */ + /* */ +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DECLARE_RENDERER(class_) \ + FT_EXPORT_VAR( const FT_Renderer_Class ) class_; + +#define FT_DEFINE_RENDERER(class_, \ + flags_, size_, name_, version_, requires_, \ + interface_, init_, done_, get_interface_, \ + glyph_format_, render_glyph_, transform_glyph_, \ + get_glyph_cbox_, set_mode_, raster_class_ ) \ + FT_CALLBACK_TABLE_DEF \ + const FT_Renderer_Class class_ = \ + { \ + FT_DEFINE_ROOT_MODULE(flags_,size_,name_,version_,requires_, \ + interface_,init_,done_,get_interface_) \ + glyph_format_, \ + \ + render_glyph_, \ + transform_glyph_, \ + get_glyph_cbox_, \ + set_mode_, \ + \ + raster_class_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DECLARE_RENDERER(class_) FT_DECLARE_MODULE(class_) + +#define FT_DEFINE_RENDERER(class_, \ + flags_, size_, name_, version_, requires_, \ + interface_, init_, done_, get_interface_, \ + glyph_format_, render_glyph_, transform_glyph_, \ + get_glyph_cbox_, set_mode_, raster_class_ ) \ + void class_##_pic_free( FT_Library library ); \ + FT_Error class_##_pic_init( FT_Library library ); \ + \ + void \ + FT_Destroy_Class_##class_( FT_Library library, \ + FT_Module_Class* clazz ) \ + { \ + FT_Renderer_Class* rclazz = (FT_Renderer_Class*)clazz; \ + FT_Memory memory = library->memory; \ + class_##_pic_free( library ); \ + if ( rclazz ) \ + FT_FREE( rclazz ); \ + } \ + \ + FT_Error \ + FT_Create_Class_##class_( FT_Library library, \ + FT_Module_Class** output_class ) \ + { \ + FT_Renderer_Class* clazz; \ + FT_Error error; \ + FT_Memory memory = library->memory; \ + \ + if ( FT_ALLOC( clazz, sizeof(*clazz) ) ) \ + return error; \ + \ + error = class_##_pic_init( library ); \ + if(error) \ + { \ + FT_FREE( clazz ); \ + return error; \ + } \ + \ + FT_DEFINE_ROOT_MODULE(flags_,size_,name_,version_,requires_, \ + interface_,init_,done_,get_interface_) \ + \ + clazz->glyph_format = glyph_format_; \ + \ + clazz->render_glyph = render_glyph_; \ + clazz->transform_glyph = transform_glyph_; \ + clazz->get_glyph_cbox = get_glyph_cbox_; \ + clazz->set_mode = set_mode_; \ + \ + clazz->raster_class = raster_class_; \ + \ + *output_class = (FT_Module_Class*)clazz; \ + return FT_Err_Ok; \ + } + + + +#endif /* FT_CONFIG_OPTION_PIC */ + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** PIC-Support Macros for ftmodapi.h ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + +#ifdef FT_CONFIG_OPTION_PIC + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Module_Creator */ + /* */ + /* <Description> */ + /* A function used to create (allocate) a new module class object. */ + /* The object's members are initialized, but the module itself is */ + /* not. */ + /* */ + /* <Input> */ + /* memory :: A handle to the memory manager. */ + /* output_class :: Initialized with the newly allocated class. */ + /* */ + typedef FT_Error + (*FT_Module_Creator)( FT_Memory memory, + FT_Module_Class** output_class ); + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* FT_Module_Destroyer */ + /* */ + /* <Description> */ + /* A function used to destroy (deallocate) a module class object. */ + /* */ + /* <Input> */ + /* memory :: A handle to the memory manager. */ + /* clazz :: Module class to destroy. */ + /* */ + typedef void + (*FT_Module_Destroyer)( FT_Memory memory, + FT_Module_Class* clazz ); + +#endif + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_DECLARE_MODULE */ + /* */ + /* <Description> */ + /* Used to create a forward declaration of a */ + /* FT_Module_Class stract instance. */ + /* */ + /* <Macro> */ + /* FT_DEFINE_MODULE */ + /* */ + /* <Description> */ + /* Used to initialize an instance of FT_Module_Class struct. */ + /* */ + /* When FT_CONFIG_OPTION_PIC is defined a Create funtion will need */ + /* to called with a pointer where the allocated stracture is returned.*/ + /* And when it is no longer needed a Destroy function needs */ + /* to be called to release that allocation. */ + /* fcinit.c (ft_create_default_module_classes) already contains */ + /* a mechanism to call these functions for the default modules */ + /* described in ftmodule.h */ + /* */ + /* Notice that the created Create and Destroy functions call */ + /* pic_init and pic_free function to allow you to manually allocate */ + /* and initialize any additional global data, like module specific */ + /* interface, and put them in the global pic container defined in */ + /* ftpic.h. if you don't need them just implement the functions as */ + /* empty to resolve the link error. */ + /* */ + /* When FT_CONFIG_OPTION_PIC is not defined the struct will be */ + /* allocated in the global scope (or the scope where the macro */ + /* is used). */ + /* */ + /* <Macro> */ + /* FT_DEFINE_ROOT_MODULE */ + /* */ + /* <Description> */ + /* Used to initialize an instance of FT_Module_Class struct inside */ + /* another stract that contains it or in a function that initializes */ + /* that containing stract */ + /* */ +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DECLARE_MODULE(class_) \ + FT_CALLBACK_TABLE \ + const FT_Module_Class class_; \ + +#define FT_DEFINE_ROOT_MODULE(flags_, size_, name_, version_, requires_, \ + interface_, init_, done_, get_interface_) \ + { \ + flags_, \ + size_, \ + \ + name_, \ + version_, \ + requires_, \ + \ + interface_, \ + \ + init_, \ + done_, \ + get_interface_, \ + }, + +#define FT_DEFINE_MODULE(class_, flags_, size_, name_, version_, requires_, \ + interface_, init_, done_, get_interface_) \ + FT_CALLBACK_TABLE_DEF \ + const FT_Module_Class class_ = \ + { \ + flags_, \ + size_, \ + \ + name_, \ + version_, \ + requires_, \ + \ + interface_, \ + \ + init_, \ + done_, \ + get_interface_, \ + }; + + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DECLARE_MODULE(class_) \ + FT_Error FT_Create_Class_##class_( FT_Library library, \ + FT_Module_Class** output_class ); \ + void FT_Destroy_Class_##class_( FT_Library library, \ + FT_Module_Class* clazz ); + +#define FT_DEFINE_ROOT_MODULE(flags_, size_, name_, version_, requires_, \ + interface_, init_, done_, get_interface_) \ + clazz->root.module_flags = flags_; \ + clazz->root.module_size = size_; \ + clazz->root.module_name = name_; \ + clazz->root.module_version = version_; \ + clazz->root.module_requires = requires_; \ + \ + clazz->root.module_interface = interface_; \ + \ + clazz->root.module_init = init_; \ + clazz->root.module_done = done_; \ + clazz->root.get_interface = get_interface_; + +#define FT_DEFINE_MODULE(class_, flags_, size_, name_, version_, requires_, \ + interface_, init_, done_, get_interface_) \ + void class_##_pic_free( FT_Library library ); \ + FT_Error class_##_pic_init( FT_Library library ); \ + \ + void \ + FT_Destroy_Class_##class_( FT_Library library, \ + FT_Module_Class* clazz ) \ + { \ + FT_Memory memory = library->memory; \ + class_##_pic_free( library ); \ + if ( clazz ) \ + FT_FREE( clazz ); \ + } \ + \ + FT_Error \ + FT_Create_Class_##class_( FT_Library library, \ + FT_Module_Class** output_class ) \ + { \ + FT_Memory memory = library->memory; \ + FT_Module_Class* clazz; \ + FT_Error error; \ + \ + if ( FT_ALLOC( clazz, sizeof(*clazz) ) ) \ + return error; \ + error = class_##_pic_init( library ); \ + if(error) \ + { \ + FT_FREE( clazz ); \ + return error; \ + } \ + \ + clazz->module_flags = flags_; \ + clazz->module_size = size_; \ + clazz->module_name = name_; \ + clazz->module_version = version_; \ + clazz->module_requires = requires_; \ + \ + clazz->module_interface = interface_; \ + \ + clazz->module_init = init_; \ + clazz->module_done = done_; \ + clazz->get_interface = get_interface_; \ + \ + *output_class = clazz; \ + return FT_Err_Ok; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + +FT_END_HEADER + +#endif /* __FTOBJS_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftpic.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftpic.h new file mode 100644 index 0000000000..1b31957d70 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftpic.h @@ -0,0 +1,67 @@ +/***************************************************************************/ +/* */ +/* ftpic.h */ +/* */ +/* The FreeType position independent code services (declaration). */ +/* */ +/* Copyright 2009 by */ +/* Oran Agra and Mickey Gabel. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + /*************************************************************************/ + /* */ + /* Modules that ordinarily have const global data that need address */ + /* can instead define pointers here. */ + /* */ + /*************************************************************************/ + + +#ifndef __FTPIC_H__ +#define __FTPIC_H__ + + +FT_BEGIN_HEADER + +#ifdef FT_CONFIG_OPTION_PIC + + typedef struct FT_PIC_Container_ + { + /* pic containers for base */ + void* base; + /* pic containers for modules */ + void* autofit; + void* cff; + void* pshinter; + void* psnames; + void* raster; + void* sfnt; + void* smooth; + void* truetype; + } FT_PIC_Container; + + /* Initialize the various function tables, structs, etc. stored in the container. */ + FT_BASE( FT_Error ) + ft_pic_container_init( FT_Library library ); + + + /* Destroy the contents of the container. */ + FT_BASE( void ) + ft_pic_container_destroy( FT_Library library ); + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + +FT_END_HEADER + +#endif /* __FTPIC_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftrfork.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftrfork.h new file mode 100644 index 0000000000..aa573c8705 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftrfork.h @@ -0,0 +1,196 @@ +/***************************************************************************/ +/* */ +/* ftrfork.h */ +/* */ +/* Embedded resource forks accessor (specification). */ +/* */ +/* Copyright 2004, 2006, 2007 by */ +/* Masatake YAMATO and Redhat K.K. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + +/***************************************************************************/ +/* Development of the code in this file is support of */ +/* Information-technology Promotion Agency, Japan. */ +/***************************************************************************/ + + +#ifndef __FTRFORK_H__ +#define __FTRFORK_H__ + + +#include <ft2build.h> +#include FT_INTERNAL_OBJECTS_H + + +FT_BEGIN_HEADER + + + /* Number of guessing rules supported in `FT_Raccess_Guess'. */ + /* Don't forget to increment the number if you add a new guessing rule. */ +#define FT_RACCESS_N_RULES 9 + + + /* A structure to describe a reference in a resource by its resource ID */ + /* and internal offset. The `POST' resource expects to be concatenated */ + /* by the order of resource IDs instead of its appearance in the file. */ + + typedef struct FT_RFork_Ref_ + { + FT_UShort res_id; + FT_ULong offset; + + } FT_RFork_Ref; + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Raccess_Guess */ + /* */ + /* <Description> */ + /* Guess a file name and offset where the actual resource fork is */ + /* stored. The macro FT_RACCESS_N_RULES holds the number of */ + /* guessing rules; the guessed result for the Nth rule is */ + /* represented as a triplet: a new file name (new_names[N]), a file */ + /* offset (offsets[N]), and an error code (errors[N]). */ + /* */ + /* <Input> */ + /* library :: */ + /* A FreeType library instance. */ + /* */ + /* stream :: */ + /* A file stream containing the resource fork. */ + /* */ + /* base_name :: */ + /* The (base) file name of the resource fork used for some */ + /* guessing rules. */ + /* */ + /* <Output> */ + /* new_names :: */ + /* An array of guessed file names in which the resource forks may */ + /* exist. If `new_names[N]' is NULL, the guessed file name is */ + /* equal to `base_name'. */ + /* */ + /* offsets :: */ + /* An array of guessed file offsets. `offsets[N]' holds the file */ + /* offset of the possible start of the resource fork in file */ + /* `new_names[N]'. */ + /* */ + /* errors :: */ + /* An array of FreeType error codes. `errors[N]' is the error */ + /* code of Nth guessing rule function. If `errors[N]' is not */ + /* FT_Err_Ok, `new_names[N]' and `offsets[N]' are meaningless. */ + /* */ + FT_BASE( void ) + FT_Raccess_Guess( FT_Library library, + FT_Stream stream, + char* base_name, + char** new_names, + FT_Long* offsets, + FT_Error* errors ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Raccess_Get_HeaderInfo */ + /* */ + /* <Description> */ + /* Get the information from the header of resource fork. The */ + /* information includes the file offset where the resource map */ + /* starts, and the file offset where the resource data starts. */ + /* `FT_Raccess_Get_DataOffsets' requires these two data. */ + /* */ + /* <Input> */ + /* library :: */ + /* A FreeType library instance. */ + /* */ + /* stream :: */ + /* A file stream containing the resource fork. */ + /* */ + /* rfork_offset :: */ + /* The file offset where the resource fork starts. */ + /* */ + /* <Output> */ + /* map_offset :: */ + /* The file offset where the resource map starts. */ + /* */ + /* rdata_pos :: */ + /* The file offset where the resource data starts. */ + /* */ + /* <Return> */ + /* FreeType error code. FT_Err_Ok means success. */ + /* */ + FT_BASE( FT_Error ) + FT_Raccess_Get_HeaderInfo( FT_Library library, + FT_Stream stream, + FT_Long rfork_offset, + FT_Long *map_offset, + FT_Long *rdata_pos ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Raccess_Get_DataOffsets */ + /* */ + /* <Description> */ + /* Get the data offsets for a tag in a resource fork. Offsets are */ + /* stored in an array because, in some cases, resources in a resource */ + /* fork have the same tag. */ + /* */ + /* <Input> */ + /* library :: */ + /* A FreeType library instance. */ + /* */ + /* stream :: */ + /* A file stream containing the resource fork. */ + /* */ + /* map_offset :: */ + /* The file offset where the resource map starts. */ + /* */ + /* rdata_pos :: */ + /* The file offset where the resource data starts. */ + /* */ + /* tag :: */ + /* The resource tag. */ + /* */ + /* <Output> */ + /* offsets :: */ + /* The stream offsets for the resource data specified by `tag'. */ + /* This array is allocated by the function, so you have to call */ + /* @ft_mem_free after use. */ + /* */ + /* count :: */ + /* The length of offsets array. */ + /* */ + /* <Return> */ + /* FreeType error code. FT_Err_Ok means success. */ + /* */ + /* <Note> */ + /* Normally you should use `FT_Raccess_Get_HeaderInfo' to get the */ + /* value for `map_offset' and `rdata_pos'. */ + /* */ + FT_BASE( FT_Error ) + FT_Raccess_Get_DataOffsets( FT_Library library, + FT_Stream stream, + FT_Long map_offset, + FT_Long rdata_pos, + FT_Long tag, + FT_Long **offsets, + FT_Long *count ); + + +FT_END_HEADER + +#endif /* __FTRFORK_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftserv.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftserv.h new file mode 100644 index 0000000000..569b9f7e0e --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftserv.h @@ -0,0 +1,620 @@ +/***************************************************************************/ +/* */ +/* ftserv.h */ +/* */ +/* The FreeType services (specification only). */ +/* */ +/* Copyright 2003, 2004, 2005, 2006, 2007 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + /*************************************************************************/ + /* */ + /* Each module can export one or more `services'. Each service is */ + /* identified by a constant string and modeled by a pointer; the latter */ + /* generally corresponds to a structure containing function pointers. */ + /* */ + /* Note that a service's data cannot be a mere function pointer because */ + /* in C it is possible that function pointers might be implemented */ + /* differently than data pointers (e.g. 48 bits instead of 32). */ + /* */ + /*************************************************************************/ + + +#ifndef __FTSERV_H__ +#define __FTSERV_H__ + + +FT_BEGIN_HEADER + +#if defined( _MSC_VER ) /* Visual C++ (and Intel C++) */ + + /* we disable the warning `conditional expression is constant' here */ + /* in order to compile cleanly with the maximum level of warnings */ +#pragma warning( disable : 4127 ) + +#endif /* _MSC_VER */ + + /* + * @macro: + * FT_FACE_FIND_SERVICE + * + * @description: + * This macro is used to look up a service from a face's driver module. + * + * @input: + * face :: + * The source face handle. + * + * id :: + * A string describing the service as defined in the service's + * header files (e.g. FT_SERVICE_ID_MULTI_MASTERS which expands to + * `multi-masters'). It is automatically prefixed with + * `FT_SERVICE_ID_'. + * + * @output: + * ptr :: + * A variable that receives the service pointer. Will be NULL + * if not found. + */ +#ifdef __cplusplus + +#define FT_FACE_FIND_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ + FT_Pointer _tmp_ = NULL; \ + FT_Pointer* _pptr_ = (FT_Pointer*)&(ptr); \ + \ + \ + if ( module->clazz->get_interface ) \ + _tmp_ = module->clazz->get_interface( module, FT_SERVICE_ID_ ## id ); \ + *_pptr_ = _tmp_; \ + FT_END_STMNT + +#else /* !C++ */ + +#define FT_FACE_FIND_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ + FT_Pointer _tmp_ = NULL; \ + \ + if ( module->clazz->get_interface ) \ + _tmp_ = module->clazz->get_interface( module, FT_SERVICE_ID_ ## id ); \ + ptr = _tmp_; \ + FT_END_STMNT + +#endif /* !C++ */ + + /* + * @macro: + * FT_FACE_FIND_GLOBAL_SERVICE + * + * @description: + * This macro is used to look up a service from all modules. + * + * @input: + * face :: + * The source face handle. + * + * id :: + * A string describing the service as defined in the service's + * header files (e.g. FT_SERVICE_ID_MULTI_MASTERS which expands to + * `multi-masters'). It is automatically prefixed with + * `FT_SERVICE_ID_'. + * + * @output: + * ptr :: + * A variable that receives the service pointer. Will be NULL + * if not found. + */ +#ifdef __cplusplus + +#define FT_FACE_FIND_GLOBAL_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ + FT_Pointer _tmp_; \ + FT_Pointer* _pptr_ = (FT_Pointer*)&(ptr); \ + \ + \ + _tmp_ = ft_module_get_service( module, FT_SERVICE_ID_ ## id ); \ + *_pptr_ = _tmp_; \ + FT_END_STMNT + +#else /* !C++ */ + +#define FT_FACE_FIND_GLOBAL_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ + FT_Pointer _tmp_; \ + \ + \ + _tmp_ = ft_module_get_service( module, FT_SERVICE_ID_ ## id ); \ + ptr = _tmp_; \ + FT_END_STMNT + +#endif /* !C++ */ + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** S E R V I C E D E S C R I P T O R S *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + /* + * The following structure is used to _describe_ a given service + * to the library. This is useful to build simple static service lists. + */ + typedef struct FT_ServiceDescRec_ + { + const char* serv_id; /* service name */ + const void* serv_data; /* service pointer/data */ + + } FT_ServiceDescRec; + + typedef const FT_ServiceDescRec* FT_ServiceDesc; + + /*************************************************************************/ + /* */ + /* <Macro> */ + /* FT_DEFINE_SERVICEDESCREC1 .. FT_DEFINE_SERVICEDESCREC6 */ + /* */ + /* <Description> */ + /* Used to initialize an array of FT_ServiceDescRec structs. */ + /* */ + /* When FT_CONFIG_OPTION_PIC is defined a Create funtion will need */ + /* to called with a pointer where the allocated array is returned. */ + /* And when it is no longer needed a Destroy function needs */ + /* to be called to release that allocation. */ + /* */ + /* These functions should be manyally called from the pic_init and */ + /* pic_free functions of your module (see FT_DEFINE_MODULE) */ + /* */ + /* When FT_CONFIG_OPTION_PIC is not defined the array will be */ + /* allocated in the global scope (or the scope where the macro */ + /* is used). */ + /* */ +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICEDESCREC1(class_, serv_id_1, serv_data_1) \ + static const FT_ServiceDescRec class_[] = \ + { \ + {serv_id_1, serv_data_1}, \ + {NULL, NULL} \ + }; +#define FT_DEFINE_SERVICEDESCREC2(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2) \ + static const FT_ServiceDescRec class_[] = \ + { \ + {serv_id_1, serv_data_1}, \ + {serv_id_2, serv_data_2}, \ + {NULL, NULL} \ + }; +#define FT_DEFINE_SERVICEDESCREC3(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, serv_id_3, serv_data_3) \ + static const FT_ServiceDescRec class_[] = \ + { \ + {serv_id_1, serv_data_1}, \ + {serv_id_2, serv_data_2}, \ + {serv_id_3, serv_data_3}, \ + {NULL, NULL} \ + }; +#define FT_DEFINE_SERVICEDESCREC4(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4) \ + static const FT_ServiceDescRec class_[] = \ + { \ + {serv_id_1, serv_data_1}, \ + {serv_id_2, serv_data_2}, \ + {serv_id_3, serv_data_3}, \ + {serv_id_4, serv_data_4}, \ + {NULL, NULL} \ + }; +#define FT_DEFINE_SERVICEDESCREC5(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4, serv_id_5, serv_data_5) \ + static const FT_ServiceDescRec class_[] = \ + { \ + {serv_id_1, serv_data_1}, \ + {serv_id_2, serv_data_2}, \ + {serv_id_3, serv_data_3}, \ + {serv_id_4, serv_data_4}, \ + {serv_id_5, serv_data_5}, \ + {NULL, NULL} \ + }; +#define FT_DEFINE_SERVICEDESCREC6(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4, serv_id_5, serv_data_5, \ + serv_id_6, serv_data_6) \ + static const FT_ServiceDescRec class_[] = \ + { \ + {serv_id_1, serv_data_1}, \ + {serv_id_2, serv_data_2}, \ + {serv_id_3, serv_data_3}, \ + {serv_id_4, serv_data_4}, \ + {serv_id_5, serv_data_5}, \ + {serv_id_6, serv_data_6}, \ + {NULL, NULL} \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICEDESCREC1(class_, serv_id_1, serv_data_1) \ + void \ + FT_Destroy_Class_##class_( FT_Library library, \ + FT_ServiceDescRec* clazz ) \ + { \ + FT_Memory memory = library->memory; \ + if ( clazz ) \ + FT_FREE( clazz ); \ + } \ + \ + FT_Error \ + FT_Create_Class_##class_( FT_Library library, \ + FT_ServiceDescRec** output_class) \ + { \ + FT_ServiceDescRec* clazz; \ + FT_Error error; \ + FT_Memory memory = library->memory; \ + \ + if ( FT_ALLOC( clazz, sizeof(*clazz)*2 ) ) \ + return error; \ + clazz[0].serv_id = serv_id_1; \ + clazz[0].serv_data = serv_data_1; \ + clazz[1].serv_id = NULL; \ + clazz[1].serv_data = NULL; \ + *output_class = clazz; \ + return FT_Err_Ok; \ + } + +#define FT_DEFINE_SERVICEDESCREC2(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2) \ + void \ + FT_Destroy_Class_##class_( FT_Library library, \ + FT_ServiceDescRec* clazz ) \ + { \ + FT_Memory memory = library->memory; \ + if ( clazz ) \ + FT_FREE( clazz ); \ + } \ + \ + FT_Error \ + FT_Create_Class_##class_( FT_Library library, \ + FT_ServiceDescRec** output_class) \ + { \ + FT_ServiceDescRec* clazz; \ + FT_Error error; \ + FT_Memory memory = library->memory; \ + \ + if ( FT_ALLOC( clazz, sizeof(*clazz)*3 ) ) \ + return error; \ + clazz[0].serv_id = serv_id_1; \ + clazz[0].serv_data = serv_data_1; \ + clazz[1].serv_id = serv_id_2; \ + clazz[1].serv_data = serv_data_2; \ + clazz[2].serv_id = NULL; \ + clazz[2].serv_data = NULL; \ + *output_class = clazz; \ + return FT_Err_Ok; \ + } + +#define FT_DEFINE_SERVICEDESCREC3(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, serv_id_3, serv_data_3) \ + void \ + FT_Destroy_Class_##class_( FT_Library library, \ + FT_ServiceDescRec* clazz ) \ + { \ + FT_Memory memory = library->memory; \ + if ( clazz ) \ + FT_FREE( clazz ); \ + } \ + \ + FT_Error \ + FT_Create_Class_##class_( FT_Library library, \ + FT_ServiceDescRec** output_class) \ + { \ + FT_ServiceDescRec* clazz; \ + FT_Error error; \ + FT_Memory memory = library->memory; \ + \ + if ( FT_ALLOC( clazz, sizeof(*clazz)*4 ) ) \ + return error; \ + clazz[0].serv_id = serv_id_1; \ + clazz[0].serv_data = serv_data_1; \ + clazz[1].serv_id = serv_id_2; \ + clazz[1].serv_data = serv_data_2; \ + clazz[2].serv_id = serv_id_3; \ + clazz[2].serv_data = serv_data_3; \ + clazz[3].serv_id = NULL; \ + clazz[3].serv_data = NULL; \ + *output_class = clazz; \ + return FT_Err_Ok; \ + } + +#define FT_DEFINE_SERVICEDESCREC4(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4) \ + void \ + FT_Destroy_Class_##class_( FT_Library library, \ + FT_ServiceDescRec* clazz ) \ + { \ + FT_Memory memory = library->memory; \ + if ( clazz ) \ + FT_FREE( clazz ); \ + } \ + \ + FT_Error \ + FT_Create_Class_##class_( FT_Library library, \ + FT_ServiceDescRec** output_class) \ + { \ + FT_ServiceDescRec* clazz; \ + FT_Error error; \ + FT_Memory memory = library->memory; \ + \ + if ( FT_ALLOC( clazz, sizeof(*clazz)*5 ) ) \ + return error; \ + clazz[0].serv_id = serv_id_1; \ + clazz[0].serv_data = serv_data_1; \ + clazz[1].serv_id = serv_id_2; \ + clazz[1].serv_data = serv_data_2; \ + clazz[2].serv_id = serv_id_3; \ + clazz[2].serv_data = serv_data_3; \ + clazz[3].serv_id = serv_id_4; \ + clazz[3].serv_data = serv_data_4; \ + clazz[4].serv_id = NULL; \ + clazz[4].serv_data = NULL; \ + *output_class = clazz; \ + return FT_Err_Ok; \ + } + +#define FT_DEFINE_SERVICEDESCREC5(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, serv_id_3, serv_data_3, serv_id_4, \ + serv_data_4, serv_id_5, serv_data_5) \ + void \ + FT_Destroy_Class_##class_( FT_Library library, \ + FT_ServiceDescRec* clazz ) \ + { \ + FT_Memory memory = library->memory; \ + if ( clazz ) \ + FT_FREE( clazz ); \ + } \ + \ + FT_Error \ + FT_Create_Class_##class_( FT_Library library, \ + FT_ServiceDescRec** output_class) \ + { \ + FT_ServiceDescRec* clazz; \ + FT_Error error; \ + FT_Memory memory = library->memory; \ + \ + if ( FT_ALLOC( clazz, sizeof(*clazz)*6 ) ) \ + return error; \ + clazz[0].serv_id = serv_id_1; \ + clazz[0].serv_data = serv_data_1; \ + clazz[1].serv_id = serv_id_2; \ + clazz[1].serv_data = serv_data_2; \ + clazz[2].serv_id = serv_id_3; \ + clazz[2].serv_data = serv_data_3; \ + clazz[3].serv_id = serv_id_4; \ + clazz[3].serv_data = serv_data_4; \ + clazz[4].serv_id = serv_id_5; \ + clazz[4].serv_data = serv_data_5; \ + clazz[5].serv_id = NULL; \ + clazz[5].serv_data = NULL; \ + *output_class = clazz; \ + return FT_Err_Ok; \ + } + +#define FT_DEFINE_SERVICEDESCREC6(class_, serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4, serv_id_5, serv_data_5, \ + serv_id_6, serv_data_6) \ + void \ + FT_Destroy_Class_##class_( FT_Library library, \ + FT_ServiceDescRec* clazz ) \ + { \ + FT_Memory memory = library->memory; \ + if ( clazz ) \ + FT_FREE( clazz ); \ + } \ + \ + FT_Error \ + FT_Create_Class_##class_( FT_Library library, \ + FT_ServiceDescRec** output_class) \ + { \ + FT_ServiceDescRec* clazz; \ + FT_Error error; \ + FT_Memory memory = library->memory; \ + \ + if ( FT_ALLOC( clazz, sizeof(*clazz)*7 ) ) \ + return error; \ + clazz[0].serv_id = serv_id_1; \ + clazz[0].serv_data = serv_data_1; \ + clazz[1].serv_id = serv_id_2; \ + clazz[1].serv_data = serv_data_2; \ + clazz[2].serv_id = serv_id_3; \ + clazz[2].serv_data = serv_data_3; \ + clazz[3].serv_id = serv_id_4; \ + clazz[3].serv_data = serv_data_4; \ + clazz[4].serv_id = serv_id_5; \ + clazz[4].serv_data = serv_data_5; \ + clazz[5].serv_id = serv_id_6; \ + clazz[5].serv_data = serv_data_6; \ + clazz[6].serv_id = NULL; \ + clazz[6].serv_data = NULL; \ + *output_class = clazz; \ + return FT_Err_Ok; \ + } +#endif /* FT_CONFIG_OPTION_PIC */ + + /* + * Parse a list of FT_ServiceDescRec descriptors and look for + * a specific service by ID. Note that the last element in the + * array must be { NULL, NULL }, and that the function should + * return NULL if the service isn't available. + * + * This function can be used by modules to implement their + * `get_service' method. + */ + FT_BASE( FT_Pointer ) + ft_service_list_lookup( FT_ServiceDesc service_descriptors, + const char* service_id ); + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** S E R V I C E S C A C H E *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + /* + * This structure is used to store a cache for several frequently used + * services. It is the type of `face->internal->services'. You + * should only use FT_FACE_LOOKUP_SERVICE to access it. + * + * All fields should have the type FT_Pointer to relax compilation + * dependencies. We assume the developer isn't completely stupid. + * + * Each field must be named `service_XXXX' where `XXX' corresponds to + * the correct FT_SERVICE_ID_XXXX macro. See the definition of + * FT_FACE_LOOKUP_SERVICE below how this is implemented. + * + */ + typedef struct FT_ServiceCacheRec_ + { + FT_Pointer service_POSTSCRIPT_FONT_NAME; + FT_Pointer service_MULTI_MASTERS; + FT_Pointer service_GLYPH_DICT; + FT_Pointer service_PFR_METRICS; + FT_Pointer service_WINFNT; + + } FT_ServiceCacheRec, *FT_ServiceCache; + + + /* + * A magic number used within the services cache. + */ +#define FT_SERVICE_UNAVAILABLE ((FT_Pointer)-2) /* magic number */ + + + /* + * @macro: + * FT_FACE_LOOKUP_SERVICE + * + * @description: + * This macro is used to lookup a service from a face's driver module + * using its cache. + * + * @input: + * face:: + * The source face handle containing the cache. + * + * field :: + * The field name in the cache. + * + * id :: + * The service ID. + * + * @output: + * ptr :: + * A variable receiving the service data. NULL if not available. + */ +#ifdef __cplusplus + +#define FT_FACE_LOOKUP_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Pointer svc; \ + FT_Pointer* Pptr = (FT_Pointer*)&(ptr); \ + \ + \ + svc = FT_FACE( face )->internal->services. service_ ## id; \ + if ( svc == FT_SERVICE_UNAVAILABLE ) \ + svc = NULL; \ + else if ( svc == NULL ) \ + { \ + FT_FACE_FIND_SERVICE( face, svc, id ); \ + \ + FT_FACE( face )->internal->services. service_ ## id = \ + (FT_Pointer)( svc != NULL ? svc \ + : FT_SERVICE_UNAVAILABLE ); \ + } \ + *Pptr = svc; \ + FT_END_STMNT + +#else /* !C++ */ + +#define FT_FACE_LOOKUP_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Pointer svc; \ + \ + \ + svc = FT_FACE( face )->internal->services. service_ ## id; \ + if ( svc == FT_SERVICE_UNAVAILABLE ) \ + svc = NULL; \ + else if ( svc == NULL ) \ + { \ + FT_FACE_FIND_SERVICE( face, svc, id ); \ + \ + FT_FACE( face )->internal->services. service_ ## id = \ + (FT_Pointer)( svc != NULL ? svc \ + : FT_SERVICE_UNAVAILABLE ); \ + } \ + ptr = svc; \ + FT_END_STMNT + +#endif /* !C++ */ + + /* + * A macro used to define new service structure types. + */ + +#define FT_DEFINE_SERVICE( name ) \ + typedef struct FT_Service_ ## name ## Rec_ \ + FT_Service_ ## name ## Rec ; \ + typedef struct FT_Service_ ## name ## Rec_ \ + const * FT_Service_ ## name ; \ + struct FT_Service_ ## name ## Rec_ + + /* */ + + /* + * The header files containing the services. + */ + +#define FT_SERVICE_BDF_H <freetype/internal/services/svbdf.h> +#define FT_SERVICE_CID_H <freetype/internal/services/svcid.h> +#define FT_SERVICE_GLYPH_DICT_H <freetype/internal/services/svgldict.h> +#define FT_SERVICE_GX_VALIDATE_H <freetype/internal/services/svgxval.h> +#define FT_SERVICE_KERNING_H <freetype/internal/services/svkern.h> +#define FT_SERVICE_MULTIPLE_MASTERS_H <freetype/internal/services/svmm.h> +#define FT_SERVICE_OPENTYPE_VALIDATE_H <freetype/internal/services/svotval.h> +#define FT_SERVICE_PFR_H <freetype/internal/services/svpfr.h> +#define FT_SERVICE_POSTSCRIPT_CMAPS_H <freetype/internal/services/svpscmap.h> +#define FT_SERVICE_POSTSCRIPT_INFO_H <freetype/internal/services/svpsinfo.h> +#define FT_SERVICE_POSTSCRIPT_NAME_H <freetype/internal/services/svpostnm.h> +#define FT_SERVICE_SFNT_H <freetype/internal/services/svsfnt.h> +#define FT_SERVICE_TRUETYPE_ENGINE_H <freetype/internal/services/svtteng.h> +#define FT_SERVICE_TT_CMAP_H <freetype/internal/services/svttcmap.h> +#define FT_SERVICE_WINFNT_H <freetype/internal/services/svwinfnt.h> +#define FT_SERVICE_XFREE86_NAME_H <freetype/internal/services/svxf86nm.h> +#define FT_SERVICE_TRUETYPE_GLYF_H <freetype/internal/services/svttglyf.h> + + /* */ + +FT_END_HEADER + +#endif /* __FTSERV_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftstream.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftstream.h new file mode 100644 index 0000000000..8b185005f5 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftstream.h @@ -0,0 +1,539 @@ +/***************************************************************************/ +/* */ +/* ftstream.h */ +/* */ +/* Stream handling (specification). */ +/* */ +/* Copyright 1996-2002, 2004-2006, 2011 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTSTREAM_H__ +#define __FTSTREAM_H__ + + +#include <ft2build.h> +#include FT_SYSTEM_H +#include FT_INTERNAL_OBJECTS_H + + +FT_BEGIN_HEADER + + + /* format of an 8-bit frame_op value: */ + /* */ + /* bit 76543210 */ + /* xxxxxxes */ + /* */ + /* s is set to 1 if the value is signed. */ + /* e is set to 1 if the value is little-endian. */ + /* xxx is a command. */ + +#define FT_FRAME_OP_SHIFT 2 +#define FT_FRAME_OP_SIGNED 1 +#define FT_FRAME_OP_LITTLE 2 +#define FT_FRAME_OP_COMMAND( x ) ( x >> FT_FRAME_OP_SHIFT ) + +#define FT_MAKE_FRAME_OP( command, little, sign ) \ + ( ( command << FT_FRAME_OP_SHIFT ) | ( little << 1 ) | sign ) + +#define FT_FRAME_OP_END 0 +#define FT_FRAME_OP_START 1 /* start a new frame */ +#define FT_FRAME_OP_BYTE 2 /* read 1-byte value */ +#define FT_FRAME_OP_SHORT 3 /* read 2-byte value */ +#define FT_FRAME_OP_LONG 4 /* read 4-byte value */ +#define FT_FRAME_OP_OFF3 5 /* read 3-byte value */ +#define FT_FRAME_OP_BYTES 6 /* read a bytes sequence */ + + + typedef enum FT_Frame_Op_ + { + ft_frame_end = 0, + ft_frame_start = FT_MAKE_FRAME_OP( FT_FRAME_OP_START, 0, 0 ), + + ft_frame_byte = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 0 ), + ft_frame_schar = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 1 ), + + ft_frame_ushort_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 0 ), + ft_frame_short_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 1 ), + ft_frame_ushort_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 0 ), + ft_frame_short_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 1 ), + + ft_frame_ulong_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 0 ), + ft_frame_long_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 1 ), + ft_frame_ulong_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 0 ), + ft_frame_long_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 1 ), + + ft_frame_uoff3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 0 ), + ft_frame_off3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 1 ), + ft_frame_uoff3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 0 ), + ft_frame_off3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 1 ), + + ft_frame_bytes = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 0 ), + ft_frame_skip = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 1 ) + + } FT_Frame_Op; + + + typedef struct FT_Frame_Field_ + { + FT_Byte value; + FT_Byte size; + FT_UShort offset; + + } FT_Frame_Field; + + + /* Construct an FT_Frame_Field out of a structure type and a field name. */ + /* The structure type must be set in the FT_STRUCTURE macro before */ + /* calling the FT_FRAME_START() macro. */ + /* */ +#define FT_FIELD_SIZE( f ) \ + (FT_Byte)sizeof ( ((FT_STRUCTURE*)0)->f ) + +#define FT_FIELD_SIZE_DELTA( f ) \ + (FT_Byte)sizeof ( ((FT_STRUCTURE*)0)->f[0] ) + +#define FT_FIELD_OFFSET( f ) \ + (FT_UShort)( offsetof( FT_STRUCTURE, f ) ) + +#define FT_FRAME_FIELD( frame_op, field ) \ + { \ + frame_op, \ + FT_FIELD_SIZE( field ), \ + FT_FIELD_OFFSET( field ) \ + } + +#define FT_MAKE_EMPTY_FIELD( frame_op ) { frame_op, 0, 0 } + +#define FT_FRAME_START( size ) { ft_frame_start, 0, size } +#define FT_FRAME_END { ft_frame_end, 0, 0 } + +#define FT_FRAME_LONG( f ) FT_FRAME_FIELD( ft_frame_long_be, f ) +#define FT_FRAME_ULONG( f ) FT_FRAME_FIELD( ft_frame_ulong_be, f ) +#define FT_FRAME_SHORT( f ) FT_FRAME_FIELD( ft_frame_short_be, f ) +#define FT_FRAME_USHORT( f ) FT_FRAME_FIELD( ft_frame_ushort_be, f ) +#define FT_FRAME_OFF3( f ) FT_FRAME_FIELD( ft_frame_off3_be, f ) +#define FT_FRAME_UOFF3( f ) FT_FRAME_FIELD( ft_frame_uoff3_be, f ) +#define FT_FRAME_BYTE( f ) FT_FRAME_FIELD( ft_frame_byte, f ) +#define FT_FRAME_CHAR( f ) FT_FRAME_FIELD( ft_frame_schar, f ) + +#define FT_FRAME_LONG_LE( f ) FT_FRAME_FIELD( ft_frame_long_le, f ) +#define FT_FRAME_ULONG_LE( f ) FT_FRAME_FIELD( ft_frame_ulong_le, f ) +#define FT_FRAME_SHORT_LE( f ) FT_FRAME_FIELD( ft_frame_short_le, f ) +#define FT_FRAME_USHORT_LE( f ) FT_FRAME_FIELD( ft_frame_ushort_le, f ) +#define FT_FRAME_OFF3_LE( f ) FT_FRAME_FIELD( ft_frame_off3_le, f ) +#define FT_FRAME_UOFF3_LE( f ) FT_FRAME_FIELD( ft_frame_uoff3_le, f ) + +#define FT_FRAME_SKIP_LONG { ft_frame_long_be, 0, 0 } +#define FT_FRAME_SKIP_SHORT { ft_frame_short_be, 0, 0 } +#define FT_FRAME_SKIP_BYTE { ft_frame_byte, 0, 0 } + +#define FT_FRAME_BYTES( field, count ) \ + { \ + ft_frame_bytes, \ + count, \ + FT_FIELD_OFFSET( field ) \ + } + +#define FT_FRAME_SKIP_BYTES( count ) { ft_frame_skip, count, 0 } + + + /*************************************************************************/ + /* */ + /* Integer extraction macros -- the `buffer' parameter must ALWAYS be of */ + /* type `char*' or equivalent (1-byte elements). */ + /* */ + +#define FT_BYTE_( p, i ) ( ((const FT_Byte*)(p))[(i)] ) +#define FT_INT8_( p, i ) ( ((const FT_Char*)(p))[(i)] ) + +#define FT_INT16( x ) ( (FT_Int16)(x) ) +#define FT_UINT16( x ) ( (FT_UInt16)(x) ) +#define FT_INT32( x ) ( (FT_Int32)(x) ) +#define FT_UINT32( x ) ( (FT_UInt32)(x) ) + +#define FT_BYTE_I16( p, i, s ) ( FT_INT16( FT_BYTE_( p, i ) ) << (s) ) +#define FT_BYTE_U16( p, i, s ) ( FT_UINT16( FT_BYTE_( p, i ) ) << (s) ) +#define FT_BYTE_I32( p, i, s ) ( FT_INT32( FT_BYTE_( p, i ) ) << (s) ) +#define FT_BYTE_U32( p, i, s ) ( FT_UINT32( FT_BYTE_( p, i ) ) << (s) ) + +#define FT_INT8_I16( p, i, s ) ( FT_INT16( FT_INT8_( p, i ) ) << (s) ) +#define FT_INT8_U16( p, i, s ) ( FT_UINT16( FT_INT8_( p, i ) ) << (s) ) +#define FT_INT8_I32( p, i, s ) ( FT_INT32( FT_INT8_( p, i ) ) << (s) ) +#define FT_INT8_U32( p, i, s ) ( FT_UINT32( FT_INT8_( p, i ) ) << (s) ) + + +#define FT_PEEK_SHORT( p ) FT_INT16( FT_INT8_I16( p, 0, 8) | \ + FT_BYTE_I16( p, 1, 0) ) + +#define FT_PEEK_USHORT( p ) FT_UINT16( FT_BYTE_U16( p, 0, 8 ) | \ + FT_BYTE_U16( p, 1, 0 ) ) + +#define FT_PEEK_LONG( p ) FT_INT32( FT_INT8_I32( p, 0, 24 ) | \ + FT_BYTE_I32( p, 1, 16 ) | \ + FT_BYTE_I32( p, 2, 8 ) | \ + FT_BYTE_I32( p, 3, 0 ) ) + +#define FT_PEEK_ULONG( p ) FT_UINT32( FT_BYTE_U32( p, 0, 24 ) | \ + FT_BYTE_U32( p, 1, 16 ) | \ + FT_BYTE_U32( p, 2, 8 ) | \ + FT_BYTE_U32( p, 3, 0 ) ) + +#define FT_PEEK_OFF3( p ) FT_INT32( FT_INT8_I32( p, 0, 16 ) | \ + FT_BYTE_I32( p, 1, 8 ) | \ + FT_BYTE_I32( p, 2, 0 ) ) + +#define FT_PEEK_UOFF3( p ) FT_UINT32( FT_BYTE_U32( p, 0, 16 ) | \ + FT_BYTE_U32( p, 1, 8 ) | \ + FT_BYTE_U32( p, 2, 0 ) ) + +#define FT_PEEK_SHORT_LE( p ) FT_INT16( FT_INT8_I16( p, 1, 8 ) | \ + FT_BYTE_I16( p, 0, 0 ) ) + +#define FT_PEEK_USHORT_LE( p ) FT_UINT16( FT_BYTE_U16( p, 1, 8 ) | \ + FT_BYTE_U16( p, 0, 0 ) ) + +#define FT_PEEK_LONG_LE( p ) FT_INT32( FT_INT8_I32( p, 3, 24 ) | \ + FT_BYTE_I32( p, 2, 16 ) | \ + FT_BYTE_I32( p, 1, 8 ) | \ + FT_BYTE_I32( p, 0, 0 ) ) + +#define FT_PEEK_ULONG_LE( p ) FT_UINT32( FT_BYTE_U32( p, 3, 24 ) | \ + FT_BYTE_U32( p, 2, 16 ) | \ + FT_BYTE_U32( p, 1, 8 ) | \ + FT_BYTE_U32( p, 0, 0 ) ) + +#define FT_PEEK_OFF3_LE( p ) FT_INT32( FT_INT8_I32( p, 2, 16 ) | \ + FT_BYTE_I32( p, 1, 8 ) | \ + FT_BYTE_I32( p, 0, 0 ) ) + +#define FT_PEEK_UOFF3_LE( p ) FT_UINT32( FT_BYTE_U32( p, 2, 16 ) | \ + FT_BYTE_U32( p, 1, 8 ) | \ + FT_BYTE_U32( p, 0, 0 ) ) + + +#define FT_NEXT_CHAR( buffer ) \ + ( (signed char)*buffer++ ) + +#define FT_NEXT_BYTE( buffer ) \ + ( (unsigned char)*buffer++ ) + +#define FT_NEXT_SHORT( buffer ) \ + ( (short)( buffer += 2, FT_PEEK_SHORT( buffer - 2 ) ) ) + +#define FT_NEXT_USHORT( buffer ) \ + ( (unsigned short)( buffer += 2, FT_PEEK_USHORT( buffer - 2 ) ) ) + +#define FT_NEXT_OFF3( buffer ) \ + ( (long)( buffer += 3, FT_PEEK_OFF3( buffer - 3 ) ) ) + +#define FT_NEXT_UOFF3( buffer ) \ + ( (unsigned long)( buffer += 3, FT_PEEK_UOFF3( buffer - 3 ) ) ) + +#define FT_NEXT_LONG( buffer ) \ + ( (long)( buffer += 4, FT_PEEK_LONG( buffer - 4 ) ) ) + +#define FT_NEXT_ULONG( buffer ) \ + ( (unsigned long)( buffer += 4, FT_PEEK_ULONG( buffer - 4 ) ) ) + + +#define FT_NEXT_SHORT_LE( buffer ) \ + ( (short)( buffer += 2, FT_PEEK_SHORT_LE( buffer - 2 ) ) ) + +#define FT_NEXT_USHORT_LE( buffer ) \ + ( (unsigned short)( buffer += 2, FT_PEEK_USHORT_LE( buffer - 2 ) ) ) + +#define FT_NEXT_OFF3_LE( buffer ) \ + ( (long)( buffer += 3, FT_PEEK_OFF3_LE( buffer - 3 ) ) ) + +#define FT_NEXT_UOFF3_LE( buffer ) \ + ( (unsigned long)( buffer += 3, FT_PEEK_UOFF3_LE( buffer - 3 ) ) ) + +#define FT_NEXT_LONG_LE( buffer ) \ + ( (long)( buffer += 4, FT_PEEK_LONG_LE( buffer - 4 ) ) ) + +#define FT_NEXT_ULONG_LE( buffer ) \ + ( (unsigned long)( buffer += 4, FT_PEEK_ULONG_LE( buffer - 4 ) ) ) + + + /*************************************************************************/ + /* */ + /* Each GET_xxxx() macro uses an implicit `stream' variable. */ + /* */ +#if 0 +#define FT_GET_MACRO( type ) FT_NEXT_ ## type ( stream->cursor ) + +#define FT_GET_CHAR() FT_GET_MACRO( CHAR ) +#define FT_GET_BYTE() FT_GET_MACRO( BYTE ) +#define FT_GET_SHORT() FT_GET_MACRO( SHORT ) +#define FT_GET_USHORT() FT_GET_MACRO( USHORT ) +#define FT_GET_OFF3() FT_GET_MACRO( OFF3 ) +#define FT_GET_UOFF3() FT_GET_MACRO( UOFF3 ) +#define FT_GET_LONG() FT_GET_MACRO( LONG ) +#define FT_GET_ULONG() FT_GET_MACRO( ULONG ) +#define FT_GET_TAG4() FT_GET_MACRO( ULONG ) + +#define FT_GET_SHORT_LE() FT_GET_MACRO( SHORT_LE ) +#define FT_GET_USHORT_LE() FT_GET_MACRO( USHORT_LE ) +#define FT_GET_LONG_LE() FT_GET_MACRO( LONG_LE ) +#define FT_GET_ULONG_LE() FT_GET_MACRO( ULONG_LE ) + +#else +#define FT_GET_MACRO( func, type ) ( (type)func( stream ) ) + +#define FT_GET_CHAR() FT_GET_MACRO( FT_Stream_GetChar, FT_Char ) +#define FT_GET_BYTE() FT_GET_MACRO( FT_Stream_GetChar, FT_Byte ) +#define FT_GET_SHORT() FT_GET_MACRO( FT_Stream_GetUShort, FT_Short ) +#define FT_GET_USHORT() FT_GET_MACRO( FT_Stream_GetUShort, FT_UShort ) +#define FT_GET_OFF3() FT_GET_MACRO( FT_Stream_GetUOffset, FT_Long ) +#define FT_GET_UOFF3() FT_GET_MACRO( FT_Stream_GetUOffset, FT_ULong ) +#define FT_GET_LONG() FT_GET_MACRO( FT_Stream_GetULong, FT_Long ) +#define FT_GET_ULONG() FT_GET_MACRO( FT_Stream_GetULong, FT_ULong ) +#define FT_GET_TAG4() FT_GET_MACRO( FT_Stream_GetULong, FT_ULong ) + +#define FT_GET_SHORT_LE() FT_GET_MACRO( FT_Stream_GetUShortLE, FT_Short ) +#define FT_GET_USHORT_LE() FT_GET_MACRO( FT_Stream_GetUShortLE, FT_UShort ) +#define FT_GET_LONG_LE() FT_GET_MACRO( FT_Stream_GetULongLE, FT_Long ) +#define FT_GET_ULONG_LE() FT_GET_MACRO( FT_Stream_GetULongLE, FT_ULong ) +#endif + +#define FT_READ_MACRO( func, type, var ) \ + ( var = (type)func( stream, &error ), \ + error != FT_Err_Ok ) + +#define FT_READ_BYTE( var ) FT_READ_MACRO( FT_Stream_ReadChar, FT_Byte, var ) +#define FT_READ_CHAR( var ) FT_READ_MACRO( FT_Stream_ReadChar, FT_Char, var ) +#define FT_READ_SHORT( var ) FT_READ_MACRO( FT_Stream_ReadUShort, FT_Short, var ) +#define FT_READ_USHORT( var ) FT_READ_MACRO( FT_Stream_ReadUShort, FT_UShort, var ) +#define FT_READ_OFF3( var ) FT_READ_MACRO( FT_Stream_ReadUOffset, FT_Long, var ) +#define FT_READ_UOFF3( var ) FT_READ_MACRO( FT_Stream_ReadUOffset, FT_ULong, var ) +#define FT_READ_LONG( var ) FT_READ_MACRO( FT_Stream_ReadULong, FT_Long, var ) +#define FT_READ_ULONG( var ) FT_READ_MACRO( FT_Stream_ReadULong, FT_ULong, var ) + +#define FT_READ_SHORT_LE( var ) FT_READ_MACRO( FT_Stream_ReadUShortLE, FT_Short, var ) +#define FT_READ_USHORT_LE( var ) FT_READ_MACRO( FT_Stream_ReadUShortLE, FT_UShort, var ) +#define FT_READ_LONG_LE( var ) FT_READ_MACRO( FT_Stream_ReadULongLE, FT_Long, var ) +#define FT_READ_ULONG_LE( var ) FT_READ_MACRO( FT_Stream_ReadULongLE, FT_ULong, var ) + + +#ifndef FT_CONFIG_OPTION_NO_DEFAULT_SYSTEM + + /* initialize a stream for reading a regular system stream */ + FT_BASE( FT_Error ) + FT_Stream_Open( FT_Stream stream, + const char* filepathname ); + +#endif /* FT_CONFIG_OPTION_NO_DEFAULT_SYSTEM */ + + + /* create a new (input) stream from an FT_Open_Args structure */ + FT_BASE( FT_Error ) + FT_Stream_New( FT_Library library, + const FT_Open_Args* args, + FT_Stream *astream ); + + /* free a stream */ + FT_BASE( void ) + FT_Stream_Free( FT_Stream stream, + FT_Int external ); + + /* initialize a stream for reading in-memory data */ + FT_BASE( void ) + FT_Stream_OpenMemory( FT_Stream stream, + const FT_Byte* base, + FT_ULong size ); + + /* close a stream (does not destroy the stream structure) */ + FT_BASE( void ) + FT_Stream_Close( FT_Stream stream ); + + + /* seek within a stream. position is relative to start of stream */ + FT_BASE( FT_Error ) + FT_Stream_Seek( FT_Stream stream, + FT_ULong pos ); + + /* skip bytes in a stream */ + FT_BASE( FT_Error ) + FT_Stream_Skip( FT_Stream stream, + FT_Long distance ); + + /* return current stream position */ + FT_BASE( FT_Long ) + FT_Stream_Pos( FT_Stream stream ); + + /* read bytes from a stream into a user-allocated buffer, returns an */ + /* error if not all bytes could be read. */ + FT_BASE( FT_Error ) + FT_Stream_Read( FT_Stream stream, + FT_Byte* buffer, + FT_ULong count ); + + /* read bytes from a stream at a given position */ + FT_BASE( FT_Error ) + FT_Stream_ReadAt( FT_Stream stream, + FT_ULong pos, + FT_Byte* buffer, + FT_ULong count ); + + /* try to read bytes at the end of a stream; return number of bytes */ + /* really available */ + FT_BASE( FT_ULong ) + FT_Stream_TryRead( FT_Stream stream, + FT_Byte* buffer, + FT_ULong count ); + + /* Enter a frame of `count' consecutive bytes in a stream. Returns an */ + /* error if the frame could not be read/accessed. The caller can use */ + /* the FT_Stream_Get_XXX functions to retrieve frame data without */ + /* error checks. */ + /* */ + /* You must _always_ call FT_Stream_ExitFrame() once you have entered */ + /* a stream frame! */ + /* */ + FT_BASE( FT_Error ) + FT_Stream_EnterFrame( FT_Stream stream, + FT_ULong count ); + + /* exit a stream frame */ + FT_BASE( void ) + FT_Stream_ExitFrame( FT_Stream stream ); + + /* Extract a stream frame. If the stream is disk-based, a heap block */ + /* is allocated and the frame bytes are read into it. If the stream */ + /* is memory-based, this function simply set a pointer to the data. */ + /* */ + /* Useful to optimize access to memory-based streams transparently. */ + /* */ + /* All extracted frames must be `freed' with a call to the function */ + /* FT_Stream_ReleaseFrame(). */ + /* */ + FT_BASE( FT_Error ) + FT_Stream_ExtractFrame( FT_Stream stream, + FT_ULong count, + FT_Byte** pbytes ); + + /* release an extract frame (see FT_Stream_ExtractFrame) */ + FT_BASE( void ) + FT_Stream_ReleaseFrame( FT_Stream stream, + FT_Byte** pbytes ); + + /* read a byte from an entered frame */ + FT_BASE( FT_Char ) + FT_Stream_GetChar( FT_Stream stream ); + + /* read a 16-bit big-endian unsigned integer from an entered frame */ + FT_BASE( FT_UShort ) + FT_Stream_GetUShort( FT_Stream stream ); + + /* read a 24-bit big-endian unsigned integer from an entered frame */ + FT_BASE( FT_ULong ) + FT_Stream_GetUOffset( FT_Stream stream ); + + /* read a 32-bit big-endian unsigned integer from an entered frame */ + FT_BASE( FT_ULong ) + FT_Stream_GetULong( FT_Stream stream ); + + /* read a 16-bit little-endian unsigned integer from an entered frame */ + FT_BASE( FT_UShort ) + FT_Stream_GetUShortLE( FT_Stream stream ); + + /* read a 32-bit little-endian unsigned integer from an entered frame */ + FT_BASE( FT_ULong ) + FT_Stream_GetULongLE( FT_Stream stream ); + + + /* read a byte from a stream */ + FT_BASE( FT_Char ) + FT_Stream_ReadChar( FT_Stream stream, + FT_Error* error ); + + /* read a 16-bit big-endian unsigned integer from a stream */ + FT_BASE( FT_UShort ) + FT_Stream_ReadUShort( FT_Stream stream, + FT_Error* error ); + + /* read a 24-bit big-endian unsigned integer from a stream */ + FT_BASE( FT_ULong ) + FT_Stream_ReadUOffset( FT_Stream stream, + FT_Error* error ); + + /* read a 32-bit big-endian integer from a stream */ + FT_BASE( FT_ULong ) + FT_Stream_ReadULong( FT_Stream stream, + FT_Error* error ); + + /* read a 16-bit little-endian unsigned integer from a stream */ + FT_BASE( FT_UShort ) + FT_Stream_ReadUShortLE( FT_Stream stream, + FT_Error* error ); + + /* read a 32-bit little-endian unsigned integer from a stream */ + FT_BASE( FT_ULong ) + FT_Stream_ReadULongLE( FT_Stream stream, + FT_Error* error ); + + /* Read a structure from a stream. The structure must be described */ + /* by an array of FT_Frame_Field records. */ + FT_BASE( FT_Error ) + FT_Stream_ReadFields( FT_Stream stream, + const FT_Frame_Field* fields, + void* structure ); + + +#define FT_STREAM_POS() \ + FT_Stream_Pos( stream ) + +#define FT_STREAM_SEEK( position ) \ + FT_SET_ERROR( FT_Stream_Seek( stream, position ) ) + +#define FT_STREAM_SKIP( distance ) \ + FT_SET_ERROR( FT_Stream_Skip( stream, distance ) ) + +#define FT_STREAM_READ( buffer, count ) \ + FT_SET_ERROR( FT_Stream_Read( stream, \ + (FT_Byte*)buffer, \ + count ) ) + +#define FT_STREAM_READ_AT( position, buffer, count ) \ + FT_SET_ERROR( FT_Stream_ReadAt( stream, \ + position, \ + (FT_Byte*)buffer, \ + count ) ) + +#define FT_STREAM_READ_FIELDS( fields, object ) \ + FT_SET_ERROR( FT_Stream_ReadFields( stream, fields, object ) ) + + +#define FT_FRAME_ENTER( size ) \ + FT_SET_ERROR( \ + FT_DEBUG_INNER( FT_Stream_EnterFrame( stream, size ) ) ) + +#define FT_FRAME_EXIT() \ + FT_DEBUG_INNER( FT_Stream_ExitFrame( stream ) ) + +#define FT_FRAME_EXTRACT( size, bytes ) \ + FT_SET_ERROR( \ + FT_DEBUG_INNER( FT_Stream_ExtractFrame( stream, size, \ + (FT_Byte**)&(bytes) ) ) ) + +#define FT_FRAME_RELEASE( bytes ) \ + FT_DEBUG_INNER( FT_Stream_ReleaseFrame( stream, \ + (FT_Byte**)&(bytes) ) ) + + +FT_END_HEADER + +#endif /* __FTSTREAM_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/fttrace.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/fttrace.h new file mode 100644 index 0000000000..fbefdbdf49 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/fttrace.h @@ -0,0 +1,144 @@ +/***************************************************************************/ +/* */ +/* fttrace.h */ +/* */ +/* Tracing handling (specification only). */ +/* */ +/* Copyright 2002, 2004-2007, 2009, 2011 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /* definitions of trace levels for FreeType 2 */ + + /* the first level must always be `trace_any' */ +FT_TRACE_DEF( any ) + + /* base components */ +FT_TRACE_DEF( calc ) /* calculations (ftcalc.c) */ +FT_TRACE_DEF( memory ) /* memory manager (ftobjs.c) */ +FT_TRACE_DEF( stream ) /* stream manager (ftstream.c) */ +FT_TRACE_DEF( io ) /* i/o interface (ftsystem.c) */ +FT_TRACE_DEF( list ) /* list management (ftlist.c) */ +FT_TRACE_DEF( init ) /* initialization (ftinit.c) */ +FT_TRACE_DEF( objs ) /* base objects (ftobjs.c) */ +FT_TRACE_DEF( outline ) /* outline management (ftoutln.c) */ +FT_TRACE_DEF( glyph ) /* glyph management (ftglyph.c) */ +FT_TRACE_DEF( gloader ) /* glyph loader (ftgloadr.c) */ + +FT_TRACE_DEF( raster ) /* monochrome rasterizer (ftraster.c) */ +FT_TRACE_DEF( smooth ) /* anti-aliasing raster (ftgrays.c) */ +FT_TRACE_DEF( mm ) /* MM interface (ftmm.c) */ +FT_TRACE_DEF( raccess ) /* resource fork accessor (ftrfork.c) */ +FT_TRACE_DEF( synth ) /* bold/slant synthesizer (ftsynth.c) */ + + /* Cache sub-system */ +FT_TRACE_DEF( cache ) /* cache sub-system (ftcache.c, etc.) */ + + /* SFNT driver components */ +FT_TRACE_DEF( sfdriver ) /* SFNT font driver (sfdriver.c) */ +FT_TRACE_DEF( sfobjs ) /* SFNT object handler (sfobjs.c) */ +FT_TRACE_DEF( ttcmap ) /* charmap handler (ttcmap.c) */ +FT_TRACE_DEF( ttkern ) /* kerning handler (ttkern.c) */ +FT_TRACE_DEF( ttload ) /* basic TrueType tables (ttload.c) */ +FT_TRACE_DEF( ttmtx ) /* metrics-related tables (ttmtx.c) */ +FT_TRACE_DEF( ttpost ) /* PS table processing (ttpost.c) */ +FT_TRACE_DEF( ttsbit ) /* TrueType sbit handling (ttsbit.c) */ +FT_TRACE_DEF( ttbdf ) /* TrueType embedded BDF (ttbdf.c) */ + + /* TrueType driver components */ +FT_TRACE_DEF( ttdriver ) /* TT font driver (ttdriver.c) */ +FT_TRACE_DEF( ttgload ) /* TT glyph loader (ttgload.c) */ +FT_TRACE_DEF( ttinterp ) /* bytecode interpreter (ttinterp.c) */ +FT_TRACE_DEF( ttobjs ) /* TT objects manager (ttobjs.c) */ +FT_TRACE_DEF( ttpload ) /* TT data/program loader (ttpload.c) */ +FT_TRACE_DEF( ttgxvar ) /* TrueType GX var handler (ttgxvar.c) */ + + /* Type 1 driver components */ +FT_TRACE_DEF( t1afm ) +FT_TRACE_DEF( t1driver ) +FT_TRACE_DEF( t1gload ) +FT_TRACE_DEF( t1hint ) +FT_TRACE_DEF( t1load ) +FT_TRACE_DEF( t1objs ) +FT_TRACE_DEF( t1parse ) + + /* PostScript helper module `psaux' */ +FT_TRACE_DEF( t1decode ) +FT_TRACE_DEF( psobjs ) + + /* PostScript hinting module `pshinter' */ +FT_TRACE_DEF( pshrec ) +FT_TRACE_DEF( pshalgo1 ) +FT_TRACE_DEF( pshalgo2 ) + + /* Type 2 driver components */ +FT_TRACE_DEF( cffdriver ) +FT_TRACE_DEF( cffgload ) +FT_TRACE_DEF( cffload ) +FT_TRACE_DEF( cffobjs ) +FT_TRACE_DEF( cffparse ) + + /* Type 42 driver component */ +FT_TRACE_DEF( t42 ) + + /* CID driver components */ +FT_TRACE_DEF( cidafm ) +FT_TRACE_DEF( ciddriver ) +FT_TRACE_DEF( cidgload ) +FT_TRACE_DEF( cidload ) +FT_TRACE_DEF( cidobjs ) +FT_TRACE_DEF( cidparse ) + + /* Windows font component */ +FT_TRACE_DEF( winfnt ) + + /* PCF font components */ +FT_TRACE_DEF( pcfdriver ) +FT_TRACE_DEF( pcfread ) + + /* BDF font components */ +FT_TRACE_DEF( bdfdriver ) +FT_TRACE_DEF( bdflib ) + + /* PFR font component */ +FT_TRACE_DEF( pfr ) + + /* OpenType validation components */ +FT_TRACE_DEF( otvmodule ) +FT_TRACE_DEF( otvcommon ) +FT_TRACE_DEF( otvbase ) +FT_TRACE_DEF( otvgdef ) +FT_TRACE_DEF( otvgpos ) +FT_TRACE_DEF( otvgsub ) +FT_TRACE_DEF( otvjstf ) +FT_TRACE_DEF( otvmath ) + + /* TrueTypeGX/AAT validation components */ +FT_TRACE_DEF( gxvmodule ) +FT_TRACE_DEF( gxvcommon ) +FT_TRACE_DEF( gxvfeat ) +FT_TRACE_DEF( gxvmort ) +FT_TRACE_DEF( gxvmorx ) +FT_TRACE_DEF( gxvbsln ) +FT_TRACE_DEF( gxvjust ) +FT_TRACE_DEF( gxvkern ) +FT_TRACE_DEF( gxvopbd ) +FT_TRACE_DEF( gxvtrak ) +FT_TRACE_DEF( gxvprop ) +FT_TRACE_DEF( gxvlcar ) + + /* autofit components */ +FT_TRACE_DEF( afcjk ) +FT_TRACE_DEF( aflatin ) +FT_TRACE_DEF( aflatin2 ) +FT_TRACE_DEF( afwarp ) + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftvalid.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftvalid.h new file mode 100644 index 0000000000..00cd85e7bb --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/ftvalid.h @@ -0,0 +1,150 @@ +/***************************************************************************/ +/* */ +/* ftvalid.h */ +/* */ +/* FreeType validation support (specification). */ +/* */ +/* Copyright 2004 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __FTVALID_H__ +#define __FTVALID_H__ + +#include <ft2build.h> +#include FT_CONFIG_STANDARD_LIBRARY_H /* for ft_setjmp and ft_longjmp */ + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** V A L I D A T I O N ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + /* handle to a validation object */ + typedef struct FT_ValidatorRec_ volatile* FT_Validator; + + + /*************************************************************************/ + /* */ + /* There are three distinct validation levels defined here: */ + /* */ + /* FT_VALIDATE_DEFAULT :: */ + /* A table that passes this validation level can be used reliably by */ + /* FreeType. It generally means that all offsets have been checked to */ + /* prevent out-of-bound reads, that array counts are correct, etc. */ + /* */ + /* FT_VALIDATE_TIGHT :: */ + /* A table that passes this validation level can be used reliably and */ + /* doesn't contain invalid data. For example, a charmap table that */ + /* returns invalid glyph indices will not pass, even though it can */ + /* be used with FreeType in default mode (the library will simply */ + /* return an error later when trying to load the glyph). */ + /* */ + /* It also checks that fields which must be a multiple of 2, 4, or 8, */ + /* don't have incorrect values, etc. */ + /* */ + /* FT_VALIDATE_PARANOID :: */ + /* Only for font debugging. Checks that a table follows the */ + /* specification by 100%. Very few fonts will be able to pass this */ + /* level anyway but it can be useful for certain tools like font */ + /* editors/converters. */ + /* */ + typedef enum FT_ValidationLevel_ + { + FT_VALIDATE_DEFAULT = 0, + FT_VALIDATE_TIGHT, + FT_VALIDATE_PARANOID + + } FT_ValidationLevel; + + + /* validator structure */ + typedef struct FT_ValidatorRec_ + { + const FT_Byte* base; /* address of table in memory */ + const FT_Byte* limit; /* `base' + sizeof(table) in memory */ + FT_ValidationLevel level; /* validation level */ + FT_Error error; /* error returned. 0 means success */ + + ft_jmp_buf jump_buffer; /* used for exception handling */ + + } FT_ValidatorRec; + + +#define FT_VALIDATOR( x ) ((FT_Validator)( x )) + + + FT_BASE( void ) + ft_validator_init( FT_Validator valid, + const FT_Byte* base, + const FT_Byte* limit, + FT_ValidationLevel level ); + + /* Do not use this. It's broken and will cause your validator to crash */ + /* if you run it on an invalid font. */ + FT_BASE( FT_Int ) + ft_validator_run( FT_Validator valid ); + + /* Sets the error field in a validator, then calls `longjmp' to return */ + /* to high-level caller. Using `setjmp/longjmp' avoids many stupid */ + /* error checks within the validation routines. */ + /* */ + FT_BASE( void ) + ft_validator_error( FT_Validator valid, + FT_Error error ); + + + /* Calls ft_validate_error. Assumes that the `valid' local variable */ + /* holds a pointer to the current validator object. */ + /* */ + /* Use preprocessor prescan to pass FT_ERR_PREFIX. */ + /* */ +#define FT_INVALID( _prefix, _error ) FT_INVALID_( _prefix, _error ) +#define FT_INVALID_( _prefix, _error ) \ + ft_validator_error( valid, _prefix ## _error ) + + /* called when a broken table is detected */ +#define FT_INVALID_TOO_SHORT \ + FT_INVALID( FT_ERR_PREFIX, Invalid_Table ) + + /* called when an invalid offset is detected */ +#define FT_INVALID_OFFSET \ + FT_INVALID( FT_ERR_PREFIX, Invalid_Offset ) + + /* called when an invalid format/value is detected */ +#define FT_INVALID_FORMAT \ + FT_INVALID( FT_ERR_PREFIX, Invalid_Table ) + + /* called when an invalid glyph index is detected */ +#define FT_INVALID_GLYPH_ID \ + FT_INVALID( FT_ERR_PREFIX, Invalid_Glyph_Index ) + + /* called when an invalid field value is detected */ +#define FT_INVALID_DATA \ + FT_INVALID( FT_ERR_PREFIX, Invalid_Table ) + + +FT_END_HEADER + +#endif /* __FTVALID_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/internal.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/internal.h new file mode 100644 index 0000000000..f500a651c2 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/internal.h @@ -0,0 +1,51 @@ +/***************************************************************************/ +/* */ +/* internal.h */ +/* */ +/* Internal header files (specification only). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This file is automatically included by `ft2build.h'. */ + /* Do not include it manually! */ + /* */ + /*************************************************************************/ + + +#define FT_INTERNAL_OBJECTS_H <freetype/internal/ftobjs.h> +#define FT_INTERNAL_PIC_H <freetype/internal/ftpic.h> +#define FT_INTERNAL_STREAM_H <freetype/internal/ftstream.h> +#define FT_INTERNAL_MEMORY_H <freetype/internal/ftmemory.h> +#define FT_INTERNAL_DEBUG_H <freetype/internal/ftdebug.h> +#define FT_INTERNAL_CALC_H <freetype/internal/ftcalc.h> +#define FT_INTERNAL_DRIVER_H <freetype/internal/ftdriver.h> +#define FT_INTERNAL_TRACE_H <freetype/internal/fttrace.h> +#define FT_INTERNAL_GLYPH_LOADER_H <freetype/internal/ftgloadr.h> +#define FT_INTERNAL_SFNT_H <freetype/internal/sfnt.h> +#define FT_INTERNAL_SERVICE_H <freetype/internal/ftserv.h> +#define FT_INTERNAL_RFORK_H <freetype/internal/ftrfork.h> +#define FT_INTERNAL_VALIDATE_H <freetype/internal/ftvalid.h> + +#define FT_INTERNAL_TRUETYPE_TYPES_H <freetype/internal/tttypes.h> +#define FT_INTERNAL_TYPE1_TYPES_H <freetype/internal/t1types.h> + +#define FT_INTERNAL_POSTSCRIPT_AUX_H <freetype/internal/psaux.h> +#define FT_INTERNAL_POSTSCRIPT_HINTS_H <freetype/internal/pshints.h> +#define FT_INTERNAL_POSTSCRIPT_GLOBALS_H <freetype/internal/psglobal.h> + +#define FT_INTERNAL_AUTOHINT_H <freetype/internal/autohint.h> + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/psaux.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/psaux.h new file mode 100644 index 0000000000..a96e0dfa86 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/psaux.h @@ -0,0 +1,873 @@ +/***************************************************************************/ +/* */ +/* psaux.h */ +/* */ +/* Auxiliary functions and data structures related to PostScript fonts */ +/* (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004, 2006, 2008, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __PSAUX_H__ +#define __PSAUX_H__ + + +#include <ft2build.h> +#include FT_INTERNAL_OBJECTS_H +#include FT_INTERNAL_TYPE1_TYPES_H +#include FT_SERVICE_POSTSCRIPT_CMAPS_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1_TABLE *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + + typedef struct PS_TableRec_* PS_Table; + typedef const struct PS_Table_FuncsRec_* PS_Table_Funcs; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* PS_Table_FuncsRec */ + /* */ + /* <Description> */ + /* A set of function pointers to manage PS_Table objects. */ + /* */ + /* <Fields> */ + /* table_init :: Used to initialize a table. */ + /* */ + /* table_done :: Finalizes resp. destroy a given table. */ + /* */ + /* table_add :: Adds a new object to a table. */ + /* */ + /* table_release :: Releases table data, then finalizes it. */ + /* */ + typedef struct PS_Table_FuncsRec_ + { + FT_Error + (*init)( PS_Table table, + FT_Int count, + FT_Memory memory ); + + void + (*done)( PS_Table table ); + + FT_Error + (*add)( PS_Table table, + FT_Int idx, + void* object, + FT_PtrDist length ); + + void + (*release)( PS_Table table ); + + } PS_Table_FuncsRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* PS_TableRec */ + /* */ + /* <Description> */ + /* A PS_Table is a simple object used to store an array of objects in */ + /* a single memory block. */ + /* */ + /* <Fields> */ + /* block :: The address in memory of the growheap's block. This */ + /* can change between two object adds, due to */ + /* reallocation. */ + /* */ + /* cursor :: The current top of the grow heap within its block. */ + /* */ + /* capacity :: The current size of the heap block. Increments by */ + /* 1kByte chunks. */ + /* */ + /* max_elems :: The maximum number of elements in table. */ + /* */ + /* num_elems :: The current number of elements in table. */ + /* */ + /* elements :: A table of element addresses within the block. */ + /* */ + /* lengths :: A table of element sizes within the block. */ + /* */ + /* memory :: The object used for memory operations */ + /* (alloc/realloc). */ + /* */ + /* funcs :: A table of method pointers for this object. */ + /* */ + typedef struct PS_TableRec_ + { + FT_Byte* block; /* current memory block */ + FT_Offset cursor; /* current cursor in memory block */ + FT_Offset capacity; /* current size of memory block */ + FT_Long init; + + FT_Int max_elems; + FT_Int num_elems; + FT_Byte** elements; /* addresses of table elements */ + FT_PtrDist* lengths; /* lengths of table elements */ + + FT_Memory memory; + PS_Table_FuncsRec funcs; + + } PS_TableRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1 FIELDS & TOKENS *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct PS_ParserRec_* PS_Parser; + + typedef struct T1_TokenRec_* T1_Token; + + typedef struct T1_FieldRec_* T1_Field; + + + /* simple enumeration type used to identify token types */ + typedef enum T1_TokenType_ + { + T1_TOKEN_TYPE_NONE = 0, + T1_TOKEN_TYPE_ANY, + T1_TOKEN_TYPE_STRING, + T1_TOKEN_TYPE_ARRAY, + T1_TOKEN_TYPE_KEY, /* aka `name' */ + + /* do not remove */ + T1_TOKEN_TYPE_MAX + + } T1_TokenType; + + + /* a simple structure used to identify tokens */ + typedef struct T1_TokenRec_ + { + FT_Byte* start; /* first character of token in input stream */ + FT_Byte* limit; /* first character after the token */ + T1_TokenType type; /* type of token */ + + } T1_TokenRec; + + + /* enumeration type used to identify object fields */ + typedef enum T1_FieldType_ + { + T1_FIELD_TYPE_NONE = 0, + T1_FIELD_TYPE_BOOL, + T1_FIELD_TYPE_INTEGER, + T1_FIELD_TYPE_FIXED, + T1_FIELD_TYPE_FIXED_1000, + T1_FIELD_TYPE_STRING, + T1_FIELD_TYPE_KEY, + T1_FIELD_TYPE_BBOX, + T1_FIELD_TYPE_INTEGER_ARRAY, + T1_FIELD_TYPE_FIXED_ARRAY, + T1_FIELD_TYPE_CALLBACK, + + /* do not remove */ + T1_FIELD_TYPE_MAX + + } T1_FieldType; + + + typedef enum T1_FieldLocation_ + { + T1_FIELD_LOCATION_CID_INFO, + T1_FIELD_LOCATION_FONT_DICT, + T1_FIELD_LOCATION_FONT_EXTRA, + T1_FIELD_LOCATION_FONT_INFO, + T1_FIELD_LOCATION_PRIVATE, + T1_FIELD_LOCATION_BBOX, + T1_FIELD_LOCATION_LOADER, + T1_FIELD_LOCATION_FACE, + T1_FIELD_LOCATION_BLEND, + + /* do not remove */ + T1_FIELD_LOCATION_MAX + + } T1_FieldLocation; + + + typedef void + (*T1_Field_ParseFunc)( FT_Face face, + FT_Pointer parser ); + + + /* structure type used to model object fields */ + typedef struct T1_FieldRec_ + { + const char* ident; /* field identifier */ + T1_FieldLocation location; + T1_FieldType type; /* type of field */ + T1_Field_ParseFunc reader; + FT_UInt offset; /* offset of field in object */ + FT_Byte size; /* size of field in bytes */ + FT_UInt array_max; /* maximal number of elements for */ + /* array */ + FT_UInt count_offset; /* offset of element count for */ + /* arrays; must not be zero if in */ + /* use -- in other words, a */ + /* `num_FOO' element must not */ + /* start the used structure if we */ + /* parse a `FOO' array */ + FT_UInt dict; /* where we expect it */ + } T1_FieldRec; + +#define T1_FIELD_DICT_FONTDICT ( 1 << 0 ) /* also FontInfo and FDArray */ +#define T1_FIELD_DICT_PRIVATE ( 1 << 1 ) + + + +#define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \ + { \ + _ident, T1CODE, _type, \ + 0, \ + FT_FIELD_OFFSET( _fname ), \ + FT_FIELD_SIZE( _fname ), \ + 0, 0, \ + _dict \ + }, + +#define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \ + { \ + _ident, T1CODE, T1_FIELD_TYPE_CALLBACK, \ + (T1_Field_ParseFunc)_reader, \ + 0, 0, \ + 0, 0, \ + _dict \ + }, + +#define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \ + { \ + _ident, T1CODE, _type, \ + 0, \ + FT_FIELD_OFFSET( _fname ), \ + FT_FIELD_SIZE_DELTA( _fname ), \ + _max, \ + FT_FIELD_OFFSET( num_ ## _fname ), \ + _dict \ + }, + +#define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \ + { \ + _ident, T1CODE, _type, \ + 0, \ + FT_FIELD_OFFSET( _fname ), \ + FT_FIELD_SIZE_DELTA( _fname ), \ + _max, 0, \ + _dict \ + }, + + +#define T1_FIELD_BOOL( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict ) + +#define T1_FIELD_NUM( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_INTEGER, _fname, _dict ) + +#define T1_FIELD_FIXED( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_FIXED, _fname, _dict ) + +#define T1_FIELD_FIXED_1000( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_FIXED_1000, _fname, \ + _dict ) + +#define T1_FIELD_STRING( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_STRING, _fname, _dict ) + +#define T1_FIELD_KEY( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_KEY, _fname, _dict ) + +#define T1_FIELD_BBOX( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BBOX, _fname, _dict ) + + +#define T1_FIELD_NUM_TABLE( _ident, _fname, _fmax, _dict ) \ + T1_NEW_TABLE_FIELD( _ident, T1_FIELD_TYPE_INTEGER_ARRAY, \ + _fname, _fmax, _dict ) + +#define T1_FIELD_FIXED_TABLE( _ident, _fname, _fmax, _dict ) \ + T1_NEW_TABLE_FIELD( _ident, T1_FIELD_TYPE_FIXED_ARRAY, \ + _fname, _fmax, _dict ) + +#define T1_FIELD_NUM_TABLE2( _ident, _fname, _fmax, _dict ) \ + T1_NEW_TABLE_FIELD2( _ident, T1_FIELD_TYPE_INTEGER_ARRAY, \ + _fname, _fmax, _dict ) + +#define T1_FIELD_FIXED_TABLE2( _ident, _fname, _fmax, _dict ) \ + T1_NEW_TABLE_FIELD2( _ident, T1_FIELD_TYPE_FIXED_ARRAY, \ + _fname, _fmax, _dict ) + +#define T1_FIELD_CALLBACK( _ident, _name, _dict ) \ + T1_NEW_CALLBACK_FIELD( _ident, _name, _dict ) + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1 PARSER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef const struct PS_Parser_FuncsRec_* PS_Parser_Funcs; + + typedef struct PS_Parser_FuncsRec_ + { + void + (*init)( PS_Parser parser, + FT_Byte* base, + FT_Byte* limit, + FT_Memory memory ); + + void + (*done)( PS_Parser parser ); + + void + (*skip_spaces)( PS_Parser parser ); + void + (*skip_PS_token)( PS_Parser parser ); + + FT_Long + (*to_int)( PS_Parser parser ); + FT_Fixed + (*to_fixed)( PS_Parser parser, + FT_Int power_ten ); + + FT_Error + (*to_bytes)( PS_Parser parser, + FT_Byte* bytes, + FT_Offset max_bytes, + FT_Long* pnum_bytes, + FT_Bool delimiters ); + + FT_Int + (*to_coord_array)( PS_Parser parser, + FT_Int max_coords, + FT_Short* coords ); + FT_Int + (*to_fixed_array)( PS_Parser parser, + FT_Int max_values, + FT_Fixed* values, + FT_Int power_ten ); + + void + (*to_token)( PS_Parser parser, + T1_Token token ); + void + (*to_token_array)( PS_Parser parser, + T1_Token tokens, + FT_UInt max_tokens, + FT_Int* pnum_tokens ); + + FT_Error + (*load_field)( PS_Parser parser, + const T1_Field field, + void** objects, + FT_UInt max_objects, + FT_ULong* pflags ); + + FT_Error + (*load_field_table)( PS_Parser parser, + const T1_Field field, + void** objects, + FT_UInt max_objects, + FT_ULong* pflags ); + + } PS_Parser_FuncsRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* PS_ParserRec */ + /* */ + /* <Description> */ + /* A PS_Parser is an object used to parse a Type 1 font very quickly. */ + /* */ + /* <Fields> */ + /* cursor :: The current position in the text. */ + /* */ + /* base :: Start of the processed text. */ + /* */ + /* limit :: End of the processed text. */ + /* */ + /* error :: The last error returned. */ + /* */ + /* memory :: The object used for memory operations (alloc/realloc). */ + /* */ + /* funcs :: A table of functions for the parser. */ + /* */ + typedef struct PS_ParserRec_ + { + FT_Byte* cursor; + FT_Byte* base; + FT_Byte* limit; + FT_Error error; + FT_Memory memory; + + PS_Parser_FuncsRec funcs; + + } PS_ParserRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1 BUILDER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + + typedef struct T1_BuilderRec_* T1_Builder; + + + typedef FT_Error + (*T1_Builder_Check_Points_Func)( T1_Builder builder, + FT_Int count ); + + typedef void + (*T1_Builder_Add_Point_Func)( T1_Builder builder, + FT_Pos x, + FT_Pos y, + FT_Byte flag ); + + typedef FT_Error + (*T1_Builder_Add_Point1_Func)( T1_Builder builder, + FT_Pos x, + FT_Pos y ); + + typedef FT_Error + (*T1_Builder_Add_Contour_Func)( T1_Builder builder ); + + typedef FT_Error + (*T1_Builder_Start_Point_Func)( T1_Builder builder, + FT_Pos x, + FT_Pos y ); + + typedef void + (*T1_Builder_Close_Contour_Func)( T1_Builder builder ); + + + typedef const struct T1_Builder_FuncsRec_* T1_Builder_Funcs; + + typedef struct T1_Builder_FuncsRec_ + { + void + (*init)( T1_Builder builder, + FT_Face face, + FT_Size size, + FT_GlyphSlot slot, + FT_Bool hinting ); + + void + (*done)( T1_Builder builder ); + + T1_Builder_Check_Points_Func check_points; + T1_Builder_Add_Point_Func add_point; + T1_Builder_Add_Point1_Func add_point1; + T1_Builder_Add_Contour_Func add_contour; + T1_Builder_Start_Point_Func start_point; + T1_Builder_Close_Contour_Func close_contour; + + } T1_Builder_FuncsRec; + + + /* an enumeration type to handle charstring parsing states */ + typedef enum T1_ParseState_ + { + T1_Parse_Start, + T1_Parse_Have_Width, + T1_Parse_Have_Moveto, + T1_Parse_Have_Path + + } T1_ParseState; + + + /*************************************************************************/ + /* */ + /* <Structure> */ + /* T1_BuilderRec */ + /* */ + /* <Description> */ + /* A structure used during glyph loading to store its outline. */ + /* */ + /* <Fields> */ + /* memory :: The current memory object. */ + /* */ + /* face :: The current face object. */ + /* */ + /* glyph :: The current glyph slot. */ + /* */ + /* loader :: XXX */ + /* */ + /* base :: The base glyph outline. */ + /* */ + /* current :: The current glyph outline. */ + /* */ + /* max_points :: maximum points in builder outline */ + /* */ + /* max_contours :: Maximal number of contours in builder outline. */ + /* */ + /* pos_x :: The horizontal translation (if composite glyph). */ + /* */ + /* pos_y :: The vertical translation (if composite glyph). */ + /* */ + /* left_bearing :: The left side bearing point. */ + /* */ + /* advance :: The horizontal advance vector. */ + /* */ + /* bbox :: Unused. */ + /* */ + /* parse_state :: An enumeration which controls the charstring */ + /* parsing state. */ + /* */ + /* load_points :: If this flag is not set, no points are loaded. */ + /* */ + /* no_recurse :: Set but not used. */ + /* */ + /* metrics_only :: A boolean indicating that we only want to compute */ + /* the metrics of a given glyph, not load all of its */ + /* points. */ + /* */ + /* funcs :: An array of function pointers for the builder. */ + /* */ + typedef struct T1_BuilderRec_ + { + FT_Memory memory; + FT_Face face; + FT_GlyphSlot glyph; + FT_GlyphLoader loader; + FT_Outline* base; + FT_Outline* current; + + FT_Pos pos_x; + FT_Pos pos_y; + + FT_Vector left_bearing; + FT_Vector advance; + + FT_BBox bbox; /* bounding box */ + T1_ParseState parse_state; + FT_Bool load_points; + FT_Bool no_recurse; + + FT_Bool metrics_only; + + void* hints_funcs; /* hinter-specific */ + void* hints_globals; /* hinter-specific */ + + T1_Builder_FuncsRec funcs; + + } T1_BuilderRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1 DECODER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + +#if 0 + + /*************************************************************************/ + /* */ + /* T1_MAX_SUBRS_CALLS details the maximum number of nested sub-routine */ + /* calls during glyph loading. */ + /* */ +#define T1_MAX_SUBRS_CALLS 8 + + + /*************************************************************************/ + /* */ + /* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */ + /* minimum of 16 is required. */ + /* */ +#define T1_MAX_CHARSTRINGS_OPERANDS 32 + +#endif /* 0 */ + + + typedef struct T1_Decoder_ZoneRec_ + { + FT_Byte* cursor; + FT_Byte* base; + FT_Byte* limit; + + } T1_Decoder_ZoneRec, *T1_Decoder_Zone; + + + typedef struct T1_DecoderRec_* T1_Decoder; + typedef const struct T1_Decoder_FuncsRec_* T1_Decoder_Funcs; + + + typedef FT_Error + (*T1_Decoder_Callback)( T1_Decoder decoder, + FT_UInt glyph_index ); + + + typedef struct T1_Decoder_FuncsRec_ + { + FT_Error + (*init)( T1_Decoder decoder, + FT_Face face, + FT_Size size, + FT_GlyphSlot slot, + FT_Byte** glyph_names, + PS_Blend blend, + FT_Bool hinting, + FT_Render_Mode hint_mode, + T1_Decoder_Callback callback ); + + void + (*done)( T1_Decoder decoder ); + + FT_Error + (*parse_charstrings)( T1_Decoder decoder, + FT_Byte* base, + FT_UInt len ); + + } T1_Decoder_FuncsRec; + + + typedef struct T1_DecoderRec_ + { + T1_BuilderRec builder; + + FT_Long stack[T1_MAX_CHARSTRINGS_OPERANDS]; + FT_Long* top; + + T1_Decoder_ZoneRec zones[T1_MAX_SUBRS_CALLS + 1]; + T1_Decoder_Zone zone; + + FT_Service_PsCMaps psnames; /* for seac */ + FT_UInt num_glyphs; + FT_Byte** glyph_names; + + FT_Int lenIV; /* internal for sub routine calls */ + FT_UInt num_subrs; + FT_Byte** subrs; + FT_PtrDist* subrs_len; /* array of subrs length (optional) */ + + FT_Matrix font_matrix; + FT_Vector font_offset; + + FT_Int flex_state; + FT_Int num_flex_vectors; + FT_Vector flex_vectors[7]; + + PS_Blend blend; /* for multiple master support */ + + FT_Render_Mode hint_mode; + + T1_Decoder_Callback parse_callback; + T1_Decoder_FuncsRec funcs; + + FT_Long* buildchar; + FT_UInt len_buildchar; + + FT_Bool seac; + + } T1_DecoderRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** AFM PARSER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct AFM_ParserRec_* AFM_Parser; + + typedef struct AFM_Parser_FuncsRec_ + { + FT_Error + (*init)( AFM_Parser parser, + FT_Memory memory, + FT_Byte* base, + FT_Byte* limit ); + + void + (*done)( AFM_Parser parser ); + + FT_Error + (*parse)( AFM_Parser parser ); + + } AFM_Parser_FuncsRec; + + + typedef struct AFM_StreamRec_* AFM_Stream; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* AFM_ParserRec */ + /* */ + /* <Description> */ + /* An AFM_Parser is a parser for the AFM files. */ + /* */ + /* <Fields> */ + /* memory :: The object used for memory operations (alloc and */ + /* realloc). */ + /* */ + /* stream :: This is an opaque object. */ + /* */ + /* FontInfo :: The result will be stored here. */ + /* */ + /* get_index :: A user provided function to get a glyph index by its */ + /* name. */ + /* */ + typedef struct AFM_ParserRec_ + { + FT_Memory memory; + AFM_Stream stream; + + AFM_FontInfo FontInfo; + + FT_Int + (*get_index)( const char* name, + FT_Offset len, + void* user_data ); + + void* user_data; + + } AFM_ParserRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** TYPE1 CHARMAPS *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef const struct T1_CMap_ClassesRec_* T1_CMap_Classes; + + typedef struct T1_CMap_ClassesRec_ + { + FT_CMap_Class standard; + FT_CMap_Class expert; + FT_CMap_Class custom; + FT_CMap_Class unicode; + + } T1_CMap_ClassesRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** PSAux Module Interface *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct PSAux_ServiceRec_ + { + /* don't use `PS_Table_Funcs' and friends to avoid compiler warnings */ + const PS_Table_FuncsRec* ps_table_funcs; + const PS_Parser_FuncsRec* ps_parser_funcs; + const T1_Builder_FuncsRec* t1_builder_funcs; + const T1_Decoder_FuncsRec* t1_decoder_funcs; + + void + (*t1_decrypt)( FT_Byte* buffer, + FT_Offset length, + FT_UShort seed ); + + T1_CMap_Classes t1_cmap_classes; + + /* fields after this comment line were added after version 2.1.10 */ + const AFM_Parser_FuncsRec* afm_parser_funcs; + + } PSAux_ServiceRec, *PSAux_Service; + + /* backwards-compatible type definition */ + typedef PSAux_ServiceRec PSAux_Interface; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** Some convenience functions *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + +#define IS_PS_NEWLINE( ch ) \ + ( (ch) == '\r' || \ + (ch) == '\n' ) + +#define IS_PS_SPACE( ch ) \ + ( (ch) == ' ' || \ + IS_PS_NEWLINE( ch ) || \ + (ch) == '\t' || \ + (ch) == '\f' || \ + (ch) == '\0' ) + +#define IS_PS_SPECIAL( ch ) \ + ( (ch) == '/' || \ + (ch) == '(' || (ch) == ')' || \ + (ch) == '<' || (ch) == '>' || \ + (ch) == '[' || (ch) == ']' || \ + (ch) == '{' || (ch) == '}' || \ + (ch) == '%' ) + +#define IS_PS_DELIM( ch ) \ + ( IS_PS_SPACE( ch ) || \ + IS_PS_SPECIAL( ch ) ) + +#define IS_PS_DIGIT( ch ) \ + ( (ch) >= '0' && (ch) <= '9' ) + +#define IS_PS_XDIGIT( ch ) \ + ( IS_PS_DIGIT( ch ) || \ + ( (ch) >= 'A' && (ch) <= 'F' ) || \ + ( (ch) >= 'a' && (ch) <= 'f' ) ) + +#define IS_PS_BASE85( ch ) \ + ( (ch) >= '!' && (ch) <= 'u' ) + +#define IS_PS_TOKEN( cur, limit, token ) \ + ( (char)(cur)[0] == (token)[0] && \ + ( (cur) + sizeof ( (token) ) == (limit) || \ + ( (cur) + sizeof( (token) ) < (limit) && \ + IS_PS_DELIM( (cur)[sizeof ( (token) ) - 1] ) ) ) && \ + ft_strncmp( (char*)(cur), (token), sizeof ( (token) ) - 1 ) == 0 ) + + +FT_END_HEADER + +#endif /* __PSAUX_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/pshints.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/pshints.h new file mode 100644 index 0000000000..0c357651be --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/pshints.h @@ -0,0 +1,712 @@ +/***************************************************************************/ +/* */ +/* pshints.h */ +/* */ +/* Interface to Postscript-specific (Type 1 and Type 2) hints */ +/* recorders (specification only). These are used to support native */ +/* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */ +/* */ +/* Copyright 2001, 2002, 2003, 2005, 2006, 2007, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __PSHINTS_H__ +#define __PSHINTS_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H +#include FT_TYPE1_TABLES_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** INTERNAL REPRESENTATION OF GLOBALS *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct PSH_GlobalsRec_* PSH_Globals; + + typedef FT_Error + (*PSH_Globals_NewFunc)( FT_Memory memory, + T1_Private* private_dict, + PSH_Globals* aglobals ); + + typedef FT_Error + (*PSH_Globals_SetScaleFunc)( PSH_Globals globals, + FT_Fixed x_scale, + FT_Fixed y_scale, + FT_Fixed x_delta, + FT_Fixed y_delta ); + + typedef void + (*PSH_Globals_DestroyFunc)( PSH_Globals globals ); + + + typedef struct PSH_Globals_FuncsRec_ + { + PSH_Globals_NewFunc create; + PSH_Globals_SetScaleFunc set_scale; + PSH_Globals_DestroyFunc destroy; + + } PSH_Globals_FuncsRec, *PSH_Globals_Funcs; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** PUBLIC TYPE 1 HINTS RECORDER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + /************************************************************************* + * + * @type: + * T1_Hints + * + * @description: + * This is a handle to an opaque structure used to record glyph hints + * from a Type 1 character glyph character string. + * + * The methods used to operate on this object are defined by the + * @T1_Hints_FuncsRec structure. Recording glyph hints is normally + * achieved through the following scheme: + * + * - Open a new hint recording session by calling the `open' method. + * This rewinds the recorder and prepare it for new input. + * + * - For each hint found in the glyph charstring, call the corresponding + * method (`stem', `stem3', or `reset'). Note that these functions do + * not return an error code. + * + * - Close the recording session by calling the `close' method. It + * returns an error code if the hints were invalid or something + * strange happened (e.g., memory shortage). + * + * The hints accumulated in the object can later be used by the + * PostScript hinter. + * + */ + typedef struct T1_HintsRec_* T1_Hints; + + + /************************************************************************* + * + * @type: + * T1_Hints_Funcs + * + * @description: + * A pointer to the @T1_Hints_FuncsRec structure that defines the API of + * a given @T1_Hints object. + * + */ + typedef const struct T1_Hints_FuncsRec_* T1_Hints_Funcs; + + + /************************************************************************* + * + * @functype: + * T1_Hints_OpenFunc + * + * @description: + * A method of the @T1_Hints class used to prepare it for a new Type 1 + * hints recording session. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * @note: + * You should always call the @T1_Hints_CloseFunc method in order to + * close an opened recording session. + * + */ + typedef void + (*T1_Hints_OpenFunc)( T1_Hints hints ); + + + /************************************************************************* + * + * @functype: + * T1_Hints_SetStemFunc + * + * @description: + * A method of the @T1_Hints class used to record a new horizontal or + * vertical stem. This corresponds to the Type 1 `hstem' and `vstem' + * operators. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * dimension :: + * 0 for horizontal stems (hstem), 1 for vertical ones (vstem). + * + * coords :: + * Array of 2 coordinates in 16.16 format, used as (position,length) + * stem descriptor. + * + * @note: + * Use vertical coordinates (y) for horizontal stems (dim=0). Use + * horizontal coordinates (x) for vertical stems (dim=1). + * + * `coords[0]' is the absolute stem position (lowest coordinate); + * `coords[1]' is the length. + * + * The length can be negative, in which case it must be either -20 or + * -21. It is interpreted as a `ghost' stem, according to the Type 1 + * specification. + * + * If the length is -21 (corresponding to a bottom ghost stem), then + * the real stem position is `coords[0]+coords[1]'. + * + */ + typedef void + (*T1_Hints_SetStemFunc)( T1_Hints hints, + FT_UInt dimension, + FT_Fixed* coords ); + + + /************************************************************************* + * + * @functype: + * T1_Hints_SetStem3Func + * + * @description: + * A method of the @T1_Hints class used to record three + * counter-controlled horizontal or vertical stems at once. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * dimension :: + * 0 for horizontal stems, 1 for vertical ones. + * + * coords :: + * An array of 6 values in 16.16 format, holding 3 (position,length) + * pairs for the counter-controlled stems. + * + * @note: + * Use vertical coordinates (y) for horizontal stems (dim=0). Use + * horizontal coordinates (x) for vertical stems (dim=1). + * + * The lengths cannot be negative (ghost stems are never + * counter-controlled). + * + */ + typedef void + (*T1_Hints_SetStem3Func)( T1_Hints hints, + FT_UInt dimension, + FT_Fixed* coords ); + + + /************************************************************************* + * + * @functype: + * T1_Hints_ResetFunc + * + * @description: + * A method of the @T1_Hints class used to reset the stems hints in a + * recording session. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * end_point :: + * The index of the last point in the input glyph in which the + * previously defined hints apply. + * + */ + typedef void + (*T1_Hints_ResetFunc)( T1_Hints hints, + FT_UInt end_point ); + + + /************************************************************************* + * + * @functype: + * T1_Hints_CloseFunc + * + * @description: + * A method of the @T1_Hints class used to close a hint recording + * session. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * end_point :: + * The index of the last point in the input glyph. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * The error code is set to indicate that an error occurred during the + * recording session. + * + */ + typedef FT_Error + (*T1_Hints_CloseFunc)( T1_Hints hints, + FT_UInt end_point ); + + + /************************************************************************* + * + * @functype: + * T1_Hints_ApplyFunc + * + * @description: + * A method of the @T1_Hints class used to apply hints to the + * corresponding glyph outline. Must be called once all hints have been + * recorded. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * outline :: + * A pointer to the target outline descriptor. + * + * globals :: + * The hinter globals for this font. + * + * hint_mode :: + * Hinting information. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * On input, all points within the outline are in font coordinates. On + * output, they are in 1/64th of pixels. + * + * The scaling transformation is taken from the `globals' object which + * must correspond to the same font as the glyph. + * + */ + typedef FT_Error + (*T1_Hints_ApplyFunc)( T1_Hints hints, + FT_Outline* outline, + PSH_Globals globals, + FT_Render_Mode hint_mode ); + + + /************************************************************************* + * + * @struct: + * T1_Hints_FuncsRec + * + * @description: + * The structure used to provide the API to @T1_Hints objects. + * + * @fields: + * hints :: + * A handle to the T1 Hints recorder. + * + * open :: + * The function to open a recording session. + * + * close :: + * The function to close a recording session. + * + * stem :: + * The function to set a simple stem. + * + * stem3 :: + * The function to set counter-controlled stems. + * + * reset :: + * The function to reset stem hints. + * + * apply :: + * The function to apply the hints to the corresponding glyph outline. + * + */ + typedef struct T1_Hints_FuncsRec_ + { + T1_Hints hints; + T1_Hints_OpenFunc open; + T1_Hints_CloseFunc close; + T1_Hints_SetStemFunc stem; + T1_Hints_SetStem3Func stem3; + T1_Hints_ResetFunc reset; + T1_Hints_ApplyFunc apply; + + } T1_Hints_FuncsRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** PUBLIC TYPE 2 HINTS RECORDER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + /************************************************************************* + * + * @type: + * T2_Hints + * + * @description: + * This is a handle to an opaque structure used to record glyph hints + * from a Type 2 character glyph character string. + * + * The methods used to operate on this object are defined by the + * @T2_Hints_FuncsRec structure. Recording glyph hints is normally + * achieved through the following scheme: + * + * - Open a new hint recording session by calling the `open' method. + * This rewinds the recorder and prepare it for new input. + * + * - For each hint found in the glyph charstring, call the corresponding + * method (`stems', `hintmask', `counters'). Note that these + * functions do not return an error code. + * + * - Close the recording session by calling the `close' method. It + * returns an error code if the hints were invalid or something + * strange happened (e.g., memory shortage). + * + * The hints accumulated in the object can later be used by the + * Postscript hinter. + * + */ + typedef struct T2_HintsRec_* T2_Hints; + + + /************************************************************************* + * + * @type: + * T2_Hints_Funcs + * + * @description: + * A pointer to the @T2_Hints_FuncsRec structure that defines the API of + * a given @T2_Hints object. + * + */ + typedef const struct T2_Hints_FuncsRec_* T2_Hints_Funcs; + + + /************************************************************************* + * + * @functype: + * T2_Hints_OpenFunc + * + * @description: + * A method of the @T2_Hints class used to prepare it for a new Type 2 + * hints recording session. + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * @note: + * You should always call the @T2_Hints_CloseFunc method in order to + * close an opened recording session. + * + */ + typedef void + (*T2_Hints_OpenFunc)( T2_Hints hints ); + + + /************************************************************************* + * + * @functype: + * T2_Hints_StemsFunc + * + * @description: + * A method of the @T2_Hints class used to set the table of stems in + * either the vertical or horizontal dimension. Equivalent to the + * `hstem', `vstem', `hstemhm', and `vstemhm' Type 2 operators. + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * dimension :: + * 0 for horizontal stems (hstem), 1 for vertical ones (vstem). + * + * count :: + * The number of stems. + * + * coords :: + * An array of `count' (position,length) pairs in 16.16 format. + * + * @note: + * Use vertical coordinates (y) for horizontal stems (dim=0). Use + * horizontal coordinates (x) for vertical stems (dim=1). + * + * There are `2*count' elements in the `coords' array. Each even + * element is an absolute position in font units, each odd element is a + * length in font units. + * + * A length can be negative, in which case it must be either -20 or + * -21. It is interpreted as a `ghost' stem, according to the Type 1 + * specification. + * + */ + typedef void + (*T2_Hints_StemsFunc)( T2_Hints hints, + FT_UInt dimension, + FT_UInt count, + FT_Fixed* coordinates ); + + + /************************************************************************* + * + * @functype: + * T2_Hints_MaskFunc + * + * @description: + * A method of the @T2_Hints class used to set a given hintmask (this + * corresponds to the `hintmask' Type 2 operator). + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * end_point :: + * The glyph index of the last point to which the previously defined + * or activated hints apply. + * + * bit_count :: + * The number of bits in the hint mask. + * + * bytes :: + * An array of bytes modelling the hint mask. + * + * @note: + * If the hintmask starts the charstring (before any glyph point + * definition), the value of `end_point' should be 0. + * + * `bit_count' is the number of meaningful bits in the `bytes' array; it + * must be equal to the total number of hints defined so far (i.e., + * horizontal+verticals). + * + * The `bytes' array can come directly from the Type 2 charstring and + * respects the same format. + * + */ + typedef void + (*T2_Hints_MaskFunc)( T2_Hints hints, + FT_UInt end_point, + FT_UInt bit_count, + const FT_Byte* bytes ); + + + /************************************************************************* + * + * @functype: + * T2_Hints_CounterFunc + * + * @description: + * A method of the @T2_Hints class used to set a given counter mask + * (this corresponds to the `hintmask' Type 2 operator). + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * end_point :: + * A glyph index of the last point to which the previously defined or + * active hints apply. + * + * bit_count :: + * The number of bits in the hint mask. + * + * bytes :: + * An array of bytes modelling the hint mask. + * + * @note: + * If the hintmask starts the charstring (before any glyph point + * definition), the value of `end_point' should be 0. + * + * `bit_count' is the number of meaningful bits in the `bytes' array; it + * must be equal to the total number of hints defined so far (i.e., + * horizontal+verticals). + * + * The `bytes' array can come directly from the Type 2 charstring and + * respects the same format. + * + */ + typedef void + (*T2_Hints_CounterFunc)( T2_Hints hints, + FT_UInt bit_count, + const FT_Byte* bytes ); + + + /************************************************************************* + * + * @functype: + * T2_Hints_CloseFunc + * + * @description: + * A method of the @T2_Hints class used to close a hint recording + * session. + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * end_point :: + * The index of the last point in the input glyph. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * The error code is set to indicate that an error occurred during the + * recording session. + * + */ + typedef FT_Error + (*T2_Hints_CloseFunc)( T2_Hints hints, + FT_UInt end_point ); + + + /************************************************************************* + * + * @functype: + * T2_Hints_ApplyFunc + * + * @description: + * A method of the @T2_Hints class used to apply hints to the + * corresponding glyph outline. Must be called after the `close' + * method. + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * outline :: + * A pointer to the target outline descriptor. + * + * globals :: + * The hinter globals for this font. + * + * hint_mode :: + * Hinting information. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * On input, all points within the outline are in font coordinates. On + * output, they are in 1/64th of pixels. + * + * The scaling transformation is taken from the `globals' object which + * must correspond to the same font than the glyph. + * + */ + typedef FT_Error + (*T2_Hints_ApplyFunc)( T2_Hints hints, + FT_Outline* outline, + PSH_Globals globals, + FT_Render_Mode hint_mode ); + + + /************************************************************************* + * + * @struct: + * T2_Hints_FuncsRec + * + * @description: + * The structure used to provide the API to @T2_Hints objects. + * + * @fields: + * hints :: + * A handle to the T2 hints recorder object. + * + * open :: + * The function to open a recording session. + * + * close :: + * The function to close a recording session. + * + * stems :: + * The function to set the dimension's stems table. + * + * hintmask :: + * The function to set hint masks. + * + * counter :: + * The function to set counter masks. + * + * apply :: + * The function to apply the hints on the corresponding glyph outline. + * + */ + typedef struct T2_Hints_FuncsRec_ + { + T2_Hints hints; + T2_Hints_OpenFunc open; + T2_Hints_CloseFunc close; + T2_Hints_StemsFunc stems; + T2_Hints_MaskFunc hintmask; + T2_Hints_CounterFunc counter; + T2_Hints_ApplyFunc apply; + + } T2_Hints_FuncsRec; + + + /* */ + + + typedef struct PSHinter_Interface_ + { + PSH_Globals_Funcs (*get_globals_funcs)( FT_Module module ); + T1_Hints_Funcs (*get_t1_funcs) ( FT_Module module ); + T2_Hints_Funcs (*get_t2_funcs) ( FT_Module module ); + + } PSHinter_Interface; + + typedef PSHinter_Interface* PSHinter_Service; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_PSHINTER_INTERFACE(class_, get_globals_funcs_, \ + get_t1_funcs_, get_t2_funcs_) \ + static const PSHinter_Interface class_ = \ + { \ + get_globals_funcs_, get_t1_funcs_, get_t2_funcs_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_PSHINTER_INTERFACE(class_, get_globals_funcs_, \ + get_t1_funcs_, get_t2_funcs_) \ + void \ + FT_Init_Class_##class_( FT_Library library, \ + PSHinter_Interface* clazz) \ + { \ + FT_UNUSED(library); \ + clazz->get_globals_funcs = get_globals_funcs_; \ + clazz->get_t1_funcs = get_t1_funcs_; \ + clazz->get_t2_funcs = get_t2_funcs_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + +FT_END_HEADER + +#endif /* __PSHINTS_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svbdf.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svbdf.h new file mode 100644 index 0000000000..9264239146 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svbdf.h @@ -0,0 +1,77 @@ +/***************************************************************************/ +/* */ +/* svbdf.h */ +/* */ +/* The FreeType BDF services (specification). */ +/* */ +/* Copyright 2003 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVBDF_H__ +#define __SVBDF_H__ + +#include FT_BDF_H +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_BDF "bdf" + + typedef FT_Error + (*FT_BDF_GetCharsetIdFunc)( FT_Face face, + const char* *acharset_encoding, + const char* *acharset_registry ); + + typedef FT_Error + (*FT_BDF_GetPropertyFunc)( FT_Face face, + const char* prop_name, + BDF_PropertyRec *aproperty ); + + + FT_DEFINE_SERVICE( BDF ) + { + FT_BDF_GetCharsetIdFunc get_charset_id; + FT_BDF_GetPropertyFunc get_property; + }; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_BDFRec(class_, get_charset_id_, get_property_) \ + static const FT_Service_BDFRec class_ = \ + { \ + get_charset_id_, get_property_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_BDFRec(class_, get_charset_id_, get_property_) \ + void \ + FT_Init_Class_##class_( FT_Service_BDFRec* clazz ) \ + { \ + clazz->get_charset_id = get_charset_id_; \ + clazz->get_property = get_property_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + + +#endif /* __SVBDF_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svcid.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svcid.h new file mode 100644 index 0000000000..9b874b5e72 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svcid.h @@ -0,0 +1,83 @@ +/***************************************************************************/ +/* */ +/* svcid.h */ +/* */ +/* The FreeType CID font services (specification). */ +/* */ +/* Copyright 2007, 2009 by Derek Clegg, Michael Toftdal. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVCID_H__ +#define __SVCID_H__ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_CID "CID" + + typedef FT_Error + (*FT_CID_GetRegistryOrderingSupplementFunc)( FT_Face face, + const char* *registry, + const char* *ordering, + FT_Int *supplement ); + typedef FT_Error + (*FT_CID_GetIsInternallyCIDKeyedFunc)( FT_Face face, + FT_Bool *is_cid ); + typedef FT_Error + (*FT_CID_GetCIDFromGlyphIndexFunc)( FT_Face face, + FT_UInt glyph_index, + FT_UInt *cid ); + + FT_DEFINE_SERVICE( CID ) + { + FT_CID_GetRegistryOrderingSupplementFunc get_ros; + FT_CID_GetIsInternallyCIDKeyedFunc get_is_cid; + FT_CID_GetCIDFromGlyphIndexFunc get_cid_from_glyph_index; + }; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_CIDREC(class_, get_ros_, \ + get_is_cid_, get_cid_from_glyph_index_ ) \ + static const FT_Service_CIDRec class_ = \ + { \ + get_ros_, get_is_cid_, get_cid_from_glyph_index_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_CIDREC(class_, get_ros_, \ + get_is_cid_, get_cid_from_glyph_index_ ) \ + void \ + FT_Init_Class_##class_( FT_Library library, \ + FT_Service_CIDRec* clazz) \ + { \ + FT_UNUSED(library); \ + clazz->get_ros = get_ros_; \ + clazz->get_is_cid = get_is_cid_; \ + clazz->get_cid_from_glyph_index = get_cid_from_glyph_index_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + + +#endif /* __SVCID_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svgldict.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svgldict.h new file mode 100644 index 0000000000..d66a41d5ae --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svgldict.h @@ -0,0 +1,82 @@ +/***************************************************************************/ +/* */ +/* svgldict.h */ +/* */ +/* The FreeType glyph dictionary services (specification). */ +/* */ +/* Copyright 2003 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVGLDICT_H__ +#define __SVGLDICT_H__ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + + /* + * A service used to retrieve glyph names, as well as to find the + * index of a given glyph name in a font. + * + */ + +#define FT_SERVICE_ID_GLYPH_DICT "glyph-dict" + + + typedef FT_Error + (*FT_GlyphDict_GetNameFunc)( FT_Face face, + FT_UInt glyph_index, + FT_Pointer buffer, + FT_UInt buffer_max ); + + typedef FT_UInt + (*FT_GlyphDict_NameIndexFunc)( FT_Face face, + FT_String* glyph_name ); + + + FT_DEFINE_SERVICE( GlyphDict ) + { + FT_GlyphDict_GetNameFunc get_name; + FT_GlyphDict_NameIndexFunc name_index; /* optional */ + }; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_GLYPHDICTREC(class_, get_name_, name_index_) \ + static const FT_Service_GlyphDictRec class_ = \ + { \ + get_name_, name_index_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_GLYPHDICTREC(class_, get_name_, name_index_) \ + void \ + FT_Init_Class_##class_( FT_Library library, \ + FT_Service_GlyphDictRec* clazz) \ + { \ + FT_UNUSED(library); \ + clazz->get_name = get_name_; \ + clazz->name_index = name_index_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + + +#endif /* __SVGLDICT_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svgxval.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svgxval.h new file mode 100644 index 0000000000..2cdab50655 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svgxval.h @@ -0,0 +1,72 @@ +/***************************************************************************/ +/* */ +/* svgxval.h */ +/* */ +/* FreeType API for validating TrueTypeGX/AAT tables (specification). */ +/* */ +/* Copyright 2004, 2005 by */ +/* Masatake YAMATO, Red Hat K.K., */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + +/***************************************************************************/ +/* */ +/* gxvalid is derived from both gxlayout module and otvalid module. */ +/* Development of gxlayout is supported by the Information-technology */ +/* Promotion Agency(IPA), Japan. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVGXVAL_H__ +#define __SVGXVAL_H__ + +#include FT_GX_VALIDATE_H +#include FT_INTERNAL_VALIDATE_H + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_GX_VALIDATE "truetypegx-validate" +#define FT_SERVICE_ID_CLASSICKERN_VALIDATE "classickern-validate" + + typedef FT_Error + (*gxv_validate_func)( FT_Face face, + FT_UInt gx_flags, + FT_Bytes tables[FT_VALIDATE_GX_LENGTH], + FT_UInt table_length ); + + + typedef FT_Error + (*ckern_validate_func)( FT_Face face, + FT_UInt ckern_flags, + FT_Bytes *ckern_table ); + + + FT_DEFINE_SERVICE( GXvalidate ) + { + gxv_validate_func validate; + }; + + FT_DEFINE_SERVICE( CKERNvalidate ) + { + ckern_validate_func validate; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* __SVGXVAL_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svkern.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svkern.h new file mode 100644 index 0000000000..1488adf493 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svkern.h @@ -0,0 +1,51 @@ +/***************************************************************************/ +/* */ +/* svkern.h */ +/* */ +/* The FreeType Kerning service (specification). */ +/* */ +/* Copyright 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVKERN_H__ +#define __SVKERN_H__ + +#include FT_INTERNAL_SERVICE_H +#include FT_TRUETYPE_TABLES_H + + +FT_BEGIN_HEADER + +#define FT_SERVICE_ID_KERNING "kerning" + + + typedef FT_Error + (*FT_Kerning_TrackGetFunc)( FT_Face face, + FT_Fixed point_size, + FT_Int degree, + FT_Fixed* akerning ); + + FT_DEFINE_SERVICE( Kerning ) + { + FT_Kerning_TrackGetFunc get_track; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* __SVKERN_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svmm.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svmm.h new file mode 100644 index 0000000000..66e1da22f1 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svmm.h @@ -0,0 +1,104 @@ +/***************************************************************************/ +/* */ +/* svmm.h */ +/* */ +/* The FreeType Multiple Masters and GX var services (specification). */ +/* */ +/* Copyright 2003, 2004 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVMM_H__ +#define __SVMM_H__ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + + /* + * A service used to manage multiple-masters data in a given face. + * + * See the related APIs in `ftmm.h' (FT_MULTIPLE_MASTERS_H). + * + */ + +#define FT_SERVICE_ID_MULTI_MASTERS "multi-masters" + + + typedef FT_Error + (*FT_Get_MM_Func)( FT_Face face, + FT_Multi_Master* master ); + + typedef FT_Error + (*FT_Get_MM_Var_Func)( FT_Face face, + FT_MM_Var* *master ); + + typedef FT_Error + (*FT_Set_MM_Design_Func)( FT_Face face, + FT_UInt num_coords, + FT_Long* coords ); + + typedef FT_Error + (*FT_Set_Var_Design_Func)( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + typedef FT_Error + (*FT_Set_MM_Blend_Func)( FT_Face face, + FT_UInt num_coords, + FT_Long* coords ); + + + FT_DEFINE_SERVICE( MultiMasters ) + { + FT_Get_MM_Func get_mm; + FT_Set_MM_Design_Func set_mm_design; + FT_Set_MM_Blend_Func set_mm_blend; + FT_Get_MM_Var_Func get_mm_var; + FT_Set_Var_Design_Func set_var_design; + }; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_MULTIMASTERSREC(class_, get_mm_, set_mm_design_, \ + set_mm_blend_, get_mm_var_, set_var_design_) \ + static const FT_Service_MultiMastersRec class_ = \ + { \ + get_mm_, set_mm_design_, set_mm_blend_, get_mm_var_, set_var_design_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_MULTIMASTERSREC(class_, get_mm_, set_mm_design_, \ + set_mm_blend_, get_mm_var_, set_var_design_) \ + void \ + FT_Init_Class_##class_( FT_Service_MultiMastersRec* clazz ) \ + { \ + clazz->get_mm = get_mm_; \ + clazz->set_mm_design = set_mm_design_; \ + clazz->set_mm_blend = set_mm_blend_; \ + clazz->get_mm_var = get_mm_var_; \ + clazz->set_var_design = set_var_design_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + +#endif /* __SVMM_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svotval.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svotval.h new file mode 100644 index 0000000000..970bbd5759 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svotval.h @@ -0,0 +1,55 @@ +/***************************************************************************/ +/* */ +/* svotval.h */ +/* */ +/* The FreeType OpenType validation service (specification). */ +/* */ +/* Copyright 2004, 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVOTVAL_H__ +#define __SVOTVAL_H__ + +#include FT_OPENTYPE_VALIDATE_H +#include FT_INTERNAL_VALIDATE_H + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_OPENTYPE_VALIDATE "opentype-validate" + + + typedef FT_Error + (*otv_validate_func)( FT_Face volatile face, + FT_UInt ot_flags, + FT_Bytes *base, + FT_Bytes *gdef, + FT_Bytes *gpos, + FT_Bytes *gsub, + FT_Bytes *jstf ); + + + FT_DEFINE_SERVICE( OTvalidate ) + { + otv_validate_func validate; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* __SVOTVAL_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpfr.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpfr.h new file mode 100644 index 0000000000..462786f9ce --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpfr.h @@ -0,0 +1,66 @@ +/***************************************************************************/ +/* */ +/* svpfr.h */ +/* */ +/* Internal PFR service functions (specification). */ +/* */ +/* Copyright 2003, 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVPFR_H__ +#define __SVPFR_H__ + +#include FT_PFR_H +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_PFR_METRICS "pfr-metrics" + + + typedef FT_Error + (*FT_PFR_GetMetricsFunc)( FT_Face face, + FT_UInt *aoutline, + FT_UInt *ametrics, + FT_Fixed *ax_scale, + FT_Fixed *ay_scale ); + + typedef FT_Error + (*FT_PFR_GetKerningFunc)( FT_Face face, + FT_UInt left, + FT_UInt right, + FT_Vector *avector ); + + typedef FT_Error + (*FT_PFR_GetAdvanceFunc)( FT_Face face, + FT_UInt gindex, + FT_Pos *aadvance ); + + + FT_DEFINE_SERVICE( PfrMetrics ) + { + FT_PFR_GetMetricsFunc get_metrics; + FT_PFR_GetKerningFunc get_kerning; + FT_PFR_GetAdvanceFunc get_advance; + + }; + + /* */ + +FT_END_HEADER + +#endif /* __SVPFR_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpostnm.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpostnm.h new file mode 100644 index 0000000000..106c54f853 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpostnm.h @@ -0,0 +1,79 @@ +/***************************************************************************/ +/* */ +/* svpostnm.h */ +/* */ +/* The FreeType PostScript name services (specification). */ +/* */ +/* Copyright 2003, 2007 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVPOSTNM_H__ +#define __SVPOSTNM_H__ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + /* + * A trivial service used to retrieve the PostScript name of a given + * font when available. The `get_name' field should never be NULL. + * + * The corresponding function can return NULL to indicate that the + * PostScript name is not available. + * + * The name is owned by the face and will be destroyed with it. + */ + +#define FT_SERVICE_ID_POSTSCRIPT_FONT_NAME "postscript-font-name" + + + typedef const char* + (*FT_PsName_GetFunc)( FT_Face face ); + + + FT_DEFINE_SERVICE( PsFontName ) + { + FT_PsName_GetFunc get_ps_font_name; + }; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_PSFONTNAMEREC(class_, get_ps_font_name_) \ + static const FT_Service_PsFontNameRec class_ = \ + { \ + get_ps_font_name_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_PSFONTNAMEREC(class_, get_ps_font_name_) \ + void \ + FT_Init_Class_##class_( FT_Library library, \ + FT_Service_PsFontNameRec* clazz) \ + { \ + FT_UNUSED(library); \ + clazz->get_ps_font_name = get_ps_font_name_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + + +#endif /* __SVPOSTNM_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpscmap.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpscmap.h new file mode 100644 index 0000000000..961030cc39 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpscmap.h @@ -0,0 +1,164 @@ +/***************************************************************************/ +/* */ +/* svpscmap.h */ +/* */ +/* The FreeType PostScript charmap service (specification). */ +/* */ +/* Copyright 2003, 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVPSCMAP_H__ +#define __SVPSCMAP_H__ + +#include FT_INTERNAL_OBJECTS_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_POSTSCRIPT_CMAPS "postscript-cmaps" + + + /* + * Adobe glyph name to unicode value. + */ + typedef FT_UInt32 + (*PS_Unicode_ValueFunc)( const char* glyph_name ); + + /* + * Macintosh name id to glyph name. NULL if invalid index. + */ + typedef const char* + (*PS_Macintosh_NameFunc)( FT_UInt name_index ); + + /* + * Adobe standard string ID to glyph name. NULL if invalid index. + */ + typedef const char* + (*PS_Adobe_Std_StringsFunc)( FT_UInt string_index ); + + + /* + * Simple unicode -> glyph index charmap built from font glyph names + * table. + */ + typedef struct PS_UniMap_ + { + FT_UInt32 unicode; /* bit 31 set: is glyph variant */ + FT_UInt glyph_index; + + } PS_UniMap; + + + typedef struct PS_UnicodesRec_* PS_Unicodes; + + typedef struct PS_UnicodesRec_ + { + FT_CMapRec cmap; + FT_UInt num_maps; + PS_UniMap* maps; + + } PS_UnicodesRec; + + + /* + * A function which returns a glyph name for a given index. Returns + * NULL if invalid index. + */ + typedef const char* + (*PS_GetGlyphNameFunc)( FT_Pointer data, + FT_UInt string_index ); + + /* + * A function used to release the glyph name returned by + * PS_GetGlyphNameFunc, when needed + */ + typedef void + (*PS_FreeGlyphNameFunc)( FT_Pointer data, + const char* name ); + + typedef FT_Error + (*PS_Unicodes_InitFunc)( FT_Memory memory, + PS_Unicodes unicodes, + FT_UInt num_glyphs, + PS_GetGlyphNameFunc get_glyph_name, + PS_FreeGlyphNameFunc free_glyph_name, + FT_Pointer glyph_data ); + + typedef FT_UInt + (*PS_Unicodes_CharIndexFunc)( PS_Unicodes unicodes, + FT_UInt32 unicode ); + + typedef FT_UInt32 + (*PS_Unicodes_CharNextFunc)( PS_Unicodes unicodes, + FT_UInt32 *unicode ); + + + FT_DEFINE_SERVICE( PsCMaps ) + { + PS_Unicode_ValueFunc unicode_value; + + PS_Unicodes_InitFunc unicodes_init; + PS_Unicodes_CharIndexFunc unicodes_char_index; + PS_Unicodes_CharNextFunc unicodes_char_next; + + PS_Macintosh_NameFunc macintosh_name; + PS_Adobe_Std_StringsFunc adobe_std_strings; + const unsigned short* adobe_std_encoding; + const unsigned short* adobe_expert_encoding; + }; + + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_PSCMAPSREC(class_, unicode_value_, unicodes_init_, \ + unicodes_char_index_, unicodes_char_next_, macintosh_name_, \ + adobe_std_strings_, adobe_std_encoding_, adobe_expert_encoding_) \ + static const FT_Service_PsCMapsRec class_ = \ + { \ + unicode_value_, unicodes_init_, \ + unicodes_char_index_, unicodes_char_next_, macintosh_name_, \ + adobe_std_strings_, adobe_std_encoding_, adobe_expert_encoding_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_PSCMAPSREC(class_, unicode_value_, unicodes_init_, \ + unicodes_char_index_, unicodes_char_next_, macintosh_name_, \ + adobe_std_strings_, adobe_std_encoding_, adobe_expert_encoding_) \ + void \ + FT_Init_Class_##class_( FT_Library library, \ + FT_Service_PsCMapsRec* clazz) \ + { \ + FT_UNUSED(library); \ + clazz->unicode_value = unicode_value_; \ + clazz->unicodes_init = unicodes_init_; \ + clazz->unicodes_char_index = unicodes_char_index_; \ + clazz->unicodes_char_next = unicodes_char_next_; \ + clazz->macintosh_name = macintosh_name_; \ + clazz->adobe_std_strings = adobe_std_strings_; \ + clazz->adobe_std_encoding = adobe_std_encoding_; \ + clazz->adobe_expert_encoding = adobe_expert_encoding_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + + +#endif /* __SVPSCMAP_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpsinfo.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpsinfo.h new file mode 100644 index 0000000000..91ba91e5dc --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svpsinfo.h @@ -0,0 +1,92 @@ +/***************************************************************************/ +/* */ +/* svpsinfo.h */ +/* */ +/* The FreeType PostScript info service (specification). */ +/* */ +/* Copyright 2003, 2004, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVPSINFO_H__ +#define __SVPSINFO_H__ + +#include FT_INTERNAL_SERVICE_H +#include FT_INTERNAL_TYPE1_TYPES_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_POSTSCRIPT_INFO "postscript-info" + + + typedef FT_Error + (*PS_GetFontInfoFunc)( FT_Face face, + PS_FontInfoRec* afont_info ); + + typedef FT_Error + (*PS_GetFontExtraFunc)( FT_Face face, + PS_FontExtraRec* afont_extra ); + + typedef FT_Int + (*PS_HasGlyphNamesFunc)( FT_Face face ); + + typedef FT_Error + (*PS_GetFontPrivateFunc)( FT_Face face, + PS_PrivateRec* afont_private ); + + + FT_DEFINE_SERVICE( PsInfo ) + { + PS_GetFontInfoFunc ps_get_font_info; + PS_GetFontExtraFunc ps_get_font_extra; + PS_HasGlyphNamesFunc ps_has_glyph_names; + PS_GetFontPrivateFunc ps_get_font_private; + }; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_PSINFOREC(class_, get_font_info_, \ + ps_get_font_extra_, has_glyph_names_, get_font_private_) \ + static const FT_Service_PsInfoRec class_ = \ + { \ + get_font_info_, ps_get_font_extra_, has_glyph_names_, \ + get_font_private_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_PSINFOREC(class_, get_font_info_, \ + ps_get_font_extra_, has_glyph_names_, get_font_private_) \ + void \ + FT_Init_Class_##class_( FT_Library library, \ + FT_Service_PsInfoRec* clazz) \ + { \ + FT_UNUSED(library); \ + clazz->ps_get_font_info = get_font_info_; \ + clazz->ps_get_font_extra = ps_get_font_extra_; \ + clazz->ps_has_glyph_names = has_glyph_names_; \ + clazz->ps_get_font_private = get_font_private_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + + +#endif /* __SVPSINFO_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svsfnt.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svsfnt.h new file mode 100644 index 0000000000..30bb1620fe --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svsfnt.h @@ -0,0 +1,102 @@ +/***************************************************************************/ +/* */ +/* svsfnt.h */ +/* */ +/* The FreeType SFNT table loading service (specification). */ +/* */ +/* Copyright 2003, 2004 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVSFNT_H__ +#define __SVSFNT_H__ + +#include FT_INTERNAL_SERVICE_H +#include FT_TRUETYPE_TABLES_H + + +FT_BEGIN_HEADER + + + /* + * SFNT table loading service. + */ + +#define FT_SERVICE_ID_SFNT_TABLE "sfnt-table" + + + /* + * Used to implement FT_Load_Sfnt_Table(). + */ + typedef FT_Error + (*FT_SFNT_TableLoadFunc)( FT_Face face, + FT_ULong tag, + FT_Long offset, + FT_Byte* buffer, + FT_ULong* length ); + + /* + * Used to implement FT_Get_Sfnt_Table(). + */ + typedef void* + (*FT_SFNT_TableGetFunc)( FT_Face face, + FT_Sfnt_Tag tag ); + + + /* + * Used to implement FT_Sfnt_Table_Info(). + */ + typedef FT_Error + (*FT_SFNT_TableInfoFunc)( FT_Face face, + FT_UInt idx, + FT_ULong *tag, + FT_ULong *offset, + FT_ULong *length ); + + + FT_DEFINE_SERVICE( SFNT_Table ) + { + FT_SFNT_TableLoadFunc load_table; + FT_SFNT_TableGetFunc get_table; + FT_SFNT_TableInfoFunc table_info; + }; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_SFNT_TABLEREC(class_, load_, get_, info_) \ + static const FT_Service_SFNT_TableRec class_ = \ + { \ + load_, get_, info_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_SFNT_TABLEREC(class_, load_, get_, info_) \ + void \ + FT_Init_Class_##class_( FT_Service_SFNT_TableRec* clazz ) \ + { \ + clazz->load_table = load_; \ + clazz->get_table = get_; \ + clazz->table_info = info_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + + +#endif /* __SVSFNT_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svttcmap.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svttcmap.h new file mode 100644 index 0000000000..8af00351d9 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svttcmap.h @@ -0,0 +1,106 @@ +/***************************************************************************/ +/* */ +/* svttcmap.h */ +/* */ +/* The FreeType TrueType/sfnt cmap extra information service. */ +/* */ +/* Copyright 2003 by */ +/* Masatake YAMATO, Redhat K.K. */ +/* */ +/* Copyright 2003, 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + +/* Development of this service is support of + Information-technology Promotion Agency, Japan. */ + +#ifndef __SVTTCMAP_H__ +#define __SVTTCMAP_H__ + +#include FT_INTERNAL_SERVICE_H +#include FT_TRUETYPE_TABLES_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_TT_CMAP "tt-cmaps" + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_CMapInfo */ + /* */ + /* <Description> */ + /* A structure used to store TrueType/sfnt specific cmap information */ + /* which is not covered by the generic @FT_CharMap structure. This */ + /* structure can be accessed with the @FT_Get_TT_CMap_Info function. */ + /* */ + /* <Fields> */ + /* language :: */ + /* The language ID used in Mac fonts. Definitions of values are in */ + /* freetype/ttnameid.h. */ + /* */ + /* format :: */ + /* The cmap format. OpenType 1.5 defines the formats 0 (byte */ + /* encoding table), 2~(high-byte mapping through table), 4~(segment */ + /* mapping to delta values), 6~(trimmed table mapping), 8~(mixed */ + /* 16-bit and 32-bit coverage), 10~(trimmed array), 12~(segmented */ + /* coverage), and 14 (Unicode Variation Sequences). */ + /* */ + typedef struct TT_CMapInfo_ + { + FT_ULong language; + FT_Long format; + + } TT_CMapInfo; + + + typedef FT_Error + (*TT_CMap_Info_GetFunc)( FT_CharMap charmap, + TT_CMapInfo *cmap_info ); + + + FT_DEFINE_SERVICE( TTCMaps ) + { + TT_CMap_Info_GetFunc get_cmap_info; + }; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_TTCMAPSREC(class_, get_cmap_info_) \ + static const FT_Service_TTCMapsRec class_ = \ + { \ + get_cmap_info_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_TTCMAPSREC(class_, get_cmap_info_) \ + void \ + FT_Init_Class_##class_( FT_Library library, \ + FT_Service_TTCMapsRec* clazz) \ + { \ + FT_UNUSED(library); \ + clazz->get_cmap_info = get_cmap_info_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + +#endif /* __SVTTCMAP_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svtteng.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svtteng.h new file mode 100644 index 0000000000..58e02a6f9d --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svtteng.h @@ -0,0 +1,53 @@ +/***************************************************************************/ +/* */ +/* svtteng.h */ +/* */ +/* The FreeType TrueType engine query service (specification). */ +/* */ +/* Copyright 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVTTENG_H__ +#define __SVTTENG_H__ + +#include FT_INTERNAL_SERVICE_H +#include FT_MODULE_H + + +FT_BEGIN_HEADER + + + /* + * SFNT table loading service. + */ + +#define FT_SERVICE_ID_TRUETYPE_ENGINE "truetype-engine" + + /* + * Used to implement FT_Get_TrueType_Engine_Type + */ + + FT_DEFINE_SERVICE( TrueTypeEngine ) + { + FT_TrueTypeEngineType engine_type; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* __SVTTENG_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svttglyf.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svttglyf.h new file mode 100644 index 0000000000..ab2dc9a9fe --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svttglyf.h @@ -0,0 +1,67 @@ +/***************************************************************************/ +/* */ +/* svttglyf.h */ +/* */ +/* The FreeType TrueType glyph service. */ +/* */ +/* Copyright 2007 by David Turner. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + +#ifndef __SVTTGLYF_H__ +#define __SVTTGLYF_H__ + +#include FT_INTERNAL_SERVICE_H +#include FT_TRUETYPE_TABLES_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_TT_GLYF "tt-glyf" + + + typedef FT_ULong + (*TT_Glyf_GetLocationFunc)( FT_Face face, + FT_UInt gindex, + FT_ULong *psize ); + + FT_DEFINE_SERVICE( TTGlyf ) + { + TT_Glyf_GetLocationFunc get_location; + }; + +#ifndef FT_CONFIG_OPTION_PIC + +#define FT_DEFINE_SERVICE_TTGLYFREC(class_, get_location_ ) \ + static const FT_Service_TTGlyfRec class_ = \ + { \ + get_location_ \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#define FT_DEFINE_SERVICE_TTGLYFREC(class_, get_location_ ) \ + void \ + FT_Init_Class_##class_( FT_Service_TTGlyfRec* clazz ) \ + { \ + clazz->get_location = get_location_; \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + + /* */ + + +FT_END_HEADER + +#endif /* __SVTTGLYF_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svwinfnt.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svwinfnt.h new file mode 100644 index 0000000000..57f7765d92 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svwinfnt.h @@ -0,0 +1,50 @@ +/***************************************************************************/ +/* */ +/* svwinfnt.h */ +/* */ +/* The FreeType Windows FNT/FONT service (specification). */ +/* */ +/* Copyright 2003 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVWINFNT_H__ +#define __SVWINFNT_H__ + +#include FT_INTERNAL_SERVICE_H +#include FT_WINFONTS_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_WINFNT "winfonts" + + typedef FT_Error + (*FT_WinFnt_GetHeaderFunc)( FT_Face face, + FT_WinFNT_HeaderRec *aheader ); + + + FT_DEFINE_SERVICE( WinFnt ) + { + FT_WinFnt_GetHeaderFunc get_header; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* __SVWINFNT_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svxf86nm.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svxf86nm.h new file mode 100644 index 0000000000..ca5d884a83 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/services/svxf86nm.h @@ -0,0 +1,55 @@ +/***************************************************************************/ +/* */ +/* svxf86nm.h */ +/* */ +/* The FreeType XFree86 services (specification only). */ +/* */ +/* Copyright 2003 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SVXF86NM_H__ +#define __SVXF86NM_H__ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + + /* + * A trivial service used to return the name of a face's font driver, + * according to the XFree86 nomenclature. Note that the service data + * is a simple constant string pointer. + */ + +#define FT_SERVICE_ID_XF86_NAME "xf86-driver-name" + +#define FT_XF86_FORMAT_TRUETYPE "TrueType" +#define FT_XF86_FORMAT_TYPE_1 "Type 1" +#define FT_XF86_FORMAT_BDF "BDF" +#define FT_XF86_FORMAT_PCF "PCF" +#define FT_XF86_FORMAT_TYPE_42 "Type 42" +#define FT_XF86_FORMAT_CID "CID Type 1" +#define FT_XF86_FORMAT_CFF "CFF" +#define FT_XF86_FORMAT_PFR "PFR" +#define FT_XF86_FORMAT_WINFNT "Windows FNT" + + /* */ + + +FT_END_HEADER + + +#endif /* __SVXF86NM_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/sfnt.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/sfnt.h new file mode 100644 index 0000000000..6326debd00 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/sfnt.h @@ -0,0 +1,897 @@ +/***************************************************************************/ +/* */ +/* sfnt.h */ +/* */ +/* High-level `sfnt' driver interface (specification). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __SFNT_H__ +#define __SFNT_H__ + + +#include <ft2build.h> +#include FT_INTERNAL_DRIVER_H +#include FT_INTERNAL_TRUETYPE_TYPES_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Init_Face_Func */ + /* */ + /* <Description> */ + /* First part of the SFNT face object initialization. This finds */ + /* the face in a SFNT file or collection, and load its format tag in */ + /* face->format_tag. */ + /* */ + /* <Input> */ + /* stream :: The input stream. */ + /* */ + /* face :: A handle to the target face object. */ + /* */ + /* face_index :: The index of the TrueType font, if we are opening a */ + /* collection. */ + /* */ + /* num_params :: The number of additional parameters. */ + /* */ + /* params :: Optional additional parameters. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* The stream cursor must be at the font file's origin. */ + /* */ + /* This function recognizes fonts embedded in a `TrueType */ + /* collection'. */ + /* */ + /* Once the format tag has been validated by the font driver, it */ + /* should then call the TT_Load_Face_Func() callback to read the rest */ + /* of the SFNT tables in the object. */ + /* */ + typedef FT_Error + (*TT_Init_Face_Func)( FT_Stream stream, + TT_Face face, + FT_Int face_index, + FT_Int num_params, + FT_Parameter* params ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Load_Face_Func */ + /* */ + /* <Description> */ + /* Second part of the SFNT face object initialization. This loads */ + /* the common SFNT tables (head, OS/2, maxp, metrics, etc.) in the */ + /* face object. */ + /* */ + /* <Input> */ + /* stream :: The input stream. */ + /* */ + /* face :: A handle to the target face object. */ + /* */ + /* face_index :: The index of the TrueType font, if we are opening a */ + /* collection. */ + /* */ + /* num_params :: The number of additional parameters. */ + /* */ + /* params :: Optional additional parameters. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* This function must be called after TT_Init_Face_Func(). */ + /* */ + typedef FT_Error + (*TT_Load_Face_Func)( FT_Stream stream, + TT_Face face, + FT_Int face_index, + FT_Int num_params, + FT_Parameter* params ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Done_Face_Func */ + /* */ + /* <Description> */ + /* A callback used to delete the common SFNT data from a face. */ + /* */ + /* <Input> */ + /* face :: A handle to the target face object. */ + /* */ + /* <Note> */ + /* This function does NOT destroy the face object. */ + /* */ + typedef void + (*TT_Done_Face_Func)( TT_Face face ); + + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Load_SFNT_HeaderRec_Func */ + /* */ + /* <Description> */ + /* Loads the header of a SFNT font file. Supports collections. */ + /* */ + /* <Input> */ + /* face :: A handle to the target face object. */ + /* */ + /* stream :: The input stream. */ + /* */ + /* face_index :: The index of the TrueType font, if we are opening a */ + /* collection. */ + /* */ + /* <Output> */ + /* sfnt :: The SFNT header. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* The stream cursor must be at the font file's origin. */ + /* */ + /* This function recognizes fonts embedded in a `TrueType */ + /* collection'. */ + /* */ + /* This function checks that the header is valid by looking at the */ + /* values of `search_range', `entry_selector', and `range_shift'. */ + /* */ + typedef FT_Error + (*TT_Load_SFNT_HeaderRec_Func)( TT_Face face, + FT_Stream stream, + FT_Long face_index, + SFNT_Header sfnt ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Load_Directory_Func */ + /* */ + /* <Description> */ + /* Loads the table directory into a face object. */ + /* */ + /* <Input> */ + /* face :: A handle to the target face object. */ + /* */ + /* stream :: The input stream. */ + /* */ + /* sfnt :: The SFNT header. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* The stream cursor must be on the first byte after the 4-byte font */ + /* format tag. This is the case just after a call to */ + /* TT_Load_Format_Tag(). */ + /* */ + typedef FT_Error + (*TT_Load_Directory_Func)( TT_Face face, + FT_Stream stream, + SFNT_Header sfnt ); + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Load_Any_Func */ + /* */ + /* <Description> */ + /* Load any font table into client memory. */ + /* */ + /* <Input> */ + /* face :: The face object to look for. */ + /* */ + /* tag :: The tag of table to load. Use the value 0 if you want */ + /* to access the whole font file, else set this parameter */ + /* to a valid TrueType table tag that you can forge with */ + /* the MAKE_TT_TAG macro. */ + /* */ + /* offset :: The starting offset in the table (or the file if */ + /* tag == 0). */ + /* */ + /* length :: The address of the decision variable: */ + /* */ + /* If length == NULL: */ + /* Loads the whole table. Returns an error if */ + /* `offset' == 0! */ + /* */ + /* If *length == 0: */ + /* Exits immediately; returning the length of the given */ + /* table or of the font file, depending on the value of */ + /* `tag'. */ + /* */ + /* If *length != 0: */ + /* Loads the next `length' bytes of table or font, */ + /* starting at offset `offset' (in table or font too). */ + /* */ + /* <Output> */ + /* buffer :: The address of target buffer. */ + /* */ + /* <Return> */ + /* TrueType error code. 0 means success. */ + /* */ + typedef FT_Error + (*TT_Load_Any_Func)( TT_Face face, + FT_ULong tag, + FT_Long offset, + FT_Byte *buffer, + FT_ULong* length ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Find_SBit_Image_Func */ + /* */ + /* <Description> */ + /* Check whether an embedded bitmap (an `sbit') exists for a given */ + /* glyph, at a given strike. */ + /* */ + /* <Input> */ + /* face :: The target face object. */ + /* */ + /* glyph_index :: The glyph index. */ + /* */ + /* strike_index :: The current strike index. */ + /* */ + /* <Output> */ + /* arange :: The SBit range containing the glyph index. */ + /* */ + /* astrike :: The SBit strike containing the glyph index. */ + /* */ + /* aglyph_offset :: The offset of the glyph data in `EBDT' table. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. Returns */ + /* SFNT_Err_Invalid_Argument if no sbit exists for the requested */ + /* glyph. */ + /* */ + typedef FT_Error + (*TT_Find_SBit_Image_Func)( TT_Face face, + FT_UInt glyph_index, + FT_ULong strike_index, + TT_SBit_Range *arange, + TT_SBit_Strike *astrike, + FT_ULong *aglyph_offset ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Load_SBit_Metrics_Func */ + /* */ + /* <Description> */ + /* Get the big metrics for a given embedded bitmap. */ + /* */ + /* <Input> */ + /* stream :: The input stream. */ + /* */ + /* range :: The SBit range containing the glyph. */ + /* */ + /* <Output> */ + /* big_metrics :: A big SBit metrics structure for the glyph. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* The stream cursor must be positioned at the glyph's offset within */ + /* the `EBDT' table before the call. */ + /* */ + /* If the image format uses variable metrics, the stream cursor is */ + /* positioned just after the metrics header in the `EBDT' table on */ + /* function exit. */ + /* */ + typedef FT_Error + (*TT_Load_SBit_Metrics_Func)( FT_Stream stream, + TT_SBit_Range range, + TT_SBit_Metrics metrics ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Load_SBit_Image_Func */ + /* */ + /* <Description> */ + /* Load a given glyph sbit image from the font resource. This also */ + /* returns its metrics. */ + /* */ + /* <Input> */ + /* face :: */ + /* The target face object. */ + /* */ + /* strike_index :: */ + /* The strike index. */ + /* */ + /* glyph_index :: */ + /* The current glyph index. */ + /* */ + /* load_flags :: */ + /* The current load flags. */ + /* */ + /* stream :: */ + /* The input stream. */ + /* */ + /* <Output> */ + /* amap :: */ + /* The target pixmap. */ + /* */ + /* ametrics :: */ + /* A big sbit metrics structure for the glyph image. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. Returns an error if no */ + /* glyph sbit exists for the index. */ + /* */ + /* <Note> */ + /* The `map.buffer' field is always freed before the glyph is loaded. */ + /* */ + typedef FT_Error + (*TT_Load_SBit_Image_Func)( TT_Face face, + FT_ULong strike_index, + FT_UInt glyph_index, + FT_UInt load_flags, + FT_Stream stream, + FT_Bitmap *amap, + TT_SBit_MetricsRec *ametrics ); + + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Set_SBit_Strike_OldFunc */ + /* */ + /* <Description> */ + /* Select an sbit strike for a given size request. */ + /* */ + /* <Input> */ + /* face :: The target face object. */ + /* */ + /* req :: The size request. */ + /* */ + /* <Output> */ + /* astrike_index :: The index of the sbit strike. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. Returns an error if no */ + /* sbit strike exists for the selected ppem values. */ + /* */ + typedef FT_Error + (*TT_Set_SBit_Strike_OldFunc)( TT_Face face, + FT_UInt x_ppem, + FT_UInt y_ppem, + FT_ULong* astrike_index ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_CharMap_Load_Func */ + /* */ + /* <Description> */ + /* Loads a given TrueType character map into memory. */ + /* */ + /* <Input> */ + /* face :: A handle to the parent face object. */ + /* */ + /* stream :: A handle to the current stream object. */ + /* */ + /* <InOut> */ + /* cmap :: A pointer to a cmap object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* The function assumes that the stream is already in use (i.e., */ + /* opened). In case of error, all partially allocated tables are */ + /* released. */ + /* */ + typedef FT_Error + (*TT_CharMap_Load_Func)( TT_Face face, + void* cmap, + FT_Stream input ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_CharMap_Free_Func */ + /* */ + /* <Description> */ + /* Destroys a character mapping table. */ + /* */ + /* <Input> */ + /* face :: A handle to the parent face object. */ + /* */ + /* cmap :: A handle to a cmap object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + typedef FT_Error + (*TT_CharMap_Free_Func)( TT_Face face, + void* cmap ); + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Set_SBit_Strike_Func */ + /* */ + /* <Description> */ + /* Select an sbit strike for a given size request. */ + /* */ + /* <Input> */ + /* face :: The target face object. */ + /* */ + /* req :: The size request. */ + /* */ + /* <Output> */ + /* astrike_index :: The index of the sbit strike. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. Returns an error if no */ + /* sbit strike exists for the selected ppem values. */ + /* */ + typedef FT_Error + (*TT_Set_SBit_Strike_Func)( TT_Face face, + FT_Size_Request req, + FT_ULong* astrike_index ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Load_Strike_Metrics_Func */ + /* */ + /* <Description> */ + /* Load the metrics of a given strike. */ + /* */ + /* <Input> */ + /* face :: The target face object. */ + /* */ + /* strike_index :: The strike index. */ + /* */ + /* <Output> */ + /* metrics :: the metrics of the strike. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. Returns an error if no */ + /* such sbit strike exists. */ + /* */ + typedef FT_Error + (*TT_Load_Strike_Metrics_Func)( TT_Face face, + FT_ULong strike_index, + FT_Size_Metrics* metrics ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Get_PS_Name_Func */ + /* */ + /* <Description> */ + /* Get the PostScript glyph name of a glyph. */ + /* */ + /* <Input> */ + /* idx :: The glyph index. */ + /* */ + /* PSname :: The address of a string pointer. Will be NULL in case */ + /* of error, otherwise it is a pointer to the glyph name. */ + /* */ + /* You must not modify the returned string! */ + /* */ + /* <Output> */ + /* FreeType error code. 0 means success. */ + /* */ + typedef FT_Error + (*TT_Get_PS_Name_Func)( TT_Face face, + FT_UInt idx, + FT_String** PSname ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Load_Metrics_Func */ + /* */ + /* <Description> */ + /* Load a metrics table, which is a table with a horizontal and a */ + /* vertical version. */ + /* */ + /* <Input> */ + /* face :: A handle to the target face object. */ + /* */ + /* stream :: The input stream. */ + /* */ + /* vertical :: A boolean flag. If set, load the vertical one. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + typedef FT_Error + (*TT_Load_Metrics_Func)( TT_Face face, + FT_Stream stream, + FT_Bool vertical ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Get_Metrics_Func */ + /* */ + /* <Description> */ + /* Load the horizontal or vertical header in a face object. */ + /* */ + /* <Input> */ + /* face :: A handle to the target face object. */ + /* */ + /* stream :: The input stream. */ + /* */ + /* vertical :: A boolean flag. If set, load vertical metrics. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + typedef FT_Error + (*TT_Get_Metrics_Func)( TT_Face face, + FT_Bool vertical, + FT_UInt gindex, + FT_Short* abearing, + FT_UShort* aadvance ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Load_Table_Func */ + /* */ + /* <Description> */ + /* Load a given TrueType table. */ + /* */ + /* <Input> */ + /* face :: A handle to the target face object. */ + /* */ + /* stream :: The input stream. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* The function uses `face->goto_table' to seek the stream to the */ + /* start of the table, except while loading the font directory. */ + /* */ + typedef FT_Error + (*TT_Load_Table_Func)( TT_Face face, + FT_Stream stream ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Free_Table_Func */ + /* */ + /* <Description> */ + /* Free a given TrueType table. */ + /* */ + /* <Input> */ + /* face :: A handle to the target face object. */ + /* */ + typedef void + (*TT_Free_Table_Func)( TT_Face face ); + + + /* + * @functype: + * TT_Face_GetKerningFunc + * + * @description: + * Return the horizontal kerning value between two glyphs. + * + * @input: + * face :: A handle to the source face object. + * left_glyph :: The left glyph index. + * right_glyph :: The right glyph index. + * + * @return: + * The kerning value in font units. + */ + typedef FT_Int + (*TT_Face_GetKerningFunc)( TT_Face face, + FT_UInt left_glyph, + FT_UInt right_glyph ); + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* SFNT_Interface */ + /* */ + /* <Description> */ + /* This structure holds pointers to the functions used to load and */ + /* free the basic tables that are required in a `sfnt' font file. */ + /* */ + /* <Fields> */ + /* Check the various xxx_Func() descriptions for details. */ + /* */ + typedef struct SFNT_Interface_ + { + TT_Loader_GotoTableFunc goto_table; + + TT_Init_Face_Func init_face; + TT_Load_Face_Func load_face; + TT_Done_Face_Func done_face; + FT_Module_Requester get_interface; + + TT_Load_Any_Func load_any; + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + TT_Load_SFNT_HeaderRec_Func load_sfnt_header; + TT_Load_Directory_Func load_directory; +#endif + + /* these functions are called by `load_face' but they can also */ + /* be called from external modules, if there is a need to do so */ + TT_Load_Table_Func load_head; + TT_Load_Metrics_Func load_hhea; + TT_Load_Table_Func load_cmap; + TT_Load_Table_Func load_maxp; + TT_Load_Table_Func load_os2; + TT_Load_Table_Func load_post; + + TT_Load_Table_Func load_name; + TT_Free_Table_Func free_name; + + /* optional tables */ +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + TT_Load_Table_Func load_hdmx_stub; + TT_Free_Table_Func free_hdmx_stub; +#endif + + /* this field was called `load_kerning' up to version 2.1.10 */ + TT_Load_Table_Func load_kern; + + TT_Load_Table_Func load_gasp; + TT_Load_Table_Func load_pclt; + + /* see `ttload.h'; this field was called `load_bitmap_header' up to */ + /* version 2.1.10 */ + TT_Load_Table_Func load_bhed; + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + /* see `ttsbit.h' */ + TT_Set_SBit_Strike_OldFunc set_sbit_strike_stub; + TT_Load_Table_Func load_sbits_stub; + + /* + * The following two fields appeared in version 2.1.8, and were placed + * between `load_sbits' and `load_sbit_image'. We support them as a + * special exception since they are used by Xfont library within the + * X.Org xserver, and because the probability that other rogue clients + * use the other version 2.1.7 fields below is _extremely_ low. + * + * Note that this forces us to disable an interesting memory-saving + * optimization though... + */ + + TT_Find_SBit_Image_Func find_sbit_image; + TT_Load_SBit_Metrics_Func load_sbit_metrics; + +#endif + + TT_Load_SBit_Image_Func load_sbit_image; + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + TT_Free_Table_Func free_sbits_stub; +#endif + + /* see `ttpost.h' */ + TT_Get_PS_Name_Func get_psname; + TT_Free_Table_Func free_psnames; + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + TT_CharMap_Load_Func load_charmap_stub; + TT_CharMap_Free_Func free_charmap_stub; +#endif + + /* starting here, the structure differs from version 2.1.7 */ + + /* this field was introduced in version 2.1.8, named `get_psname' */ + TT_Face_GetKerningFunc get_kerning; + + /* new elements introduced after version 2.1.10 */ + + /* load the font directory, i.e., the offset table and */ + /* the table directory */ + TT_Load_Table_Func load_font_dir; + TT_Load_Metrics_Func load_hmtx; + + TT_Load_Table_Func load_eblc; + TT_Free_Table_Func free_eblc; + + TT_Set_SBit_Strike_Func set_sbit_strike; + TT_Load_Strike_Metrics_Func load_strike_metrics; + + TT_Get_Metrics_Func get_metrics; + + } SFNT_Interface; + + + /* transitional */ + typedef SFNT_Interface* SFNT_Service; + +#ifndef FT_CONFIG_OPTION_PIC + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS +#define FT_DEFINE_DRIVERS_OLD_INTERNAL(a) \ + a, +#else + #define FT_DEFINE_DRIVERS_OLD_INTERNAL(a) +#endif +#define FT_INTERNAL(a) \ + a, + +#define FT_DEFINE_SFNT_INTERFACE(class_, \ + goto_table_, init_face_, load_face_, done_face_, get_interface_, \ + load_any_, load_sfnt_header_, load_directory_, load_head_, \ + load_hhea_, load_cmap_, load_maxp_, load_os2_, load_post_, \ + load_name_, free_name_, load_hdmx_stub_, free_hdmx_stub_, \ + load_kern_, load_gasp_, load_pclt_, load_bhed_, \ + set_sbit_strike_stub_, load_sbits_stub_, find_sbit_image_, \ + load_sbit_metrics_, load_sbit_image_, free_sbits_stub_, \ + get_psname_, free_psnames_, load_charmap_stub_, free_charmap_stub_, \ + get_kerning_, load_font_dir_, load_hmtx_, load_eblc_, free_eblc_, \ + set_sbit_strike_, load_strike_metrics_, get_metrics_ ) \ + static const SFNT_Interface class_ = \ + { \ + FT_INTERNAL(goto_table_) \ + FT_INTERNAL(init_face_) \ + FT_INTERNAL(load_face_) \ + FT_INTERNAL(done_face_) \ + FT_INTERNAL(get_interface_) \ + FT_INTERNAL(load_any_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_sfnt_header_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_directory_) \ + FT_INTERNAL(load_head_) \ + FT_INTERNAL(load_hhea_) \ + FT_INTERNAL(load_cmap_) \ + FT_INTERNAL(load_maxp_) \ + FT_INTERNAL(load_os2_) \ + FT_INTERNAL(load_post_) \ + FT_INTERNAL(load_name_) \ + FT_INTERNAL(free_name_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_hdmx_stub_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(free_hdmx_stub_) \ + FT_INTERNAL(load_kern_) \ + FT_INTERNAL(load_gasp_) \ + FT_INTERNAL(load_pclt_) \ + FT_INTERNAL(load_bhed_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(set_sbit_strike_stub_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_sbits_stub_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(find_sbit_image_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_sbit_metrics_) \ + FT_INTERNAL(load_sbit_image_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(free_sbits_stub_) \ + FT_INTERNAL(get_psname_) \ + FT_INTERNAL(free_psnames_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_charmap_stub_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(free_charmap_stub_) \ + FT_INTERNAL(get_kerning_) \ + FT_INTERNAL(load_font_dir_) \ + FT_INTERNAL(load_hmtx_) \ + FT_INTERNAL(load_eblc_) \ + FT_INTERNAL(free_eblc_) \ + FT_INTERNAL(set_sbit_strike_) \ + FT_INTERNAL(load_strike_metrics_) \ + FT_INTERNAL(get_metrics_) \ + }; + +#else /* FT_CONFIG_OPTION_PIC */ + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS +#define FT_DEFINE_DRIVERS_OLD_INTERNAL(a, a_) \ + clazz->a = a_; +#else + #define FT_DEFINE_DRIVERS_OLD_INTERNAL(a, a_) +#endif +#define FT_INTERNAL(a, a_) \ + clazz->a = a_; + +#define FT_DEFINE_SFNT_INTERFACE(class_, \ + goto_table_, init_face_, load_face_, done_face_, get_interface_, \ + load_any_, load_sfnt_header_, load_directory_, load_head_, \ + load_hhea_, load_cmap_, load_maxp_, load_os2_, load_post_, \ + load_name_, free_name_, load_hdmx_stub_, free_hdmx_stub_, \ + load_kern_, load_gasp_, load_pclt_, load_bhed_, \ + set_sbit_strike_stub_, load_sbits_stub_, find_sbit_image_, \ + load_sbit_metrics_, load_sbit_image_, free_sbits_stub_, \ + get_psname_, free_psnames_, load_charmap_stub_, free_charmap_stub_, \ + get_kerning_, load_font_dir_, load_hmtx_, load_eblc_, free_eblc_, \ + set_sbit_strike_, load_strike_metrics_, get_metrics_ ) \ + void \ + FT_Init_Class_##class_( FT_Library library, SFNT_Interface* clazz ) \ + { \ + FT_UNUSED(library); \ + FT_INTERNAL(goto_table,goto_table_) \ + FT_INTERNAL(init_face,init_face_) \ + FT_INTERNAL(load_face,load_face_) \ + FT_INTERNAL(done_face,done_face_) \ + FT_INTERNAL(get_interface,get_interface_) \ + FT_INTERNAL(load_any,load_any_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_sfnt_header,load_sfnt_header_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_directory,load_directory_) \ + FT_INTERNAL(load_head,load_head_) \ + FT_INTERNAL(load_hhea,load_hhea_) \ + FT_INTERNAL(load_cmap,load_cmap_) \ + FT_INTERNAL(load_maxp,load_maxp_) \ + FT_INTERNAL(load_os2,load_os2_) \ + FT_INTERNAL(load_post,load_post_) \ + FT_INTERNAL(load_name,load_name_) \ + FT_INTERNAL(free_name,free_name_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_hdmx_stub,load_hdmx_stub_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(free_hdmx_stub,free_hdmx_stub_) \ + FT_INTERNAL(load_kern,load_kern_) \ + FT_INTERNAL(load_gasp,load_gasp_) \ + FT_INTERNAL(load_pclt,load_pclt_) \ + FT_INTERNAL(load_bhed,load_bhed_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(set_sbit_strike_stub,set_sbit_strike_stub_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_sbits_stub,load_sbits_stub_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(find_sbit_image,find_sbit_image_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_sbit_metrics,load_sbit_metrics_) \ + FT_INTERNAL(load_sbit_image,load_sbit_image_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(free_sbits_stub,free_sbits_stub_) \ + FT_INTERNAL(get_psname,get_psname_) \ + FT_INTERNAL(free_psnames,free_psnames_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(load_charmap_stub,load_charmap_stub_) \ + FT_DEFINE_DRIVERS_OLD_INTERNAL(free_charmap_stub,free_charmap_stub_) \ + FT_INTERNAL(get_kerning,get_kerning_) \ + FT_INTERNAL(load_font_dir,load_font_dir_) \ + FT_INTERNAL(load_hmtx,load_hmtx_) \ + FT_INTERNAL(load_eblc,load_eblc_) \ + FT_INTERNAL(free_eblc,free_eblc_) \ + FT_INTERNAL(set_sbit_strike,set_sbit_strike_) \ + FT_INTERNAL(load_strike_metrics,load_strike_metrics_) \ + FT_INTERNAL(get_metrics,get_metrics_) \ + } + +#endif /* FT_CONFIG_OPTION_PIC */ + +FT_END_HEADER + +#endif /* __SFNT_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/t1types.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/t1types.h new file mode 100644 index 0000000000..5f730637b5 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/t1types.h @@ -0,0 +1,270 @@ +/***************************************************************************/ +/* */ +/* t1types.h */ +/* */ +/* Basic Type1/Type2 type definitions and interface (specification */ +/* only). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004, 2006, 2008, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __T1TYPES_H__ +#define __T1TYPES_H__ + + +#include <ft2build.h> +#include FT_TYPE1_TABLES_H +#include FT_INTERNAL_POSTSCRIPT_HINTS_H +#include FT_INTERNAL_SERVICE_H +#include FT_SERVICE_POSTSCRIPT_CMAPS_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** REQUIRED TYPE1/TYPE2 TABLES DEFINITIONS ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* T1_EncodingRec */ + /* */ + /* <Description> */ + /* A structure modeling a custom encoding. */ + /* */ + /* <Fields> */ + /* num_chars :: The number of character codes in the encoding. */ + /* Usually 256. */ + /* */ + /* code_first :: The lowest valid character code in the encoding. */ + /* */ + /* code_last :: The highest valid character code in the encoding */ + /* + 1. When equal to code_first there are no valid */ + /* character codes. */ + /* */ + /* char_index :: An array of corresponding glyph indices. */ + /* */ + /* char_name :: An array of corresponding glyph names. */ + /* */ + typedef struct T1_EncodingRecRec_ + { + FT_Int num_chars; + FT_Int code_first; + FT_Int code_last; + + FT_UShort* char_index; + FT_String** char_name; + + } T1_EncodingRec, *T1_Encoding; + + + typedef enum T1_EncodingType_ + { + T1_ENCODING_TYPE_NONE = 0, + T1_ENCODING_TYPE_ARRAY, + T1_ENCODING_TYPE_STANDARD, + T1_ENCODING_TYPE_ISOLATIN1, + T1_ENCODING_TYPE_EXPERT + + } T1_EncodingType; + + + /* used to hold extra data of PS_FontInfoRec that + * cannot be stored in the publicly defined structure. + * + * Note these can't be blended with multiple-masters. + */ + typedef struct PS_FontExtraRec_ + { + FT_UShort fs_type; + + } PS_FontExtraRec; + + + typedef struct T1_FontRec_ + { + PS_FontInfoRec font_info; /* font info dictionary */ + PS_FontExtraRec font_extra; /* font info extra fields */ + PS_PrivateRec private_dict; /* private dictionary */ + FT_String* font_name; /* top-level dictionary */ + + T1_EncodingType encoding_type; + T1_EncodingRec encoding; + + FT_Byte* subrs_block; + FT_Byte* charstrings_block; + FT_Byte* glyph_names_block; + + FT_Int num_subrs; + FT_Byte** subrs; + FT_PtrDist* subrs_len; + + FT_Int num_glyphs; + FT_String** glyph_names; /* array of glyph names */ + FT_Byte** charstrings; /* array of glyph charstrings */ + FT_PtrDist* charstrings_len; + + FT_Byte paint_type; + FT_Byte font_type; + FT_Matrix font_matrix; + FT_Vector font_offset; + FT_BBox font_bbox; + FT_Long font_id; + + FT_Fixed stroke_width; + + } T1_FontRec, *T1_Font; + + + typedef struct CID_SubrsRec_ + { + FT_UInt num_subrs; + FT_Byte** code; + + } CID_SubrsRec, *CID_Subrs; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** AFM FONT INFORMATION STRUCTURES ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct AFM_TrackKernRec_ + { + FT_Int degree; + FT_Fixed min_ptsize; + FT_Fixed min_kern; + FT_Fixed max_ptsize; + FT_Fixed max_kern; + + } AFM_TrackKernRec, *AFM_TrackKern; + + typedef struct AFM_KernPairRec_ + { + FT_Int index1; + FT_Int index2; + FT_Int x; + FT_Int y; + + } AFM_KernPairRec, *AFM_KernPair; + + typedef struct AFM_FontInfoRec_ + { + FT_Bool IsCIDFont; + FT_BBox FontBBox; + FT_Fixed Ascender; + FT_Fixed Descender; + AFM_TrackKern TrackKerns; /* free if non-NULL */ + FT_Int NumTrackKern; + AFM_KernPair KernPairs; /* free if non-NULL */ + FT_Int NumKernPair; + + } AFM_FontInfoRec, *AFM_FontInfo; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** ORIGINAL T1_FACE CLASS DEFINITION ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + typedef struct T1_FaceRec_* T1_Face; + typedef struct CID_FaceRec_* CID_Face; + + + typedef struct T1_FaceRec_ + { + FT_FaceRec root; + T1_FontRec type1; + const void* psnames; + const void* psaux; + const void* afm_data; + FT_CharMapRec charmaprecs[2]; + FT_CharMap charmaps[2]; + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + PS_Unicodes unicode_map; +#endif + + /* support for Multiple Masters fonts */ + PS_Blend blend; + + /* undocumented, optional: indices of subroutines that express */ + /* the NormalizeDesignVector and the ConvertDesignVector procedure, */ + /* respectively, as Type 2 charstrings; -1 if keywords not present */ + FT_Int ndv_idx; + FT_Int cdv_idx; + + /* undocumented, optional: has the same meaning as len_buildchar */ + /* for Type 2 fonts; manipulated by othersubrs 19, 24, and 25 */ + FT_UInt len_buildchar; + FT_Long* buildchar; + + /* since version 2.1 - interface to PostScript hinter */ + const void* pshinter; + + } T1_FaceRec; + + + typedef struct CID_FaceRec_ + { + FT_FaceRec root; + void* psnames; + void* psaux; + CID_FaceInfoRec cid; + PS_FontExtraRec font_extra; +#if 0 + void* afm_data; +#endif + CID_Subrs subrs; + + /* since version 2.1 - interface to PostScript hinter */ + void* pshinter; + + /* since version 2.1.8, but was originally positioned after `afm_data' */ + FT_Byte* binary_data; /* used if hex data has been converted */ + FT_Stream cid_stream; + + } CID_FaceRec; + + +FT_END_HEADER + +#endif /* __T1TYPES_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/tttypes.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/tttypes.h new file mode 100644 index 0000000000..acbb863b0f --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/internal/tttypes.h @@ -0,0 +1,1543 @@ +/***************************************************************************/ +/* */ +/* tttypes.h */ +/* */ +/* Basic SFNT/TrueType type definitions and interface (specification */ +/* only). */ +/* */ +/* Copyright 1996-2001, 2002, 2004, 2005, 2006, 2007, 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __TTTYPES_H__ +#define __TTTYPES_H__ + + +#include <ft2build.h> +#include FT_TRUETYPE_TABLES_H +#include FT_INTERNAL_OBJECTS_H + +#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT +#include FT_MULTIPLE_MASTERS_H +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** REQUIRED TRUETYPE/OPENTYPE TABLES DEFINITIONS ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TTC_HeaderRec */ + /* */ + /* <Description> */ + /* TrueType collection header. This table contains the offsets of */ + /* the font headers of each distinct TrueType face in the file. */ + /* */ + /* <Fields> */ + /* tag :: Must be `ttc ' to indicate a TrueType collection. */ + /* */ + /* version :: The version number. */ + /* */ + /* count :: The number of faces in the collection. The */ + /* specification says this should be an unsigned long, but */ + /* we use a signed long since we need the value -1 for */ + /* specific purposes. */ + /* */ + /* offsets :: The offsets of the font headers, one per face. */ + /* */ + typedef struct TTC_HeaderRec_ + { + FT_ULong tag; + FT_Fixed version; + FT_Long count; + FT_ULong* offsets; + + } TTC_HeaderRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* SFNT_HeaderRec */ + /* */ + /* <Description> */ + /* SFNT file format header. */ + /* */ + /* <Fields> */ + /* format_tag :: The font format tag. */ + /* */ + /* num_tables :: The number of tables in file. */ + /* */ + /* search_range :: Must be `16 * (max power of 2 <= num_tables)'. */ + /* */ + /* entry_selector :: Must be log2 of `search_range / 16'. */ + /* */ + /* range_shift :: Must be `num_tables * 16 - search_range'. */ + /* */ + typedef struct SFNT_HeaderRec_ + { + FT_ULong format_tag; + FT_UShort num_tables; + FT_UShort search_range; + FT_UShort entry_selector; + FT_UShort range_shift; + + FT_ULong offset; /* not in file */ + + } SFNT_HeaderRec, *SFNT_Header; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_TableRec */ + /* */ + /* <Description> */ + /* This structure describes a given table of a TrueType font. */ + /* */ + /* <Fields> */ + /* Tag :: A four-bytes tag describing the table. */ + /* */ + /* CheckSum :: The table checksum. This value can be ignored. */ + /* */ + /* Offset :: The offset of the table from the start of the TrueType */ + /* font in its resource. */ + /* */ + /* Length :: The table length (in bytes). */ + /* */ + typedef struct TT_TableRec_ + { + FT_ULong Tag; /* table type */ + FT_ULong CheckSum; /* table checksum */ + FT_ULong Offset; /* table file offset */ + FT_ULong Length; /* table length */ + + } TT_TableRec, *TT_Table; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_LongMetricsRec */ + /* */ + /* <Description> */ + /* A structure modeling the long metrics of the `hmtx' and `vmtx' */ + /* TrueType tables. The values are expressed in font units. */ + /* */ + /* <Fields> */ + /* advance :: The advance width or height for the glyph. */ + /* */ + /* bearing :: The left-side or top-side bearing for the glyph. */ + /* */ + typedef struct TT_LongMetricsRec_ + { + FT_UShort advance; + FT_Short bearing; + + } TT_LongMetricsRec, *TT_LongMetrics; + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* TT_ShortMetrics */ + /* */ + /* <Description> */ + /* A simple type to model the short metrics of the `hmtx' and `vmtx' */ + /* tables. */ + /* */ + typedef FT_Short TT_ShortMetrics; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_NameEntryRec */ + /* */ + /* <Description> */ + /* A structure modeling TrueType name records. Name records are used */ + /* to store important strings like family name, style name, */ + /* copyright, etc. in _localized_ versions (i.e., language, encoding, */ + /* etc). */ + /* */ + /* <Fields> */ + /* platformID :: The ID of the name's encoding platform. */ + /* */ + /* encodingID :: The platform-specific ID for the name's encoding. */ + /* */ + /* languageID :: The platform-specific ID for the name's language. */ + /* */ + /* nameID :: The ID specifying what kind of name this is. */ + /* */ + /* stringLength :: The length of the string in bytes. */ + /* */ + /* stringOffset :: The offset to the string in the `name' table. */ + /* */ + /* string :: A pointer to the string's bytes. Note that these */ + /* are usually UTF-16 encoded characters. */ + /* */ + typedef struct TT_NameEntryRec_ + { + FT_UShort platformID; + FT_UShort encodingID; + FT_UShort languageID; + FT_UShort nameID; + FT_UShort stringLength; + FT_ULong stringOffset; + + /* this last field is not defined in the spec */ + /* but used by the FreeType engine */ + + FT_Byte* string; + + } TT_NameEntryRec, *TT_NameEntry; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_NameTableRec */ + /* */ + /* <Description> */ + /* A structure modeling the TrueType name table. */ + /* */ + /* <Fields> */ + /* format :: The format of the name table. */ + /* */ + /* numNameRecords :: The number of names in table. */ + /* */ + /* storageOffset :: The offset of the name table in the `name' */ + /* TrueType table. */ + /* */ + /* names :: An array of name records. */ + /* */ + /* stream :: the file's input stream. */ + /* */ + typedef struct TT_NameTableRec_ + { + FT_UShort format; + FT_UInt numNameRecords; + FT_UInt storageOffset; + TT_NameEntryRec* names; + FT_Stream stream; + + } TT_NameTableRec, *TT_NameTable; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** OPTIONAL TRUETYPE/OPENTYPE TABLES DEFINITIONS ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_GaspRangeRec */ + /* */ + /* <Description> */ + /* A tiny structure used to model a gasp range according to the */ + /* TrueType specification. */ + /* */ + /* <Fields> */ + /* maxPPEM :: The maximum ppem value to which `gaspFlag' applies. */ + /* */ + /* gaspFlag :: A flag describing the grid-fitting and anti-aliasing */ + /* modes to be used. */ + /* */ + typedef struct TT_GaspRangeRec_ + { + FT_UShort maxPPEM; + FT_UShort gaspFlag; + + } TT_GaspRangeRec, *TT_GaspRange; + + +#define TT_GASP_GRIDFIT 0x01 +#define TT_GASP_DOGRAY 0x02 + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_GaspRec */ + /* */ + /* <Description> */ + /* A structure modeling the TrueType `gasp' table used to specify */ + /* grid-fitting and anti-aliasing behaviour. */ + /* */ + /* <Fields> */ + /* version :: The version number. */ + /* */ + /* numRanges :: The number of gasp ranges in table. */ + /* */ + /* gaspRanges :: An array of gasp ranges. */ + /* */ + typedef struct TT_Gasp_ + { + FT_UShort version; + FT_UShort numRanges; + TT_GaspRange gaspRanges; + + } TT_GaspRec; + + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_HdmxEntryRec */ + /* */ + /* <Description> */ + /* A small structure used to model the pre-computed widths of a given */ + /* size. They are found in the `hdmx' table. */ + /* */ + /* <Fields> */ + /* ppem :: The pixels per EM value at which these metrics apply. */ + /* */ + /* max_width :: The maximum advance width for this metric. */ + /* */ + /* widths :: An array of widths. Note: These are 8-bit bytes. */ + /* */ + typedef struct TT_HdmxEntryRec_ + { + FT_Byte ppem; + FT_Byte max_width; + FT_Byte* widths; + + } TT_HdmxEntryRec, *TT_HdmxEntry; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_HdmxRec */ + /* */ + /* <Description> */ + /* A structure used to model the `hdmx' table, which contains */ + /* pre-computed widths for a set of given sizes/dimensions. */ + /* */ + /* <Fields> */ + /* version :: The version number. */ + /* */ + /* num_records :: The number of hdmx records. */ + /* */ + /* records :: An array of hdmx records. */ + /* */ + typedef struct TT_HdmxRec_ + { + FT_UShort version; + FT_Short num_records; + TT_HdmxEntry records; + + } TT_HdmxRec, *TT_Hdmx; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_Kern0_PairRec */ + /* */ + /* <Description> */ + /* A structure used to model a kerning pair for the kerning table */ + /* format 0. The engine now loads this table if it finds one in the */ + /* font file. */ + /* */ + /* <Fields> */ + /* left :: The index of the left glyph in pair. */ + /* */ + /* right :: The index of the right glyph in pair. */ + /* */ + /* value :: The kerning distance. A positive value spaces the */ + /* glyphs, a negative one makes them closer. */ + /* */ + typedef struct TT_Kern0_PairRec_ + { + FT_UShort left; /* index of left glyph in pair */ + FT_UShort right; /* index of right glyph in pair */ + FT_FWord value; /* kerning value */ + + } TT_Kern0_PairRec, *TT_Kern0_Pair; + +#endif /* FT_CONFIG_OPTION_OLD_INTERNALS */ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** EMBEDDED BITMAPS SUPPORT ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_SBit_MetricsRec */ + /* */ + /* <Description> */ + /* A structure used to hold the big metrics of a given glyph bitmap */ + /* in a TrueType or OpenType font. These are usually found in the */ + /* `EBDT' (Microsoft) or `bloc' (Apple) table. */ + /* */ + /* <Fields> */ + /* height :: The glyph height in pixels. */ + /* */ + /* width :: The glyph width in pixels. */ + /* */ + /* horiBearingX :: The horizontal left bearing. */ + /* */ + /* horiBearingY :: The horizontal top bearing. */ + /* */ + /* horiAdvance :: The horizontal advance. */ + /* */ + /* vertBearingX :: The vertical left bearing. */ + /* */ + /* vertBearingY :: The vertical top bearing. */ + /* */ + /* vertAdvance :: The vertical advance. */ + /* */ + typedef struct TT_SBit_MetricsRec_ + { + FT_Byte height; + FT_Byte width; + + FT_Char horiBearingX; + FT_Char horiBearingY; + FT_Byte horiAdvance; + + FT_Char vertBearingX; + FT_Char vertBearingY; + FT_Byte vertAdvance; + + } TT_SBit_MetricsRec, *TT_SBit_Metrics; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_SBit_SmallMetricsRec */ + /* */ + /* <Description> */ + /* A structure used to hold the small metrics of a given glyph bitmap */ + /* in a TrueType or OpenType font. These are usually found in the */ + /* `EBDT' (Microsoft) or the `bdat' (Apple) table. */ + /* */ + /* <Fields> */ + /* height :: The glyph height in pixels. */ + /* */ + /* width :: The glyph width in pixels. */ + /* */ + /* bearingX :: The left-side bearing. */ + /* */ + /* bearingY :: The top-side bearing. */ + /* */ + /* advance :: The advance width or height. */ + /* */ + typedef struct TT_SBit_Small_Metrics_ + { + FT_Byte height; + FT_Byte width; + + FT_Char bearingX; + FT_Char bearingY; + FT_Byte advance; + + } TT_SBit_SmallMetricsRec, *TT_SBit_SmallMetrics; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_SBit_LineMetricsRec */ + /* */ + /* <Description> */ + /* A structure used to describe the text line metrics of a given */ + /* bitmap strike, for either a horizontal or vertical layout. */ + /* */ + /* <Fields> */ + /* ascender :: The ascender in pixels. */ + /* */ + /* descender :: The descender in pixels. */ + /* */ + /* max_width :: The maximum glyph width in pixels. */ + /* */ + /* caret_slope_enumerator :: Rise of the caret slope, typically set */ + /* to 1 for non-italic fonts. */ + /* */ + /* caret_slope_denominator :: Rise of the caret slope, typically set */ + /* to 0 for non-italic fonts. */ + /* */ + /* caret_offset :: Offset in pixels to move the caret for */ + /* proper positioning. */ + /* */ + /* min_origin_SB :: Minimum of horiBearingX (resp. */ + /* vertBearingY). */ + /* min_advance_SB :: Minimum of */ + /* */ + /* horizontal advance - */ + /* ( horiBearingX + width ) */ + /* */ + /* resp. */ + /* */ + /* vertical advance - */ + /* ( vertBearingY + height ) */ + /* */ + /* max_before_BL :: Maximum of horiBearingY (resp. */ + /* vertBearingY). */ + /* */ + /* min_after_BL :: Minimum of */ + /* */ + /* horiBearingY - height */ + /* */ + /* resp. */ + /* */ + /* vertBearingX - width */ + /* */ + /* pads :: Unused (to make the size of the record */ + /* a multiple of 32 bits. */ + /* */ + typedef struct TT_SBit_LineMetricsRec_ + { + FT_Char ascender; + FT_Char descender; + FT_Byte max_width; + FT_Char caret_slope_numerator; + FT_Char caret_slope_denominator; + FT_Char caret_offset; + FT_Char min_origin_SB; + FT_Char min_advance_SB; + FT_Char max_before_BL; + FT_Char min_after_BL; + FT_Char pads[2]; + + } TT_SBit_LineMetricsRec, *TT_SBit_LineMetrics; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_SBit_RangeRec */ + /* */ + /* <Description> */ + /* A TrueType/OpenType subIndexTable as defined in the `EBLC' */ + /* (Microsoft) or `bloc' (Apple) tables. */ + /* */ + /* <Fields> */ + /* first_glyph :: The first glyph index in the range. */ + /* */ + /* last_glyph :: The last glyph index in the range. */ + /* */ + /* index_format :: The format of index table. Valid values are 1 */ + /* to 5. */ + /* */ + /* image_format :: The format of `EBDT' image data. */ + /* */ + /* image_offset :: The offset to image data in `EBDT'. */ + /* */ + /* image_size :: For index formats 2 and 5. This is the size in */ + /* bytes of each glyph bitmap. */ + /* */ + /* big_metrics :: For index formats 2 and 5. This is the big */ + /* metrics for each glyph bitmap. */ + /* */ + /* num_glyphs :: For index formats 4 and 5. This is the number of */ + /* glyphs in the code array. */ + /* */ + /* glyph_offsets :: For index formats 1 and 3. */ + /* */ + /* glyph_codes :: For index formats 4 and 5. */ + /* */ + /* table_offset :: The offset of the index table in the `EBLC' */ + /* table. Only used during strike loading. */ + /* */ + typedef struct TT_SBit_RangeRec_ + { + FT_UShort first_glyph; + FT_UShort last_glyph; + + FT_UShort index_format; + FT_UShort image_format; + FT_ULong image_offset; + + FT_ULong image_size; + TT_SBit_MetricsRec metrics; + FT_ULong num_glyphs; + + FT_ULong* glyph_offsets; + FT_UShort* glyph_codes; + + FT_ULong table_offset; + + } TT_SBit_RangeRec, *TT_SBit_Range; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_SBit_StrikeRec */ + /* */ + /* <Description> */ + /* A structure used describe a given bitmap strike in the `EBLC' */ + /* (Microsoft) or `bloc' (Apple) tables. */ + /* */ + /* <Fields> */ + /* num_index_ranges :: The number of index ranges. */ + /* */ + /* index_ranges :: An array of glyph index ranges. */ + /* */ + /* color_ref :: Unused. `color_ref' is put in for future */ + /* enhancements, but these fields are already */ + /* in use by other platforms (e.g. Newton). */ + /* For details, please see */ + /* */ + /* http://fonts.apple.com/ */ + /* TTRefMan/RM06/Chap6bloc.html */ + /* */ + /* hori :: The line metrics for horizontal layouts. */ + /* */ + /* vert :: The line metrics for vertical layouts. */ + /* */ + /* start_glyph :: The lowest glyph index for this strike. */ + /* */ + /* end_glyph :: The highest glyph index for this strike. */ + /* */ + /* x_ppem :: The number of horizontal pixels per EM. */ + /* */ + /* y_ppem :: The number of vertical pixels per EM. */ + /* */ + /* bit_depth :: The bit depth. Valid values are 1, 2, 4, */ + /* and 8. */ + /* */ + /* flags :: Is this a vertical or horizontal strike? For */ + /* details, please see */ + /* */ + /* http://fonts.apple.com/ */ + /* TTRefMan/RM06/Chap6bloc.html */ + /* */ + typedef struct TT_SBit_StrikeRec_ + { + FT_Int num_ranges; + TT_SBit_Range sbit_ranges; + FT_ULong ranges_offset; + + FT_ULong color_ref; + + TT_SBit_LineMetricsRec hori; + TT_SBit_LineMetricsRec vert; + + FT_UShort start_glyph; + FT_UShort end_glyph; + + FT_Byte x_ppem; + FT_Byte y_ppem; + + FT_Byte bit_depth; + FT_Char flags; + + } TT_SBit_StrikeRec, *TT_SBit_Strike; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_SBit_ComponentRec */ + /* */ + /* <Description> */ + /* A simple structure to describe a compound sbit element. */ + /* */ + /* <Fields> */ + /* glyph_code :: The element's glyph index. */ + /* */ + /* x_offset :: The element's left bearing. */ + /* */ + /* y_offset :: The element's top bearing. */ + /* */ + typedef struct TT_SBit_ComponentRec_ + { + FT_UShort glyph_code; + FT_Char x_offset; + FT_Char y_offset; + + } TT_SBit_ComponentRec, *TT_SBit_Component; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_SBit_ScaleRec */ + /* */ + /* <Description> */ + /* A structure used describe a given bitmap scaling table, as defined */ + /* in the `EBSC' table. */ + /* */ + /* <Fields> */ + /* hori :: The horizontal line metrics. */ + /* */ + /* vert :: The vertical line metrics. */ + /* */ + /* x_ppem :: The number of horizontal pixels per EM. */ + /* */ + /* y_ppem :: The number of vertical pixels per EM. */ + /* */ + /* x_ppem_substitute :: Substitution x_ppem value. */ + /* */ + /* y_ppem_substitute :: Substitution y_ppem value. */ + /* */ + typedef struct TT_SBit_ScaleRec_ + { + TT_SBit_LineMetricsRec hori; + TT_SBit_LineMetricsRec vert; + + FT_Byte x_ppem; + FT_Byte y_ppem; + + FT_Byte x_ppem_substitute; + FT_Byte y_ppem_substitute; + + } TT_SBit_ScaleRec, *TT_SBit_Scale; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** POSTSCRIPT GLYPH NAMES SUPPORT ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_Post_20Rec */ + /* */ + /* <Description> */ + /* Postscript names sub-table, format 2.0. Stores the PS name of */ + /* each glyph in the font face. */ + /* */ + /* <Fields> */ + /* num_glyphs :: The number of named glyphs in the table. */ + /* */ + /* num_names :: The number of PS names stored in the table. */ + /* */ + /* glyph_indices :: The indices of the glyphs in the names arrays. */ + /* */ + /* glyph_names :: The PS names not in Mac Encoding. */ + /* */ + typedef struct TT_Post_20Rec_ + { + FT_UShort num_glyphs; + FT_UShort num_names; + FT_UShort* glyph_indices; + FT_Char** glyph_names; + + } TT_Post_20Rec, *TT_Post_20; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_Post_25Rec */ + /* */ + /* <Description> */ + /* Postscript names sub-table, format 2.5. Stores the PS name of */ + /* each glyph in the font face. */ + /* */ + /* <Fields> */ + /* num_glyphs :: The number of glyphs in the table. */ + /* */ + /* offsets :: An array of signed offsets in a normal Mac */ + /* Postscript name encoding. */ + /* */ + typedef struct TT_Post_25_ + { + FT_UShort num_glyphs; + FT_Char* offsets; + + } TT_Post_25Rec, *TT_Post_25; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_Post_NamesRec */ + /* */ + /* <Description> */ + /* Postscript names table, either format 2.0 or 2.5. */ + /* */ + /* <Fields> */ + /* loaded :: A flag to indicate whether the PS names are loaded. */ + /* */ + /* format_20 :: The sub-table used for format 2.0. */ + /* */ + /* format_25 :: The sub-table used for format 2.5. */ + /* */ + typedef struct TT_Post_NamesRec_ + { + FT_Bool loaded; + + union + { + TT_Post_20Rec format_20; + TT_Post_25Rec format_25; + + } names; + + } TT_Post_NamesRec, *TT_Post_Names; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** GX VARIATION TABLE SUPPORT ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + +#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT + typedef struct GX_BlendRec_ *GX_Blend; +#endif + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** EMBEDDED BDF PROPERTIES TABLE SUPPORT ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + /* + * These types are used to support a `BDF ' table that isn't part of the + * official TrueType specification. It is mainly used in SFNT-based + * bitmap fonts that were generated from a set of BDF fonts. + * + * The format of the table is as follows. + * + * USHORT version `BDF ' table version number, should be 0x0001. + * USHORT strikeCount Number of strikes (bitmap sizes) in this table. + * ULONG stringTable Offset (from start of BDF table) to string + * table. + * + * This is followed by an array of `strikeCount' descriptors, having the + * following format. + * + * USHORT ppem Vertical pixels per EM for this strike. + * USHORT numItems Number of items for this strike (properties and + * atoms). Maximum is 255. + * + * This array in turn is followed by `strikeCount' value sets. Each + * `value set' is an array of `numItems' items with the following format. + * + * ULONG item_name Offset in string table to item name. + * USHORT item_type The item type. Possible values are + * 0 => string (e.g., COMMENT) + * 1 => atom (e.g., FONT or even SIZE) + * 2 => int32 + * 3 => uint32 + * 0x10 => A flag to indicate a properties. This + * is ORed with the above values. + * ULONG item_value For strings => Offset into string table without + * the corresponding double quotes. + * For atoms => Offset into string table. + * For integers => Direct value. + * + * All strings in the string table consist of bytes and are + * zero-terminated. + * + */ + +#ifdef TT_CONFIG_OPTION_BDF + + typedef struct TT_BDFRec_ + { + FT_Byte* table; + FT_Byte* table_end; + FT_Byte* strings; + FT_ULong strings_size; + FT_UInt num_strikes; + FT_Bool loaded; + + } TT_BDFRec, *TT_BDF; + +#endif /* TT_CONFIG_OPTION_BDF */ + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** ORIGINAL TT_FACE CLASS DEFINITION ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This structure/class is defined here because it is common to the */ + /* following formats: TTF, OpenType-TT, and OpenType-CFF. */ + /* */ + /* Note, however, that the classes TT_Size and TT_GlyphSlot are not */ + /* shared between font drivers, and are thus defined in `ttobjs.h'. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Type> */ + /* TT_Face */ + /* */ + /* <Description> */ + /* A handle to a TrueType face/font object. A TT_Face encapsulates */ + /* the resolution and scaling independent parts of a TrueType font */ + /* resource. */ + /* */ + /* <Note> */ + /* The TT_Face structure is also used as a `parent class' for the */ + /* OpenType-CFF class (T2_Face). */ + /* */ + typedef struct TT_FaceRec_* TT_Face; + + + /* a function type used for the truetype bytecode interpreter hooks */ + typedef FT_Error + (*TT_Interpreter)( void* exec_context ); + + /* forward declaration */ + typedef struct TT_LoaderRec_* TT_Loader; + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Loader_GotoTableFunc */ + /* */ + /* <Description> */ + /* Seeks a stream to the start of a given TrueType table. */ + /* */ + /* <Input> */ + /* face :: A handle to the target face object. */ + /* */ + /* tag :: A 4-byte tag used to name the table. */ + /* */ + /* stream :: The input stream. */ + /* */ + /* <Output> */ + /* length :: The length of the table in bytes. Set to 0 if not */ + /* needed. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* The stream cursor must be at the font file's origin. */ + /* */ + typedef FT_Error + (*TT_Loader_GotoTableFunc)( TT_Face face, + FT_ULong tag, + FT_Stream stream, + FT_ULong* length ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Loader_StartGlyphFunc */ + /* */ + /* <Description> */ + /* Seeks a stream to the start of a given glyph element, and opens a */ + /* frame for it. */ + /* */ + /* <Input> */ + /* loader :: The current TrueType glyph loader object. */ + /* */ + /* glyph index :: The index of the glyph to access. */ + /* */ + /* offset :: The offset of the glyph according to the */ + /* `locations' table. */ + /* */ + /* byte_count :: The size of the frame in bytes. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + /* <Note> */ + /* This function is normally equivalent to FT_STREAM_SEEK(offset) */ + /* followed by FT_FRAME_ENTER(byte_count) with the loader's stream, */ + /* but alternative formats (e.g. compressed ones) might use something */ + /* different. */ + /* */ + typedef FT_Error + (*TT_Loader_StartGlyphFunc)( TT_Loader loader, + FT_UInt glyph_index, + FT_ULong offset, + FT_UInt byte_count ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Loader_ReadGlyphFunc */ + /* */ + /* <Description> */ + /* Reads one glyph element (its header, a simple glyph, or a */ + /* composite) from the loader's current stream frame. */ + /* */ + /* <Input> */ + /* loader :: The current TrueType glyph loader object. */ + /* */ + /* <Return> */ + /* FreeType error code. 0 means success. */ + /* */ + typedef FT_Error + (*TT_Loader_ReadGlyphFunc)( TT_Loader loader ); + + + /*************************************************************************/ + /* */ + /* <FuncType> */ + /* TT_Loader_EndGlyphFunc */ + /* */ + /* <Description> */ + /* Closes the current loader stream frame for the glyph. */ + /* */ + /* <Input> */ + /* loader :: The current TrueType glyph loader object. */ + /* */ + typedef void + (*TT_Loader_EndGlyphFunc)( TT_Loader loader ); + + + /*************************************************************************/ + /* */ + /* TrueType Face Type */ + /* */ + /* <Struct> */ + /* TT_Face */ + /* */ + /* <Description> */ + /* The TrueType face class. These objects model the resolution and */ + /* point-size independent data found in a TrueType font file. */ + /* */ + /* <Fields> */ + /* root :: The base FT_Face structure, managed by the */ + /* base layer. */ + /* */ + /* ttc_header :: The TrueType collection header, used when */ + /* the file is a `ttc' rather than a `ttf'. */ + /* For ordinary font files, the field */ + /* `ttc_header.count' is set to 0. */ + /* */ + /* format_tag :: The font format tag. */ + /* */ + /* num_tables :: The number of TrueType tables in this font */ + /* file. */ + /* */ + /* dir_tables :: The directory of TrueType tables for this */ + /* font file. */ + /* */ + /* header :: The font's font header (`head' table). */ + /* Read on font opening. */ + /* */ + /* horizontal :: The font's horizontal header (`hhea' */ + /* table). This field also contains the */ + /* associated horizontal metrics table */ + /* (`hmtx'). */ + /* */ + /* max_profile :: The font's maximum profile table. Read on */ + /* font opening. Note that some maximum */ + /* values cannot be taken directly from this */ + /* table. We thus define additional fields */ + /* below to hold the computed maxima. */ + /* */ + /* vertical_info :: A boolean which is set when the font file */ + /* contains vertical metrics. If not, the */ + /* value of the `vertical' field is */ + /* undefined. */ + /* */ + /* vertical :: The font's vertical header (`vhea' table). */ + /* This field also contains the associated */ + /* vertical metrics table (`vmtx'), if found. */ + /* IMPORTANT: The contents of this field is */ + /* undefined if the `verticalInfo' field is */ + /* unset. */ + /* */ + /* num_names :: The number of name records within this */ + /* TrueType font. */ + /* */ + /* name_table :: The table of name records (`name'). */ + /* */ + /* os2 :: The font's OS/2 table (`OS/2'). */ + /* */ + /* postscript :: The font's PostScript table (`post' */ + /* table). The PostScript glyph names are */ + /* not loaded by the driver on face opening. */ + /* See the `ttpost' module for more details. */ + /* */ + /* cmap_table :: Address of the face's `cmap' SFNT table */ + /* in memory (it's an extracted frame). */ + /* */ + /* cmap_size :: The size in bytes of the `cmap_table' */ + /* described above. */ + /* */ + /* goto_table :: A function called by each TrueType table */ + /* loader to position a stream's cursor to */ + /* the start of a given table according to */ + /* its tag. It defaults to TT_Goto_Face but */ + /* can be different for strange formats (e.g. */ + /* Type 42). */ + /* */ + /* access_glyph_frame :: A function used to access the frame of a */ + /* given glyph within the face's font file. */ + /* */ + /* forget_glyph_frame :: A function used to forget the frame of a */ + /* given glyph when all data has been loaded. */ + /* */ + /* read_glyph_header :: A function used to read a glyph header. */ + /* It must be called between an `access' and */ + /* `forget'. */ + /* */ + /* read_simple_glyph :: A function used to read a simple glyph. */ + /* It must be called after the header was */ + /* read, and before the `forget'. */ + /* */ + /* read_composite_glyph :: A function used to read a composite glyph. */ + /* It must be called after the header was */ + /* read, and before the `forget'. */ + /* */ + /* sfnt :: A pointer to the SFNT service. */ + /* */ + /* psnames :: A pointer to the PostScript names service. */ + /* */ + /* hdmx :: The face's horizontal device metrics */ + /* (`hdmx' table). This table is optional in */ + /* TrueType/OpenType fonts. */ + /* */ + /* gasp :: The grid-fitting and scaling properties */ + /* table (`gasp'). This table is optional in */ + /* TrueType/OpenType fonts. */ + /* */ + /* pclt :: The `pclt' SFNT table. */ + /* */ + /* num_sbit_strikes :: The number of sbit strikes, i.e., bitmap */ + /* sizes, embedded in this font. */ + /* */ + /* sbit_strikes :: An array of sbit strikes embedded in this */ + /* font. This table is optional in a */ + /* TrueType/OpenType font. */ + /* */ + /* num_sbit_scales :: The number of sbit scales for this font. */ + /* */ + /* sbit_scales :: Array of sbit scales embedded in this */ + /* font. This table is optional in a */ + /* TrueType/OpenType font. */ + /* */ + /* postscript_names :: A table used to store the Postscript names */ + /* of the glyphs for this font. See the */ + /* file `ttconfig.h' for comments on the */ + /* TT_CONFIG_OPTION_POSTSCRIPT_NAMES option. */ + /* */ + /* num_locations :: The number of glyph locations in this */ + /* TrueType file. This should be */ + /* identical to the number of glyphs. */ + /* Ignored for Type 2 fonts. */ + /* */ + /* glyph_locations :: An array of longs. These are offsets to */ + /* glyph data within the `glyf' table. */ + /* Ignored for Type 2 font faces. */ + /* */ + /* glyf_len :: The length of the `glyf' table. Needed */ + /* for malformed `loca' tables. */ + /* */ + /* font_program_size :: Size in bytecodes of the face's font */ + /* program. 0 if none defined. Ignored for */ + /* Type 2 fonts. */ + /* */ + /* font_program :: The face's font program (bytecode stream) */ + /* executed at load time, also used during */ + /* glyph rendering. Comes from the `fpgm' */ + /* table. Ignored for Type 2 font fonts. */ + /* */ + /* cvt_program_size :: The size in bytecodes of the face's cvt */ + /* program. Ignored for Type 2 fonts. */ + /* */ + /* cvt_program :: The face's cvt program (bytecode stream) */ + /* executed each time an instance/size is */ + /* changed/reset. Comes from the `prep' */ + /* table. Ignored for Type 2 fonts. */ + /* */ + /* cvt_size :: Size of the control value table (in */ + /* entries). Ignored for Type 2 fonts. */ + /* */ + /* cvt :: The face's original control value table. */ + /* Coordinates are expressed in unscaled font */ + /* units. Comes from the `cvt ' table. */ + /* Ignored for Type 2 fonts. */ + /* */ + /* num_kern_pairs :: The number of kerning pairs present in the */ + /* font file. The engine only loads the */ + /* first horizontal format 0 kern table it */ + /* finds in the font file. Ignored for */ + /* Type 2 fonts. */ + /* */ + /* kern_table_index :: The index of the kerning table in the font */ + /* kerning directory. Ignored for Type 2 */ + /* fonts. */ + /* */ + /* interpreter :: A pointer to the TrueType bytecode */ + /* interpreters field is also used to hook */ + /* the debugger in `ttdebug'. */ + /* */ + /* unpatented_hinting :: If true, use only unpatented methods in */ + /* the bytecode interpreter. */ + /* */ + /* doblend :: A boolean which is set if the font should */ + /* be blended (this is for GX var). */ + /* */ + /* blend :: Contains the data needed to control GX */ + /* variation tables (rather like Multiple */ + /* Master data). */ + /* */ + /* extra :: Reserved for third-party font drivers. */ + /* */ + /* postscript_name :: The PS name of the font. Used by the */ + /* postscript name service. */ + /* */ + typedef struct TT_FaceRec_ + { + FT_FaceRec root; + + TTC_HeaderRec ttc_header; + + FT_ULong format_tag; + FT_UShort num_tables; + TT_Table dir_tables; + + TT_Header header; /* TrueType header table */ + TT_HoriHeader horizontal; /* TrueType horizontal header */ + + TT_MaxProfile max_profile; +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + FT_ULong max_components; /* stubbed to 0 */ +#endif + + FT_Bool vertical_info; + TT_VertHeader vertical; /* TT Vertical header, if present */ + + FT_UShort num_names; /* number of name records */ + TT_NameTableRec name_table; /* name table */ + + TT_OS2 os2; /* TrueType OS/2 table */ + TT_Postscript postscript; /* TrueType Postscript table */ + + FT_Byte* cmap_table; /* extracted `cmap' table */ + FT_ULong cmap_size; + + TT_Loader_GotoTableFunc goto_table; + + TT_Loader_StartGlyphFunc access_glyph_frame; + TT_Loader_EndGlyphFunc forget_glyph_frame; + TT_Loader_ReadGlyphFunc read_glyph_header; + TT_Loader_ReadGlyphFunc read_simple_glyph; + TT_Loader_ReadGlyphFunc read_composite_glyph; + + /* a typeless pointer to the SFNT_Interface table used to load */ + /* the basic TrueType tables in the face object */ + void* sfnt; + + /* a typeless pointer to the FT_Service_PsCMapsRec table used to */ + /* handle glyph names <-> unicode & Mac values */ + void* psnames; + + + /***********************************************************************/ + /* */ + /* Optional TrueType/OpenType tables */ + /* */ + /***********************************************************************/ + + /* horizontal device metrics */ +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + TT_HdmxRec hdmx; +#endif + + /* grid-fitting and scaling table */ + TT_GaspRec gasp; /* the `gasp' table */ + + /* PCL 5 table */ + TT_PCLT pclt; + + /* embedded bitmaps support */ +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + FT_ULong num_sbit_strikes; + TT_SBit_Strike sbit_strikes; +#endif + + FT_ULong num_sbit_scales; + TT_SBit_Scale sbit_scales; + + /* postscript names table */ + TT_Post_NamesRec postscript_names; + + + /***********************************************************************/ + /* */ + /* TrueType-specific fields (ignored by the OTF-Type2 driver) */ + /* */ + /***********************************************************************/ + + /* the glyph locations */ +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + FT_UShort num_locations_stub; + FT_Long* glyph_locations_stub; +#endif + + /* the font program, if any */ + FT_ULong font_program_size; + FT_Byte* font_program; + + /* the cvt program, if any */ + FT_ULong cvt_program_size; + FT_Byte* cvt_program; + + /* the original, unscaled, control value table */ + FT_ULong cvt_size; + FT_Short* cvt; + +#ifdef FT_CONFIG_OPTION_OLD_INTERNALS + /* the format 0 kerning table, if any */ + FT_Int num_kern_pairs; + FT_Int kern_table_index; + TT_Kern0_Pair kern_pairs; +#endif + + /* A pointer to the bytecode interpreter to use. This is also */ + /* used to hook the debugger for the `ttdebug' utility. */ + TT_Interpreter interpreter; + +#ifdef TT_CONFIG_OPTION_UNPATENTED_HINTING + /* Use unpatented hinting only. */ + FT_Bool unpatented_hinting; +#endif + + /***********************************************************************/ + /* */ + /* Other tables or fields. This is used by derivative formats like */ + /* OpenType. */ + /* */ + /***********************************************************************/ + + FT_Generic extra; + + const char* postscript_name; + + /* since version 2.1.8, but was originally placed after */ + /* `glyph_locations_stub' */ + FT_ULong glyf_len; + + /* since version 2.1.8, but was originally placed before `extra' */ +#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT + FT_Bool doblend; + GX_Blend blend; +#endif + + /* since version 2.2 */ + + FT_Byte* horz_metrics; + FT_ULong horz_metrics_size; + + FT_Byte* vert_metrics; + FT_ULong vert_metrics_size; + + FT_ULong num_locations; /* in broken TTF, gid > 0xFFFF */ + FT_Byte* glyph_locations; + + FT_Byte* hdmx_table; + FT_ULong hdmx_table_size; + FT_UInt hdmx_record_count; + FT_ULong hdmx_record_size; + FT_Byte* hdmx_record_sizes; + + FT_Byte* sbit_table; + FT_ULong sbit_table_size; + FT_UInt sbit_num_strikes; + + FT_Byte* kern_table; + FT_ULong kern_table_size; + FT_UInt num_kern_tables; + FT_UInt32 kern_avail_bits; + FT_UInt32 kern_order_bits; + +#ifdef TT_CONFIG_OPTION_BDF + TT_BDFRec bdf; +#endif /* TT_CONFIG_OPTION_BDF */ + + /* since 2.3.0 */ + FT_ULong horz_metrics_offset; + FT_ULong vert_metrics_offset; + + } TT_FaceRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_GlyphZoneRec */ + /* */ + /* <Description> */ + /* A glyph zone is used to load, scale and hint glyph outline */ + /* coordinates. */ + /* */ + /* <Fields> */ + /* memory :: A handle to the memory manager. */ + /* */ + /* max_points :: The maximal size in points of the zone. */ + /* */ + /* max_contours :: Max size in links contours of the zone. */ + /* */ + /* n_points :: The current number of points in the zone. */ + /* */ + /* n_contours :: The current number of contours in the zone. */ + /* */ + /* org :: The original glyph coordinates (font */ + /* units/scaled). */ + /* */ + /* cur :: The current glyph coordinates (scaled/hinted). */ + /* */ + /* tags :: The point control tags. */ + /* */ + /* contours :: The contours end points. */ + /* */ + /* first_point :: Offset of the current subglyph's first point. */ + /* */ + typedef struct TT_GlyphZoneRec_ + { + FT_Memory memory; + FT_UShort max_points; + FT_UShort max_contours; + FT_UShort n_points; /* number of points in zone */ + FT_Short n_contours; /* number of contours */ + + FT_Vector* org; /* original point coordinates */ + FT_Vector* cur; /* current point coordinates */ + FT_Vector* orus; /* original (unscaled) point coordinates */ + + FT_Byte* tags; /* current touch flags */ + FT_UShort* contours; /* contour end points */ + + FT_UShort first_point; /* offset of first (#0) point */ + + } TT_GlyphZoneRec, *TT_GlyphZone; + + + /* handle to execution context */ + typedef struct TT_ExecContextRec_* TT_ExecContext; + + /* glyph loader structure */ + typedef struct TT_LoaderRec_ + { + FT_Face face; + FT_Size size; + FT_GlyphSlot glyph; + FT_GlyphLoader gloader; + + FT_ULong load_flags; + FT_UInt glyph_index; + + FT_Stream stream; + FT_Int byte_len; + + FT_Short n_contours; + FT_BBox bbox; + FT_Int left_bearing; + FT_Int advance; + FT_Int linear; + FT_Bool linear_def; + FT_Bool preserve_pps; + FT_Vector pp1; + FT_Vector pp2; + + FT_ULong glyf_offset; + + /* the zone where we load our glyphs */ + TT_GlyphZoneRec base; + TT_GlyphZoneRec zone; + + TT_ExecContext exec; + FT_Byte* instructions; + FT_ULong ins_pos; + + /* for possible extensibility in other formats */ + void* other; + + /* since version 2.1.8 */ + FT_Int top_bearing; + FT_Int vadvance; + FT_Vector pp3; + FT_Vector pp4; + + /* since version 2.2.1 */ + FT_Byte* cursor; + FT_Byte* limit; + + } TT_LoaderRec; + + +FT_END_HEADER + +#endif /* __TTTYPES_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/t1tables.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/t1tables.h new file mode 100644 index 0000000000..5e2a3934ce --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/t1tables.h @@ -0,0 +1,504 @@ +/***************************************************************************/ +/* */ +/* t1tables.h */ +/* */ +/* Basic Type 1/Type 2 tables definitions and interface (specification */ +/* only). */ +/* */ +/* Copyright 1996-2001, 2002, 2003, 2004, 2006, 2008, 2009 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __T1TABLES_H__ +#define __T1TABLES_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* type1_tables */ + /* */ + /* <Title> */ + /* Type 1 Tables */ + /* */ + /* <Abstract> */ + /* Type~1 (PostScript) specific font tables. */ + /* */ + /* <Description> */ + /* This section contains the definition of Type 1-specific tables, */ + /* including structures related to other PostScript font formats. */ + /* */ + /*************************************************************************/ + + + /* Note that we separate font data in PS_FontInfoRec and PS_PrivateRec */ + /* structures in order to support Multiple Master fonts. */ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* PS_FontInfoRec */ + /* */ + /* <Description> */ + /* A structure used to model a Type~1 or Type~2 FontInfo dictionary. */ + /* Note that for Multiple Master fonts, each instance has its own */ + /* FontInfo dictionary. */ + /* */ + typedef struct PS_FontInfoRec_ + { + FT_String* version; + FT_String* notice; + FT_String* full_name; + FT_String* family_name; + FT_String* weight; + FT_Long italic_angle; + FT_Bool is_fixed_pitch; + FT_Short underline_position; + FT_UShort underline_thickness; + + } PS_FontInfoRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* PS_FontInfo */ + /* */ + /* <Description> */ + /* A handle to a @PS_FontInfoRec structure. */ + /* */ + typedef struct PS_FontInfoRec_* PS_FontInfo; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* T1_FontInfo */ + /* */ + /* <Description> */ + /* This type is equivalent to @PS_FontInfoRec. It is deprecated but */ + /* kept to maintain source compatibility between various versions of */ + /* FreeType. */ + /* */ + typedef PS_FontInfoRec T1_FontInfo; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* PS_PrivateRec */ + /* */ + /* <Description> */ + /* A structure used to model a Type~1 or Type~2 private dictionary. */ + /* Note that for Multiple Master fonts, each instance has its own */ + /* Private dictionary. */ + /* */ + typedef struct PS_PrivateRec_ + { + FT_Int unique_id; + FT_Int lenIV; + + FT_Byte num_blue_values; + FT_Byte num_other_blues; + FT_Byte num_family_blues; + FT_Byte num_family_other_blues; + + FT_Short blue_values[14]; + FT_Short other_blues[10]; + + FT_Short family_blues [14]; + FT_Short family_other_blues[10]; + + FT_Fixed blue_scale; + FT_Int blue_shift; + FT_Int blue_fuzz; + + FT_UShort standard_width[1]; + FT_UShort standard_height[1]; + + FT_Byte num_snap_widths; + FT_Byte num_snap_heights; + FT_Bool force_bold; + FT_Bool round_stem_up; + + FT_Short snap_widths [13]; /* including std width */ + FT_Short snap_heights[13]; /* including std height */ + + FT_Fixed expansion_factor; + + FT_Long language_group; + FT_Long password; + + FT_Short min_feature[2]; + + } PS_PrivateRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* PS_Private */ + /* */ + /* <Description> */ + /* A handle to a @PS_PrivateRec structure. */ + /* */ + typedef struct PS_PrivateRec_* PS_Private; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* T1_Private */ + /* */ + /* <Description> */ + /* This type is equivalent to @PS_PrivateRec. It is deprecated but */ + /* kept to maintain source compatibility between various versions of */ + /* FreeType. */ + /* */ + typedef PS_PrivateRec T1_Private; + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* T1_Blend_Flags */ + /* */ + /* <Description> */ + /* A set of flags used to indicate which fields are present in a */ + /* given blend dictionary (font info or private). Used to support */ + /* Multiple Masters fonts. */ + /* */ + typedef enum T1_Blend_Flags_ + { + /*# required fields in a FontInfo blend dictionary */ + T1_BLEND_UNDERLINE_POSITION = 0, + T1_BLEND_UNDERLINE_THICKNESS, + T1_BLEND_ITALIC_ANGLE, + + /*# required fields in a Private blend dictionary */ + T1_BLEND_BLUE_VALUES, + T1_BLEND_OTHER_BLUES, + T1_BLEND_STANDARD_WIDTH, + T1_BLEND_STANDARD_HEIGHT, + T1_BLEND_STEM_SNAP_WIDTHS, + T1_BLEND_STEM_SNAP_HEIGHTS, + T1_BLEND_BLUE_SCALE, + T1_BLEND_BLUE_SHIFT, + T1_BLEND_FAMILY_BLUES, + T1_BLEND_FAMILY_OTHER_BLUES, + T1_BLEND_FORCE_BOLD, + + /*# never remove */ + T1_BLEND_MAX + + } T1_Blend_Flags; + + /* */ + + + /*# backwards compatible definitions */ +#define t1_blend_underline_position T1_BLEND_UNDERLINE_POSITION +#define t1_blend_underline_thickness T1_BLEND_UNDERLINE_THICKNESS +#define t1_blend_italic_angle T1_BLEND_ITALIC_ANGLE +#define t1_blend_blue_values T1_BLEND_BLUE_VALUES +#define t1_blend_other_blues T1_BLEND_OTHER_BLUES +#define t1_blend_standard_widths T1_BLEND_STANDARD_WIDTH +#define t1_blend_standard_height T1_BLEND_STANDARD_HEIGHT +#define t1_blend_stem_snap_widths T1_BLEND_STEM_SNAP_WIDTHS +#define t1_blend_stem_snap_heights T1_BLEND_STEM_SNAP_HEIGHTS +#define t1_blend_blue_scale T1_BLEND_BLUE_SCALE +#define t1_blend_blue_shift T1_BLEND_BLUE_SHIFT +#define t1_blend_family_blues T1_BLEND_FAMILY_BLUES +#define t1_blend_family_other_blues T1_BLEND_FAMILY_OTHER_BLUES +#define t1_blend_force_bold T1_BLEND_FORCE_BOLD +#define t1_blend_max T1_BLEND_MAX + + + /* maximum number of Multiple Masters designs, as defined in the spec */ +#define T1_MAX_MM_DESIGNS 16 + + /* maximum number of Multiple Masters axes, as defined in the spec */ +#define T1_MAX_MM_AXIS 4 + + /* maximum number of elements in a design map */ +#define T1_MAX_MM_MAP_POINTS 20 + + + /* this structure is used to store the BlendDesignMap entry for an axis */ + typedef struct PS_DesignMap_ + { + FT_Byte num_points; + FT_Long* design_points; + FT_Fixed* blend_points; + + } PS_DesignMapRec, *PS_DesignMap; + + /* backwards-compatible definition */ + typedef PS_DesignMapRec T1_DesignMap; + + + typedef struct PS_BlendRec_ + { + FT_UInt num_designs; + FT_UInt num_axis; + + FT_String* axis_names[T1_MAX_MM_AXIS]; + FT_Fixed* design_pos[T1_MAX_MM_DESIGNS]; + PS_DesignMapRec design_map[T1_MAX_MM_AXIS]; + + FT_Fixed* weight_vector; + FT_Fixed* default_weight_vector; + + PS_FontInfo font_infos[T1_MAX_MM_DESIGNS + 1]; + PS_Private privates [T1_MAX_MM_DESIGNS + 1]; + + FT_ULong blend_bitflags; + + FT_BBox* bboxes [T1_MAX_MM_DESIGNS + 1]; + + /* since 2.3.0 */ + + /* undocumented, optional: the default design instance; */ + /* corresponds to default_weight_vector -- */ + /* num_default_design_vector == 0 means it is not present */ + /* in the font and associated metrics files */ + FT_UInt default_design_vector[T1_MAX_MM_DESIGNS]; + FT_UInt num_default_design_vector; + + } PS_BlendRec, *PS_Blend; + + + /* backwards-compatible definition */ + typedef PS_BlendRec T1_Blend; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* CID_FaceDictRec */ + /* */ + /* <Description> */ + /* A structure used to represent data in a CID top-level dictionary. */ + /* */ + typedef struct CID_FaceDictRec_ + { + PS_PrivateRec private_dict; + + FT_UInt len_buildchar; + FT_Fixed forcebold_threshold; + FT_Pos stroke_width; + FT_Fixed expansion_factor; + + FT_Byte paint_type; + FT_Byte font_type; + FT_Matrix font_matrix; + FT_Vector font_offset; + + FT_UInt num_subrs; + FT_ULong subrmap_offset; + FT_Int sd_bytes; + + } CID_FaceDictRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* CID_FaceDict */ + /* */ + /* <Description> */ + /* A handle to a @CID_FaceDictRec structure. */ + /* */ + typedef struct CID_FaceDictRec_* CID_FaceDict; + + /* */ + + + /* backwards-compatible definition */ + typedef CID_FaceDictRec CID_FontDict; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* CID_FaceInfoRec */ + /* */ + /* <Description> */ + /* A structure used to represent CID Face information. */ + /* */ + typedef struct CID_FaceInfoRec_ + { + FT_String* cid_font_name; + FT_Fixed cid_version; + FT_Int cid_font_type; + + FT_String* registry; + FT_String* ordering; + FT_Int supplement; + + PS_FontInfoRec font_info; + FT_BBox font_bbox; + FT_ULong uid_base; + + FT_Int num_xuid; + FT_ULong xuid[16]; + + FT_ULong cidmap_offset; + FT_Int fd_bytes; + FT_Int gd_bytes; + FT_ULong cid_count; + + FT_Int num_dicts; + CID_FaceDict font_dicts; + + FT_ULong data_offset; + + } CID_FaceInfoRec; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* CID_FaceInfo */ + /* */ + /* <Description> */ + /* A handle to a @CID_FaceInfoRec structure. */ + /* */ + typedef struct CID_FaceInfoRec_* CID_FaceInfo; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* CID_Info */ + /* */ + /* <Description> */ + /* This type is equivalent to @CID_FaceInfoRec. It is deprecated but */ + /* kept to maintain source compatibility between various versions of */ + /* FreeType. */ + /* */ + typedef CID_FaceInfoRec CID_Info; + + + /************************************************************************ + * + * @function: + * FT_Has_PS_Glyph_Names + * + * @description: + * Return true if a given face provides reliable PostScript glyph + * names. This is similar to using the @FT_HAS_GLYPH_NAMES macro, + * except that certain fonts (mostly TrueType) contain incorrect + * glyph name tables. + * + * When this function returns true, the caller is sure that the glyph + * names returned by @FT_Get_Glyph_Name are reliable. + * + * @input: + * face :: + * face handle + * + * @return: + * Boolean. True if glyph names are reliable. + * + */ + FT_EXPORT( FT_Int ) + FT_Has_PS_Glyph_Names( FT_Face face ); + + + /************************************************************************ + * + * @function: + * FT_Get_PS_Font_Info + * + * @description: + * Retrieve the @PS_FontInfoRec structure corresponding to a given + * PostScript font. + * + * @input: + * face :: + * PostScript face handle. + * + * @output: + * afont_info :: + * Output font info structure pointer. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The string pointers within the font info structure are owned by + * the face and don't need to be freed by the caller. + * + * If the font's format is not PostScript-based, this function will + * return the `FT_Err_Invalid_Argument' error code. + * + */ + FT_EXPORT( FT_Error ) + FT_Get_PS_Font_Info( FT_Face face, + PS_FontInfo afont_info ); + + + /************************************************************************ + * + * @function: + * FT_Get_PS_Font_Private + * + * @description: + * Retrieve the @PS_PrivateRec structure corresponding to a given + * PostScript font. + * + * @input: + * face :: + * PostScript face handle. + * + * @output: + * afont_private :: + * Output private dictionary structure pointer. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The string pointers within the @PS_PrivateRec structure are owned by + * the face and don't need to be freed by the caller. + * + * If the font's format is not PostScript-based, this function returns + * the `FT_Err_Invalid_Argument' error code. + * + */ + FT_EXPORT( FT_Error ) + FT_Get_PS_Font_Private( FT_Face face, + PS_Private afont_private ); + + /* */ + + +FT_END_HEADER + +#endif /* __T1TABLES_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ttnameid.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ttnameid.h new file mode 100644 index 0000000000..66aef0432e --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ttnameid.h @@ -0,0 +1,1247 @@ +/***************************************************************************/ +/* */ +/* ttnameid.h */ +/* */ +/* TrueType name ID definitions (specification only). */ +/* */ +/* Copyright 1996-2002, 2003, 2004, 2006, 2007, 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __TTNAMEID_H__ +#define __TTNAMEID_H__ + + +#include <ft2build.h> + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /* */ + /* <Section> */ + /* truetype_tables */ + /* */ + + + /*************************************************************************/ + /* */ + /* Possible values for the `platform' identifier code in the name */ + /* records of the TTF `name' table. */ + /* */ + /*************************************************************************/ + + + /*********************************************************************** + * + * @enum: + * TT_PLATFORM_XXX + * + * @description: + * A list of valid values for the `platform_id' identifier code in + * @FT_CharMapRec and @FT_SfntName structures. + * + * @values: + * TT_PLATFORM_APPLE_UNICODE :: + * Used by Apple to indicate a Unicode character map and/or name entry. + * See @TT_APPLE_ID_XXX for corresponding `encoding_id' values. Note + * that name entries in this format are coded as big-endian UCS-2 + * character codes _only_. + * + * TT_PLATFORM_MACINTOSH :: + * Used by Apple to indicate a MacOS-specific charmap and/or name entry. + * See @TT_MAC_ID_XXX for corresponding `encoding_id' values. Note that + * most TrueType fonts contain an Apple roman charmap to be usable on + * MacOS systems (even if they contain a Microsoft charmap as well). + * + * TT_PLATFORM_ISO :: + * This value was used to specify ISO/IEC 10646 charmaps. It is however + * now deprecated. See @TT_ISO_ID_XXX for a list of corresponding + * `encoding_id' values. + * + * TT_PLATFORM_MICROSOFT :: + * Used by Microsoft to indicate Windows-specific charmaps. See + * @TT_MS_ID_XXX for a list of corresponding `encoding_id' values. + * Note that most fonts contain a Unicode charmap using + * (TT_PLATFORM_MICROSOFT, @TT_MS_ID_UNICODE_CS). + * + * TT_PLATFORM_CUSTOM :: + * Used to indicate application-specific charmaps. + * + * TT_PLATFORM_ADOBE :: + * This value isn't part of any font format specification, but is used + * by FreeType to report Adobe-specific charmaps in an @FT_CharMapRec + * structure. See @TT_ADOBE_ID_XXX. + */ + +#define TT_PLATFORM_APPLE_UNICODE 0 +#define TT_PLATFORM_MACINTOSH 1 +#define TT_PLATFORM_ISO 2 /* deprecated */ +#define TT_PLATFORM_MICROSOFT 3 +#define TT_PLATFORM_CUSTOM 4 +#define TT_PLATFORM_ADOBE 7 /* artificial */ + + + /*********************************************************************** + * + * @enum: + * TT_APPLE_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id' for + * @TT_PLATFORM_APPLE_UNICODE charmaps and name entries. + * + * @values: + * TT_APPLE_ID_DEFAULT :: + * Unicode version 1.0. + * + * TT_APPLE_ID_UNICODE_1_1 :: + * Unicode 1.1; specifies Hangul characters starting at U+34xx. + * + * TT_APPLE_ID_ISO_10646 :: + * Deprecated (identical to preceding). + * + * TT_APPLE_ID_UNICODE_2_0 :: + * Unicode 2.0 and beyond (UTF-16 BMP only). + * + * TT_APPLE_ID_UNICODE_32 :: + * Unicode 3.1 and beyond, using UTF-32. + * + * TT_APPLE_ID_VARIANT_SELECTOR :: + * From Adobe, not Apple. Not a normal cmap. Specifies variations + * on a real cmap. + */ + +#define TT_APPLE_ID_DEFAULT 0 /* Unicode 1.0 */ +#define TT_APPLE_ID_UNICODE_1_1 1 /* specify Hangul at U+34xx */ +#define TT_APPLE_ID_ISO_10646 2 /* deprecated */ +#define TT_APPLE_ID_UNICODE_2_0 3 /* or later */ +#define TT_APPLE_ID_UNICODE_32 4 /* 2.0 or later, full repertoire */ +#define TT_APPLE_ID_VARIANT_SELECTOR 5 /* variation selector data */ + + + /*********************************************************************** + * + * @enum: + * TT_MAC_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id' for + * @TT_PLATFORM_MACINTOSH charmaps and name entries. + * + * @values: + * TT_MAC_ID_ROMAN :: + * TT_MAC_ID_JAPANESE :: + * TT_MAC_ID_TRADITIONAL_CHINESE :: + * TT_MAC_ID_KOREAN :: + * TT_MAC_ID_ARABIC :: + * TT_MAC_ID_HEBREW :: + * TT_MAC_ID_GREEK :: + * TT_MAC_ID_RUSSIAN :: + * TT_MAC_ID_RSYMBOL :: + * TT_MAC_ID_DEVANAGARI :: + * TT_MAC_ID_GURMUKHI :: + * TT_MAC_ID_GUJARATI :: + * TT_MAC_ID_ORIYA :: + * TT_MAC_ID_BENGALI :: + * TT_MAC_ID_TAMIL :: + * TT_MAC_ID_TELUGU :: + * TT_MAC_ID_KANNADA :: + * TT_MAC_ID_MALAYALAM :: + * TT_MAC_ID_SINHALESE :: + * TT_MAC_ID_BURMESE :: + * TT_MAC_ID_KHMER :: + * TT_MAC_ID_THAI :: + * TT_MAC_ID_LAOTIAN :: + * TT_MAC_ID_GEORGIAN :: + * TT_MAC_ID_ARMENIAN :: + * TT_MAC_ID_MALDIVIAN :: + * TT_MAC_ID_SIMPLIFIED_CHINESE :: + * TT_MAC_ID_TIBETAN :: + * TT_MAC_ID_MONGOLIAN :: + * TT_MAC_ID_GEEZ :: + * TT_MAC_ID_SLAVIC :: + * TT_MAC_ID_VIETNAMESE :: + * TT_MAC_ID_SINDHI :: + * TT_MAC_ID_UNINTERP :: + */ + +#define TT_MAC_ID_ROMAN 0 +#define TT_MAC_ID_JAPANESE 1 +#define TT_MAC_ID_TRADITIONAL_CHINESE 2 +#define TT_MAC_ID_KOREAN 3 +#define TT_MAC_ID_ARABIC 4 +#define TT_MAC_ID_HEBREW 5 +#define TT_MAC_ID_GREEK 6 +#define TT_MAC_ID_RUSSIAN 7 +#define TT_MAC_ID_RSYMBOL 8 +#define TT_MAC_ID_DEVANAGARI 9 +#define TT_MAC_ID_GURMUKHI 10 +#define TT_MAC_ID_GUJARATI 11 +#define TT_MAC_ID_ORIYA 12 +#define TT_MAC_ID_BENGALI 13 +#define TT_MAC_ID_TAMIL 14 +#define TT_MAC_ID_TELUGU 15 +#define TT_MAC_ID_KANNADA 16 +#define TT_MAC_ID_MALAYALAM 17 +#define TT_MAC_ID_SINHALESE 18 +#define TT_MAC_ID_BURMESE 19 +#define TT_MAC_ID_KHMER 20 +#define TT_MAC_ID_THAI 21 +#define TT_MAC_ID_LAOTIAN 22 +#define TT_MAC_ID_GEORGIAN 23 +#define TT_MAC_ID_ARMENIAN 24 +#define TT_MAC_ID_MALDIVIAN 25 +#define TT_MAC_ID_SIMPLIFIED_CHINESE 25 +#define TT_MAC_ID_TIBETAN 26 +#define TT_MAC_ID_MONGOLIAN 27 +#define TT_MAC_ID_GEEZ 28 +#define TT_MAC_ID_SLAVIC 29 +#define TT_MAC_ID_VIETNAMESE 30 +#define TT_MAC_ID_SINDHI 31 +#define TT_MAC_ID_UNINTERP 32 + + + /*********************************************************************** + * + * @enum: + * TT_ISO_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id' for + * @TT_PLATFORM_ISO charmaps and name entries. + * + * Their use is now deprecated. + * + * @values: + * TT_ISO_ID_7BIT_ASCII :: + * ASCII. + * TT_ISO_ID_10646 :: + * ISO/10646. + * TT_ISO_ID_8859_1 :: + * Also known as Latin-1. + */ + +#define TT_ISO_ID_7BIT_ASCII 0 +#define TT_ISO_ID_10646 1 +#define TT_ISO_ID_8859_1 2 + + + /*********************************************************************** + * + * @enum: + * TT_MS_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id' for + * @TT_PLATFORM_MICROSOFT charmaps and name entries. + * + * @values: + * TT_MS_ID_SYMBOL_CS :: + * Corresponds to Microsoft symbol encoding. See + * @FT_ENCODING_MS_SYMBOL. + * + * TT_MS_ID_UNICODE_CS :: + * Corresponds to a Microsoft WGL4 charmap, matching Unicode. See + * @FT_ENCODING_UNICODE. + * + * TT_MS_ID_SJIS :: + * Corresponds to SJIS Japanese encoding. See @FT_ENCODING_SJIS. + * + * TT_MS_ID_GB2312 :: + * Corresponds to Simplified Chinese as used in Mainland China. See + * @FT_ENCODING_GB2312. + * + * TT_MS_ID_BIG_5 :: + * Corresponds to Traditional Chinese as used in Taiwan and Hong Kong. + * See @FT_ENCODING_BIG5. + * + * TT_MS_ID_WANSUNG :: + * Corresponds to Korean Wansung encoding. See @FT_ENCODING_WANSUNG. + * + * TT_MS_ID_JOHAB :: + * Corresponds to Johab encoding. See @FT_ENCODING_JOHAB. + * + * TT_MS_ID_UCS_4 :: + * Corresponds to UCS-4 or UTF-32 charmaps. This has been added to + * the OpenType specification version 1.4 (mid-2001.) + */ + +#define TT_MS_ID_SYMBOL_CS 0 +#define TT_MS_ID_UNICODE_CS 1 +#define TT_MS_ID_SJIS 2 +#define TT_MS_ID_GB2312 3 +#define TT_MS_ID_BIG_5 4 +#define TT_MS_ID_WANSUNG 5 +#define TT_MS_ID_JOHAB 6 +#define TT_MS_ID_UCS_4 10 + + + /*********************************************************************** + * + * @enum: + * TT_ADOBE_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id' for + * @TT_PLATFORM_ADOBE charmaps. This is a FreeType-specific extension! + * + * @values: + * TT_ADOBE_ID_STANDARD :: + * Adobe standard encoding. + * TT_ADOBE_ID_EXPERT :: + * Adobe expert encoding. + * TT_ADOBE_ID_CUSTOM :: + * Adobe custom encoding. + * TT_ADOBE_ID_LATIN_1 :: + * Adobe Latin~1 encoding. + */ + +#define TT_ADOBE_ID_STANDARD 0 +#define TT_ADOBE_ID_EXPERT 1 +#define TT_ADOBE_ID_CUSTOM 2 +#define TT_ADOBE_ID_LATIN_1 3 + + + /*************************************************************************/ + /* */ + /* Possible values of the language identifier field in the name records */ + /* of the TTF `name' table if the `platform' identifier code is */ + /* TT_PLATFORM_MACINTOSH. */ + /* */ + /* The canonical source for the Apple assigned Language ID's is at */ + /* */ + /* http://fonts.apple.com/TTRefMan/RM06/Chap6name.html */ + /* */ +#define TT_MAC_LANGID_ENGLISH 0 +#define TT_MAC_LANGID_FRENCH 1 +#define TT_MAC_LANGID_GERMAN 2 +#define TT_MAC_LANGID_ITALIAN 3 +#define TT_MAC_LANGID_DUTCH 4 +#define TT_MAC_LANGID_SWEDISH 5 +#define TT_MAC_LANGID_SPANISH 6 +#define TT_MAC_LANGID_DANISH 7 +#define TT_MAC_LANGID_PORTUGUESE 8 +#define TT_MAC_LANGID_NORWEGIAN 9 +#define TT_MAC_LANGID_HEBREW 10 +#define TT_MAC_LANGID_JAPANESE 11 +#define TT_MAC_LANGID_ARABIC 12 +#define TT_MAC_LANGID_FINNISH 13 +#define TT_MAC_LANGID_GREEK 14 +#define TT_MAC_LANGID_ICELANDIC 15 +#define TT_MAC_LANGID_MALTESE 16 +#define TT_MAC_LANGID_TURKISH 17 +#define TT_MAC_LANGID_CROATIAN 18 +#define TT_MAC_LANGID_CHINESE_TRADITIONAL 19 +#define TT_MAC_LANGID_URDU 20 +#define TT_MAC_LANGID_HINDI 21 +#define TT_MAC_LANGID_THAI 22 +#define TT_MAC_LANGID_KOREAN 23 +#define TT_MAC_LANGID_LITHUANIAN 24 +#define TT_MAC_LANGID_POLISH 25 +#define TT_MAC_LANGID_HUNGARIAN 26 +#define TT_MAC_LANGID_ESTONIAN 27 +#define TT_MAC_LANGID_LETTISH 28 +#define TT_MAC_LANGID_SAAMISK 29 +#define TT_MAC_LANGID_FAEROESE 30 +#define TT_MAC_LANGID_FARSI 31 +#define TT_MAC_LANGID_RUSSIAN 32 +#define TT_MAC_LANGID_CHINESE_SIMPLIFIED 33 +#define TT_MAC_LANGID_FLEMISH 34 +#define TT_MAC_LANGID_IRISH 35 +#define TT_MAC_LANGID_ALBANIAN 36 +#define TT_MAC_LANGID_ROMANIAN 37 +#define TT_MAC_LANGID_CZECH 38 +#define TT_MAC_LANGID_SLOVAK 39 +#define TT_MAC_LANGID_SLOVENIAN 40 +#define TT_MAC_LANGID_YIDDISH 41 +#define TT_MAC_LANGID_SERBIAN 42 +#define TT_MAC_LANGID_MACEDONIAN 43 +#define TT_MAC_LANGID_BULGARIAN 44 +#define TT_MAC_LANGID_UKRAINIAN 45 +#define TT_MAC_LANGID_BYELORUSSIAN 46 +#define TT_MAC_LANGID_UZBEK 47 +#define TT_MAC_LANGID_KAZAKH 48 +#define TT_MAC_LANGID_AZERBAIJANI 49 +#define TT_MAC_LANGID_AZERBAIJANI_CYRILLIC_SCRIPT 49 +#define TT_MAC_LANGID_AZERBAIJANI_ARABIC_SCRIPT 50 +#define TT_MAC_LANGID_ARMENIAN 51 +#define TT_MAC_LANGID_GEORGIAN 52 +#define TT_MAC_LANGID_MOLDAVIAN 53 +#define TT_MAC_LANGID_KIRGHIZ 54 +#define TT_MAC_LANGID_TAJIKI 55 +#define TT_MAC_LANGID_TURKMEN 56 +#define TT_MAC_LANGID_MONGOLIAN 57 +#define TT_MAC_LANGID_MONGOLIAN_MONGOLIAN_SCRIPT 57 +#define TT_MAC_LANGID_MONGOLIAN_CYRILLIC_SCRIPT 58 +#define TT_MAC_LANGID_PASHTO 59 +#define TT_MAC_LANGID_KURDISH 60 +#define TT_MAC_LANGID_KASHMIRI 61 +#define TT_MAC_LANGID_SINDHI 62 +#define TT_MAC_LANGID_TIBETAN 63 +#define TT_MAC_LANGID_NEPALI 64 +#define TT_MAC_LANGID_SANSKRIT 65 +#define TT_MAC_LANGID_MARATHI 66 +#define TT_MAC_LANGID_BENGALI 67 +#define TT_MAC_LANGID_ASSAMESE 68 +#define TT_MAC_LANGID_GUJARATI 69 +#define TT_MAC_LANGID_PUNJABI 70 +#define TT_MAC_LANGID_ORIYA 71 +#define TT_MAC_LANGID_MALAYALAM 72 +#define TT_MAC_LANGID_KANNADA 73 +#define TT_MAC_LANGID_TAMIL 74 +#define TT_MAC_LANGID_TELUGU 75 +#define TT_MAC_LANGID_SINHALESE 76 +#define TT_MAC_LANGID_BURMESE 77 +#define TT_MAC_LANGID_KHMER 78 +#define TT_MAC_LANGID_LAO 79 +#define TT_MAC_LANGID_VIETNAMESE 80 +#define TT_MAC_LANGID_INDONESIAN 81 +#define TT_MAC_LANGID_TAGALOG 82 +#define TT_MAC_LANGID_MALAY_ROMAN_SCRIPT 83 +#define TT_MAC_LANGID_MALAY_ARABIC_SCRIPT 84 +#define TT_MAC_LANGID_AMHARIC 85 +#define TT_MAC_LANGID_TIGRINYA 86 +#define TT_MAC_LANGID_GALLA 87 +#define TT_MAC_LANGID_SOMALI 88 +#define TT_MAC_LANGID_SWAHILI 89 +#define TT_MAC_LANGID_RUANDA 90 +#define TT_MAC_LANGID_RUNDI 91 +#define TT_MAC_LANGID_CHEWA 92 +#define TT_MAC_LANGID_MALAGASY 93 +#define TT_MAC_LANGID_ESPERANTO 94 +#define TT_MAC_LANGID_WELSH 128 +#define TT_MAC_LANGID_BASQUE 129 +#define TT_MAC_LANGID_CATALAN 130 +#define TT_MAC_LANGID_LATIN 131 +#define TT_MAC_LANGID_QUECHUA 132 +#define TT_MAC_LANGID_GUARANI 133 +#define TT_MAC_LANGID_AYMARA 134 +#define TT_MAC_LANGID_TATAR 135 +#define TT_MAC_LANGID_UIGHUR 136 +#define TT_MAC_LANGID_DZONGKHA 137 +#define TT_MAC_LANGID_JAVANESE 138 +#define TT_MAC_LANGID_SUNDANESE 139 + + +#if 0 /* these seem to be errors that have been dropped */ + +#define TT_MAC_LANGID_SCOTTISH_GAELIC 140 +#define TT_MAC_LANGID_IRISH_GAELIC 141 + +#endif + + + /* The following codes are new as of 2000-03-10 */ +#define TT_MAC_LANGID_GALICIAN 140 +#define TT_MAC_LANGID_AFRIKAANS 141 +#define TT_MAC_LANGID_BRETON 142 +#define TT_MAC_LANGID_INUKTITUT 143 +#define TT_MAC_LANGID_SCOTTISH_GAELIC 144 +#define TT_MAC_LANGID_MANX_GAELIC 145 +#define TT_MAC_LANGID_IRISH_GAELIC 146 +#define TT_MAC_LANGID_TONGAN 147 +#define TT_MAC_LANGID_GREEK_POLYTONIC 148 +#define TT_MAC_LANGID_GREELANDIC 149 +#define TT_MAC_LANGID_AZERBAIJANI_ROMAN_SCRIPT 150 + + + /*************************************************************************/ + /* */ + /* Possible values of the language identifier field in the name records */ + /* of the TTF `name' table if the `platform' identifier code is */ + /* TT_PLATFORM_MICROSOFT. */ + /* */ + /* The canonical source for the MS assigned LCID's (seems to) be at */ + /* */ + /* http://www.microsoft.com/globaldev/reference/lcid-all.mspx */ + /* */ + /* It used to be at various places, among them */ + /* */ + /* http://www.microsoft.com/typography/OTSPEC/lcid-cp.txt */ + /* http://www.microsoft.com/globaldev/reference/loclanghome.asp */ + /* http://support.microsoft.com/support/kb/articles/Q224/8/04.ASP */ + /* http://msdn.microsoft.com/library/en-us/passport25/ */ + /* NET_Passport_VBScript_Documentation/Single_Sign_In/ */ + /* Advanced_Single_Sign_In/Localization_and_LCIDs.asp */ + /* */ + /* Hopefully, it seems now that the Globaldev site prevails... */ + /* (updated by Antoine, 2004-02-17) */ + +#define TT_MS_LANGID_ARABIC_GENERAL 0x0001 +#define TT_MS_LANGID_ARABIC_SAUDI_ARABIA 0x0401 +#define TT_MS_LANGID_ARABIC_IRAQ 0x0801 +#define TT_MS_LANGID_ARABIC_EGYPT 0x0c01 +#define TT_MS_LANGID_ARABIC_LIBYA 0x1001 +#define TT_MS_LANGID_ARABIC_ALGERIA 0x1401 +#define TT_MS_LANGID_ARABIC_MOROCCO 0x1801 +#define TT_MS_LANGID_ARABIC_TUNISIA 0x1c01 +#define TT_MS_LANGID_ARABIC_OMAN 0x2001 +#define TT_MS_LANGID_ARABIC_YEMEN 0x2401 +#define TT_MS_LANGID_ARABIC_SYRIA 0x2801 +#define TT_MS_LANGID_ARABIC_JORDAN 0x2c01 +#define TT_MS_LANGID_ARABIC_LEBANON 0x3001 +#define TT_MS_LANGID_ARABIC_KUWAIT 0x3401 +#define TT_MS_LANGID_ARABIC_UAE 0x3801 +#define TT_MS_LANGID_ARABIC_BAHRAIN 0x3c01 +#define TT_MS_LANGID_ARABIC_QATAR 0x4001 +#define TT_MS_LANGID_BULGARIAN_BULGARIA 0x0402 +#define TT_MS_LANGID_CATALAN_SPAIN 0x0403 +#define TT_MS_LANGID_CHINESE_GENERAL 0x0004 +#define TT_MS_LANGID_CHINESE_TAIWAN 0x0404 +#define TT_MS_LANGID_CHINESE_PRC 0x0804 +#define TT_MS_LANGID_CHINESE_HONG_KONG 0x0c04 +#define TT_MS_LANGID_CHINESE_SINGAPORE 0x1004 + +#if 1 /* this looks like the correct value */ +#define TT_MS_LANGID_CHINESE_MACAU 0x1404 +#else /* but beware, Microsoft may change its mind... + the most recent Word reference has the following: */ +#define TT_MS_LANGID_CHINESE_MACAU TT_MS_LANGID_CHINESE_HONG_KONG +#endif + +#if 0 /* used only with .NET `cultures'; commented out */ +#define TT_MS_LANGID_CHINESE_TRADITIONAL 0x7C04 +#endif + +#define TT_MS_LANGID_CZECH_CZECH_REPUBLIC 0x0405 +#define TT_MS_LANGID_DANISH_DENMARK 0x0406 +#define TT_MS_LANGID_GERMAN_GERMANY 0x0407 +#define TT_MS_LANGID_GERMAN_SWITZERLAND 0x0807 +#define TT_MS_LANGID_GERMAN_AUSTRIA 0x0c07 +#define TT_MS_LANGID_GERMAN_LUXEMBOURG 0x1007 +#define TT_MS_LANGID_GERMAN_LIECHTENSTEI 0x1407 +#define TT_MS_LANGID_GREEK_GREECE 0x0408 + + /* don't ask what this one means... It is commented out currently. */ +#if 0 +#define TT_MS_LANGID_GREEK_GREECE2 0x2008 +#endif + +#define TT_MS_LANGID_ENGLISH_GENERAL 0x0009 +#define TT_MS_LANGID_ENGLISH_UNITED_STATES 0x0409 +#define TT_MS_LANGID_ENGLISH_UNITED_KINGDOM 0x0809 +#define TT_MS_LANGID_ENGLISH_AUSTRALIA 0x0c09 +#define TT_MS_LANGID_ENGLISH_CANADA 0x1009 +#define TT_MS_LANGID_ENGLISH_NEW_ZEALAND 0x1409 +#define TT_MS_LANGID_ENGLISH_IRELAND 0x1809 +#define TT_MS_LANGID_ENGLISH_SOUTH_AFRICA 0x1c09 +#define TT_MS_LANGID_ENGLISH_JAMAICA 0x2009 +#define TT_MS_LANGID_ENGLISH_CARIBBEAN 0x2409 +#define TT_MS_LANGID_ENGLISH_BELIZE 0x2809 +#define TT_MS_LANGID_ENGLISH_TRINIDAD 0x2c09 +#define TT_MS_LANGID_ENGLISH_ZIMBABWE 0x3009 +#define TT_MS_LANGID_ENGLISH_PHILIPPINES 0x3409 +#define TT_MS_LANGID_ENGLISH_INDONESIA 0x3809 +#define TT_MS_LANGID_ENGLISH_HONG_KONG 0x3c09 +#define TT_MS_LANGID_ENGLISH_INDIA 0x4009 +#define TT_MS_LANGID_ENGLISH_MALAYSIA 0x4409 +#define TT_MS_LANGID_ENGLISH_SINGAPORE 0x4809 +#define TT_MS_LANGID_SPANISH_SPAIN_TRADITIONAL_SORT 0x040a +#define TT_MS_LANGID_SPANISH_MEXICO 0x080a +#define TT_MS_LANGID_SPANISH_SPAIN_INTERNATIONAL_SORT 0x0c0a +#define TT_MS_LANGID_SPANISH_GUATEMALA 0x100a +#define TT_MS_LANGID_SPANISH_COSTA_RICA 0x140a +#define TT_MS_LANGID_SPANISH_PANAMA 0x180a +#define TT_MS_LANGID_SPANISH_DOMINICAN_REPUBLIC 0x1c0a +#define TT_MS_LANGID_SPANISH_VENEZUELA 0x200a +#define TT_MS_LANGID_SPANISH_COLOMBIA 0x240a +#define TT_MS_LANGID_SPANISH_PERU 0x280a +#define TT_MS_LANGID_SPANISH_ARGENTINA 0x2c0a +#define TT_MS_LANGID_SPANISH_ECUADOR 0x300a +#define TT_MS_LANGID_SPANISH_CHILE 0x340a +#define TT_MS_LANGID_SPANISH_URUGUAY 0x380a +#define TT_MS_LANGID_SPANISH_PARAGUAY 0x3c0a +#define TT_MS_LANGID_SPANISH_BOLIVIA 0x400a +#define TT_MS_LANGID_SPANISH_EL_SALVADOR 0x440a +#define TT_MS_LANGID_SPANISH_HONDURAS 0x480a +#define TT_MS_LANGID_SPANISH_NICARAGUA 0x4c0a +#define TT_MS_LANGID_SPANISH_PUERTO_RICO 0x500a +#define TT_MS_LANGID_SPANISH_UNITED_STATES 0x540a + /* The following ID blatantly violate MS specs by using a */ + /* sublanguage > 0x1F. */ +#define TT_MS_LANGID_SPANISH_LATIN_AMERICA 0xE40aU +#define TT_MS_LANGID_FINNISH_FINLAND 0x040b +#define TT_MS_LANGID_FRENCH_FRANCE 0x040c +#define TT_MS_LANGID_FRENCH_BELGIUM 0x080c +#define TT_MS_LANGID_FRENCH_CANADA 0x0c0c +#define TT_MS_LANGID_FRENCH_SWITZERLAND 0x100c +#define TT_MS_LANGID_FRENCH_LUXEMBOURG 0x140c +#define TT_MS_LANGID_FRENCH_MONACO 0x180c +#define TT_MS_LANGID_FRENCH_WEST_INDIES 0x1c0c +#define TT_MS_LANGID_FRENCH_REUNION 0x200c +#define TT_MS_LANGID_FRENCH_CONGO 0x240c + /* which was formerly: */ +#define TT_MS_LANGID_FRENCH_ZAIRE TT_MS_LANGID_FRENCH_CONGO +#define TT_MS_LANGID_FRENCH_SENEGAL 0x280c +#define TT_MS_LANGID_FRENCH_CAMEROON 0x2c0c +#define TT_MS_LANGID_FRENCH_COTE_D_IVOIRE 0x300c +#define TT_MS_LANGID_FRENCH_MALI 0x340c +#define TT_MS_LANGID_FRENCH_MOROCCO 0x380c +#define TT_MS_LANGID_FRENCH_HAITI 0x3c0c + /* and another violation of the spec (see 0xE40aU) */ +#define TT_MS_LANGID_FRENCH_NORTH_AFRICA 0xE40cU +#define TT_MS_LANGID_HEBREW_ISRAEL 0x040d +#define TT_MS_LANGID_HUNGARIAN_HUNGARY 0x040e +#define TT_MS_LANGID_ICELANDIC_ICELAND 0x040f +#define TT_MS_LANGID_ITALIAN_ITALY 0x0410 +#define TT_MS_LANGID_ITALIAN_SWITZERLAND 0x0810 +#define TT_MS_LANGID_JAPANESE_JAPAN 0x0411 +#define TT_MS_LANGID_KOREAN_EXTENDED_WANSUNG_KOREA 0x0412 +#define TT_MS_LANGID_KOREAN_JOHAB_KOREA 0x0812 +#define TT_MS_LANGID_DUTCH_NETHERLANDS 0x0413 +#define TT_MS_LANGID_DUTCH_BELGIUM 0x0813 +#define TT_MS_LANGID_NORWEGIAN_NORWAY_BOKMAL 0x0414 +#define TT_MS_LANGID_NORWEGIAN_NORWAY_NYNORSK 0x0814 +#define TT_MS_LANGID_POLISH_POLAND 0x0415 +#define TT_MS_LANGID_PORTUGUESE_BRAZIL 0x0416 +#define TT_MS_LANGID_PORTUGUESE_PORTUGAL 0x0816 +#define TT_MS_LANGID_RHAETO_ROMANIC_SWITZERLAND 0x0417 +#define TT_MS_LANGID_ROMANIAN_ROMANIA 0x0418 +#define TT_MS_LANGID_MOLDAVIAN_MOLDAVIA 0x0818 +#define TT_MS_LANGID_RUSSIAN_RUSSIA 0x0419 +#define TT_MS_LANGID_RUSSIAN_MOLDAVIA 0x0819 +#define TT_MS_LANGID_CROATIAN_CROATIA 0x041a +#define TT_MS_LANGID_SERBIAN_SERBIA_LATIN 0x081a +#define TT_MS_LANGID_SERBIAN_SERBIA_CYRILLIC 0x0c1a + +#if 0 /* this used to be this value, but it looks like we were wrong */ +#define TT_MS_LANGID_BOSNIAN_BOSNIA_HERZEGOVINA 0x101a +#else /* current sources say */ +#define TT_MS_LANGID_CROATIAN_BOSNIA_HERZEGOVINA 0x101a +#define TT_MS_LANGID_BOSNIAN_BOSNIA_HERZEGOVINA 0x141a + /* and XPsp2 Platform SDK added (2004-07-26) */ + /* Names are shortened to be significant within 40 chars. */ +#define TT_MS_LANGID_SERBIAN_BOSNIA_HERZ_LATIN 0x181a +#define TT_MS_LANGID_SERBIAN_BOSNIA_HERZ_CYRILLIC 0x181a +#endif + +#define TT_MS_LANGID_SLOVAK_SLOVAKIA 0x041b +#define TT_MS_LANGID_ALBANIAN_ALBANIA 0x041c +#define TT_MS_LANGID_SWEDISH_SWEDEN 0x041d +#define TT_MS_LANGID_SWEDISH_FINLAND 0x081d +#define TT_MS_LANGID_THAI_THAILAND 0x041e +#define TT_MS_LANGID_TURKISH_TURKEY 0x041f +#define TT_MS_LANGID_URDU_PAKISTAN 0x0420 +#define TT_MS_LANGID_URDU_INDIA 0x0820 +#define TT_MS_LANGID_INDONESIAN_INDONESIA 0x0421 +#define TT_MS_LANGID_UKRAINIAN_UKRAINE 0x0422 +#define TT_MS_LANGID_BELARUSIAN_BELARUS 0x0423 +#define TT_MS_LANGID_SLOVENE_SLOVENIA 0x0424 +#define TT_MS_LANGID_ESTONIAN_ESTONIA 0x0425 +#define TT_MS_LANGID_LATVIAN_LATVIA 0x0426 +#define TT_MS_LANGID_LITHUANIAN_LITHUANIA 0x0427 +#define TT_MS_LANGID_CLASSIC_LITHUANIAN_LITHUANIA 0x0827 +#define TT_MS_LANGID_TAJIK_TAJIKISTAN 0x0428 +#define TT_MS_LANGID_FARSI_IRAN 0x0429 +#define TT_MS_LANGID_VIETNAMESE_VIET_NAM 0x042a +#define TT_MS_LANGID_ARMENIAN_ARMENIA 0x042b +#define TT_MS_LANGID_AZERI_AZERBAIJAN_LATIN 0x042c +#define TT_MS_LANGID_AZERI_AZERBAIJAN_CYRILLIC 0x082c +#define TT_MS_LANGID_BASQUE_SPAIN 0x042d +#define TT_MS_LANGID_SORBIAN_GERMANY 0x042e +#define TT_MS_LANGID_MACEDONIAN_MACEDONIA 0x042f +#define TT_MS_LANGID_SUTU_SOUTH_AFRICA 0x0430 +#define TT_MS_LANGID_TSONGA_SOUTH_AFRICA 0x0431 +#define TT_MS_LANGID_TSWANA_SOUTH_AFRICA 0x0432 +#define TT_MS_LANGID_VENDA_SOUTH_AFRICA 0x0433 +#define TT_MS_LANGID_XHOSA_SOUTH_AFRICA 0x0434 +#define TT_MS_LANGID_ZULU_SOUTH_AFRICA 0x0435 +#define TT_MS_LANGID_AFRIKAANS_SOUTH_AFRICA 0x0436 +#define TT_MS_LANGID_GEORGIAN_GEORGIA 0x0437 +#define TT_MS_LANGID_FAEROESE_FAEROE_ISLANDS 0x0438 +#define TT_MS_LANGID_HINDI_INDIA 0x0439 +#define TT_MS_LANGID_MALTESE_MALTA 0x043a + /* Added by XPsp2 Platform SDK (2004-07-26) */ +#define TT_MS_LANGID_SAMI_NORTHERN_NORWAY 0x043b +#define TT_MS_LANGID_SAMI_NORTHERN_SWEDEN 0x083b +#define TT_MS_LANGID_SAMI_NORTHERN_FINLAND 0x0C3b +#define TT_MS_LANGID_SAMI_LULE_NORWAY 0x103b +#define TT_MS_LANGID_SAMI_LULE_SWEDEN 0x143b +#define TT_MS_LANGID_SAMI_SOUTHERN_NORWAY 0x183b +#define TT_MS_LANGID_SAMI_SOUTHERN_SWEDEN 0x1C3b +#define TT_MS_LANGID_SAMI_SKOLT_FINLAND 0x203b +#define TT_MS_LANGID_SAMI_INARI_FINLAND 0x243b + /* ... and we also keep our old identifier... */ +#define TT_MS_LANGID_SAAMI_LAPONIA 0x043b + +#if 0 /* this seems to be a previous inversion */ +#define TT_MS_LANGID_IRISH_GAELIC_IRELAND 0x043c +#define TT_MS_LANGID_SCOTTISH_GAELIC_UNITED_KINGDOM 0x083c +#else +#define TT_MS_LANGID_SCOTTISH_GAELIC_UNITED_KINGDOM 0x083c +#define TT_MS_LANGID_IRISH_GAELIC_IRELAND 0x043c +#endif + +#define TT_MS_LANGID_YIDDISH_GERMANY 0x043d +#define TT_MS_LANGID_MALAY_MALAYSIA 0x043e +#define TT_MS_LANGID_MALAY_BRUNEI_DARUSSALAM 0x083e +#define TT_MS_LANGID_KAZAK_KAZAKSTAN 0x043f +#define TT_MS_LANGID_KIRGHIZ_KIRGHIZSTAN /* Cyrillic*/ 0x0440 + /* alias declared in Windows 2000 */ +#define TT_MS_LANGID_KIRGHIZ_KIRGHIZ_REPUBLIC \ + TT_MS_LANGID_KIRGHIZ_KIRGHIZSTAN + +#define TT_MS_LANGID_SWAHILI_KENYA 0x0441 +#define TT_MS_LANGID_TURKMEN_TURKMENISTAN 0x0442 +#define TT_MS_LANGID_UZBEK_UZBEKISTAN_LATIN 0x0443 +#define TT_MS_LANGID_UZBEK_UZBEKISTAN_CYRILLIC 0x0843 +#define TT_MS_LANGID_TATAR_TATARSTAN 0x0444 +#define TT_MS_LANGID_BENGALI_INDIA 0x0445 +#define TT_MS_LANGID_BENGALI_BANGLADESH 0x0845 +#define TT_MS_LANGID_PUNJABI_INDIA 0x0446 +#define TT_MS_LANGID_PUNJABI_ARABIC_PAKISTAN 0x0846 +#define TT_MS_LANGID_GUJARATI_INDIA 0x0447 +#define TT_MS_LANGID_ORIYA_INDIA 0x0448 +#define TT_MS_LANGID_TAMIL_INDIA 0x0449 +#define TT_MS_LANGID_TELUGU_INDIA 0x044a +#define TT_MS_LANGID_KANNADA_INDIA 0x044b +#define TT_MS_LANGID_MALAYALAM_INDIA 0x044c +#define TT_MS_LANGID_ASSAMESE_INDIA 0x044d +#define TT_MS_LANGID_MARATHI_INDIA 0x044e +#define TT_MS_LANGID_SANSKRIT_INDIA 0x044f +#define TT_MS_LANGID_MONGOLIAN_MONGOLIA /* Cyrillic */ 0x0450 +#define TT_MS_LANGID_MONGOLIAN_MONGOLIA_MONGOLIAN 0x0850 +#define TT_MS_LANGID_TIBETAN_CHINA 0x0451 + /* Don't use the next constant! It has */ + /* (1) the wrong spelling (Dzonghka) */ + /* (2) Microsoft doesn't officially define it -- */ + /* at least it is not in the List of Local */ + /* ID Values. */ + /* (3) Dzongkha is not the same language as */ + /* Tibetan, so merging it is wrong anyway. */ + /* */ + /* TT_MS_LANGID_TIBETAN_BHUTAN is correct, BTW. */ +#define TT_MS_LANGID_DZONGHKA_BHUTAN 0x0851 + +#if 0 + /* the following used to be defined */ +#define TT_MS_LANGID_TIBETAN_BHUTAN 0x0451 + /* ... but it was changed; */ +#else + /* So we will continue to #define it, but with the correct value */ +#define TT_MS_LANGID_TIBETAN_BHUTAN TT_MS_LANGID_DZONGHKA_BHUTAN +#endif + +#define TT_MS_LANGID_WELSH_WALES 0x0452 +#define TT_MS_LANGID_KHMER_CAMBODIA 0x0453 +#define TT_MS_LANGID_LAO_LAOS 0x0454 +#define TT_MS_LANGID_BURMESE_MYANMAR 0x0455 +#define TT_MS_LANGID_GALICIAN_SPAIN 0x0456 +#define TT_MS_LANGID_KONKANI_INDIA 0x0457 +#define TT_MS_LANGID_MANIPURI_INDIA /* Bengali */ 0x0458 +#define TT_MS_LANGID_SINDHI_INDIA /* Arabic */ 0x0459 +#define TT_MS_LANGID_SINDHI_PAKISTAN 0x0859 + /* Missing a LCID for Sindhi in Devanagari script */ +#define TT_MS_LANGID_SYRIAC_SYRIA 0x045a +#define TT_MS_LANGID_SINHALESE_SRI_LANKA 0x045b +#define TT_MS_LANGID_CHEROKEE_UNITED_STATES 0x045c +#define TT_MS_LANGID_INUKTITUT_CANADA 0x045d +#define TT_MS_LANGID_AMHARIC_ETHIOPIA 0x045e +#define TT_MS_LANGID_TAMAZIGHT_MOROCCO /* Arabic */ 0x045f +#define TT_MS_LANGID_TAMAZIGHT_MOROCCO_LATIN 0x085f + /* Missing a LCID for Tifinagh script */ +#define TT_MS_LANGID_KASHMIRI_PAKISTAN /* Arabic */ 0x0460 + /* Spelled this way by XPsp2 Platform SDK (2004-07-26) */ + /* script is yet unclear... might be Arabic, Nagari or Sharada */ +#define TT_MS_LANGID_KASHMIRI_SASIA 0x0860 + /* ... and aliased (by MS) for compatibility reasons. */ +#define TT_MS_LANGID_KASHMIRI_INDIA TT_MS_LANGID_KASHMIRI_SASIA +#define TT_MS_LANGID_NEPALI_NEPAL 0x0461 +#define TT_MS_LANGID_NEPALI_INDIA 0x0861 +#define TT_MS_LANGID_FRISIAN_NETHERLANDS 0x0462 +#define TT_MS_LANGID_PASHTO_AFGHANISTAN 0x0463 +#define TT_MS_LANGID_FILIPINO_PHILIPPINES 0x0464 +#define TT_MS_LANGID_DHIVEHI_MALDIVES 0x0465 + /* alias declared in Windows 2000 */ +#define TT_MS_LANGID_DIVEHI_MALDIVES TT_MS_LANGID_DHIVEHI_MALDIVES +#define TT_MS_LANGID_EDO_NIGERIA 0x0466 +#define TT_MS_LANGID_FULFULDE_NIGERIA 0x0467 +#define TT_MS_LANGID_HAUSA_NIGERIA 0x0468 +#define TT_MS_LANGID_IBIBIO_NIGERIA 0x0469 +#define TT_MS_LANGID_YORUBA_NIGERIA 0x046a +#define TT_MS_LANGID_QUECHUA_BOLIVIA 0x046b +#define TT_MS_LANGID_QUECHUA_ECUADOR 0x086b +#define TT_MS_LANGID_QUECHUA_PERU 0x0c6b +#define TT_MS_LANGID_SEPEDI_SOUTH_AFRICA 0x046c + /* Also spelled by XPsp2 Platform SDK (2004-07-26) */ +#define TT_MS_LANGID_SOTHO_SOUTHERN_SOUTH_AFRICA \ + TT_MS_LANGID_SEPEDI_SOUTH_AFRICA + /* language codes 0x046d, 0x046e and 0x046f are (still) unknown. */ +#define TT_MS_LANGID_IGBO_NIGERIA 0x0470 +#define TT_MS_LANGID_KANURI_NIGERIA 0x0471 +#define TT_MS_LANGID_OROMO_ETHIOPIA 0x0472 +#define TT_MS_LANGID_TIGRIGNA_ETHIOPIA 0x0473 +#define TT_MS_LANGID_TIGRIGNA_ERYTHREA 0x0873 + /* also spelled in the `Passport SDK' list as: */ +#define TT_MS_LANGID_TIGRIGNA_ERYTREA TT_MS_LANGID_TIGRIGNA_ERYTHREA +#define TT_MS_LANGID_GUARANI_PARAGUAY 0x0474 +#define TT_MS_LANGID_HAWAIIAN_UNITED_STATES 0x0475 +#define TT_MS_LANGID_LATIN 0x0476 +#define TT_MS_LANGID_SOMALI_SOMALIA 0x0477 + /* Note: Yi does not have a (proper) ISO 639-2 code, since it is mostly */ + /* not written (but OTOH the peculiar writing system is worth */ + /* studying). */ +#define TT_MS_LANGID_YI_CHINA 0x0478 +#define TT_MS_LANGID_PAPIAMENTU_NETHERLANDS_ANTILLES 0x0479 + /* language codes from 0x047a to 0x047f are (still) unknown. */ +#define TT_MS_LANGID_UIGHUR_CHINA 0x0480 +#define TT_MS_LANGID_MAORI_NEW_ZEALAND 0x0481 + +#if 0 /* not deemed useful for fonts */ +#define TT_MS_LANGID_HUMAN_INTERFACE_DEVICE 0x04ff +#endif + + + /*************************************************************************/ + /* */ + /* Possible values of the `name' identifier field in the name records of */ + /* the TTF `name' table. These values are platform independent. */ + /* */ +#define TT_NAME_ID_COPYRIGHT 0 +#define TT_NAME_ID_FONT_FAMILY 1 +#define TT_NAME_ID_FONT_SUBFAMILY 2 +#define TT_NAME_ID_UNIQUE_ID 3 +#define TT_NAME_ID_FULL_NAME 4 +#define TT_NAME_ID_VERSION_STRING 5 +#define TT_NAME_ID_PS_NAME 6 +#define TT_NAME_ID_TRADEMARK 7 + + /* the following values are from the OpenType spec */ +#define TT_NAME_ID_MANUFACTURER 8 +#define TT_NAME_ID_DESIGNER 9 +#define TT_NAME_ID_DESCRIPTION 10 +#define TT_NAME_ID_VENDOR_URL 11 +#define TT_NAME_ID_DESIGNER_URL 12 +#define TT_NAME_ID_LICENSE 13 +#define TT_NAME_ID_LICENSE_URL 14 + /* number 15 is reserved */ +#define TT_NAME_ID_PREFERRED_FAMILY 16 +#define TT_NAME_ID_PREFERRED_SUBFAMILY 17 +#define TT_NAME_ID_MAC_FULL_NAME 18 + + /* The following code is new as of 2000-01-21 */ +#define TT_NAME_ID_SAMPLE_TEXT 19 + + /* This is new in OpenType 1.3 */ +#define TT_NAME_ID_CID_FINDFONT_NAME 20 + + /* This is new in OpenType 1.5 */ +#define TT_NAME_ID_WWS_FAMILY 21 +#define TT_NAME_ID_WWS_SUBFAMILY 22 + + + /*************************************************************************/ + /* */ + /* Bit mask values for the Unicode Ranges from the TTF `OS2 ' table. */ + /* */ + /* Updated 08-Nov-2008. */ + /* */ + + /* Bit 0 Basic Latin */ +#define TT_UCR_BASIC_LATIN (1L << 0) /* U+0020-U+007E */ + /* Bit 1 C1 Controls and Latin-1 Supplement */ +#define TT_UCR_LATIN1_SUPPLEMENT (1L << 1) /* U+0080-U+00FF */ + /* Bit 2 Latin Extended-A */ +#define TT_UCR_LATIN_EXTENDED_A (1L << 2) /* U+0100-U+017F */ + /* Bit 3 Latin Extended-B */ +#define TT_UCR_LATIN_EXTENDED_B (1L << 3) /* U+0180-U+024F */ + /* Bit 4 IPA Extensions */ + /* Phonetic Extensions */ + /* Phonetic Extensions Supplement */ +#define TT_UCR_IPA_EXTENSIONS (1L << 4) /* U+0250-U+02AF */ + /* U+1D00-U+1D7F */ + /* U+1D80-U+1DBF */ + /* Bit 5 Spacing Modifier Letters */ + /* Modifier Tone Letters */ +#define TT_UCR_SPACING_MODIFIER (1L << 5) /* U+02B0-U+02FF */ + /* U+A700-U+A71F */ + /* Bit 6 Combining Diacritical Marks */ + /* Combining Diacritical Marks Supplement */ +#define TT_UCR_COMBINING_DIACRITICS (1L << 6) /* U+0300-U+036F */ + /* U+1DC0-U+1DFF */ + /* Bit 7 Greek and Coptic */ +#define TT_UCR_GREEK (1L << 7) /* U+0370-U+03FF */ + /* Bit 8 Coptic */ +#define TT_UCR_COPTIC (1L << 8) /* U+2C80-U+2CFF */ + /* Bit 9 Cyrillic */ + /* Cyrillic Supplement */ + /* Cyrillic Extended-A */ + /* Cyrillic Extended-B */ +#define TT_UCR_CYRILLIC (1L << 9) /* U+0400-U+04FF */ + /* U+0500-U+052F */ + /* U+2DE0-U+2DFF */ + /* U+A640-U+A69F */ + /* Bit 10 Armenian */ +#define TT_UCR_ARMENIAN (1L << 10) /* U+0530-U+058F */ + /* Bit 11 Hebrew */ +#define TT_UCR_HEBREW (1L << 11) /* U+0590-U+05FF */ + /* Bit 12 Vai */ +#define TT_UCR_VAI (1L << 12) /* U+A500-U+A63F */ + /* Bit 13 Arabic */ + /* Arabic Supplement */ +#define TT_UCR_ARABIC (1L << 13) /* U+0600-U+06FF */ + /* U+0750-U+077F */ + /* Bit 14 NKo */ +#define TT_UCR_NKO (1L << 14) /* U+07C0-U+07FF */ + /* Bit 15 Devanagari */ +#define TT_UCR_DEVANAGARI (1L << 15) /* U+0900-U+097F */ + /* Bit 16 Bengali */ +#define TT_UCR_BENGALI (1L << 16) /* U+0980-U+09FF */ + /* Bit 17 Gurmukhi */ +#define TT_UCR_GURMUKHI (1L << 17) /* U+0A00-U+0A7F */ + /* Bit 18 Gujarati */ +#define TT_UCR_GUJARATI (1L << 18) /* U+0A80-U+0AFF */ + /* Bit 19 Oriya */ +#define TT_UCR_ORIYA (1L << 19) /* U+0B00-U+0B7F */ + /* Bit 20 Tamil */ +#define TT_UCR_TAMIL (1L << 20) /* U+0B80-U+0BFF */ + /* Bit 21 Telugu */ +#define TT_UCR_TELUGU (1L << 21) /* U+0C00-U+0C7F */ + /* Bit 22 Kannada */ +#define TT_UCR_KANNADA (1L << 22) /* U+0C80-U+0CFF */ + /* Bit 23 Malayalam */ +#define TT_UCR_MALAYALAM (1L << 23) /* U+0D00-U+0D7F */ + /* Bit 24 Thai */ +#define TT_UCR_THAI (1L << 24) /* U+0E00-U+0E7F */ + /* Bit 25 Lao */ +#define TT_UCR_LAO (1L << 25) /* U+0E80-U+0EFF */ + /* Bit 26 Georgian */ + /* Georgian Supplement */ +#define TT_UCR_GEORGIAN (1L << 26) /* U+10A0-U+10FF */ + /* U+2D00-U+2D2F */ + /* Bit 27 Balinese */ +#define TT_UCR_BALINESE (1L << 27) /* U+1B00-U+1B7F */ + /* Bit 28 Hangul Jamo */ +#define TT_UCR_HANGUL_JAMO (1L << 28) /* U+1100-U+11FF */ + /* Bit 29 Latin Extended Additional */ + /* Latin Extended-C */ + /* Latin Extended-D */ +#define TT_UCR_LATIN_EXTENDED_ADDITIONAL (1L << 29) /* U+1E00-U+1EFF */ + /* U+2C60-U+2C7F */ + /* U+A720-U+A7FF */ + /* Bit 30 Greek Extended */ +#define TT_UCR_GREEK_EXTENDED (1L << 30) /* U+1F00-U+1FFF */ + /* Bit 31 General Punctuation */ + /* Supplemental Punctuation */ +#define TT_UCR_GENERAL_PUNCTUATION (1L << 31) /* U+2000-U+206F */ + /* U+2E00-U+2E7F */ + /* Bit 32 Superscripts And Subscripts */ +#define TT_UCR_SUPERSCRIPTS_SUBSCRIPTS (1L << 0) /* U+2070-U+209F */ + /* Bit 33 Currency Symbols */ +#define TT_UCR_CURRENCY_SYMBOLS (1L << 1) /* U+20A0-U+20CF */ + /* Bit 34 Combining Diacritical Marks For Symbols */ +#define TT_UCR_COMBINING_DIACRITICS_SYMB (1L << 2) /* U+20D0-U+20FF */ + /* Bit 35 Letterlike Symbols */ +#define TT_UCR_LETTERLIKE_SYMBOLS (1L << 3) /* U+2100-U+214F */ + /* Bit 36 Number Forms */ +#define TT_UCR_NUMBER_FORMS (1L << 4) /* U+2150-U+218F */ + /* Bit 37 Arrows */ + /* Supplemental Arrows-A */ + /* Supplemental Arrows-B */ + /* Miscellaneous Symbols and Arrows */ +#define TT_UCR_ARROWS (1L << 5) /* U+2190-U+21FF */ + /* U+27F0-U+27FF */ + /* U+2900-U+297F */ + /* U+2B00-U+2BFF */ + /* Bit 38 Mathematical Operators */ + /* Supplemental Mathematical Operators */ + /* Miscellaneous Mathematical Symbols-A */ + /* Miscellaneous Mathematical Symbols-B */ +#define TT_UCR_MATHEMATICAL_OPERATORS (1L << 6) /* U+2200-U+22FF */ + /* U+2A00-U+2AFF */ + /* U+27C0-U+27EF */ + /* U+2980-U+29FF */ + /* Bit 39 Miscellaneous Technical */ +#define TT_UCR_MISCELLANEOUS_TECHNICAL (1L << 7) /* U+2300-U+23FF */ + /* Bit 40 Control Pictures */ +#define TT_UCR_CONTROL_PICTURES (1L << 8) /* U+2400-U+243F */ + /* Bit 41 Optical Character Recognition */ +#define TT_UCR_OCR (1L << 9) /* U+2440-U+245F */ + /* Bit 42 Enclosed Alphanumerics */ +#define TT_UCR_ENCLOSED_ALPHANUMERICS (1L << 10) /* U+2460-U+24FF */ + /* Bit 43 Box Drawing */ +#define TT_UCR_BOX_DRAWING (1L << 11) /* U+2500-U+257F */ + /* Bit 44 Block Elements */ +#define TT_UCR_BLOCK_ELEMENTS (1L << 12) /* U+2580-U+259F */ + /* Bit 45 Geometric Shapes */ +#define TT_UCR_GEOMETRIC_SHAPES (1L << 13) /* U+25A0-U+25FF */ + /* Bit 46 Miscellaneous Symbols */ +#define TT_UCR_MISCELLANEOUS_SYMBOLS (1L << 14) /* U+2600-U+26FF */ + /* Bit 47 Dingbats */ +#define TT_UCR_DINGBATS (1L << 15) /* U+2700-U+27BF */ + /* Bit 48 CJK Symbols and Punctuation */ +#define TT_UCR_CJK_SYMBOLS (1L << 16) /* U+3000-U+303F */ + /* Bit 49 Hiragana */ +#define TT_UCR_HIRAGANA (1L << 17) /* U+3040-U+309F */ + /* Bit 50 Katakana */ + /* Katakana Phonetic Extensions */ +#define TT_UCR_KATAKANA (1L << 18) /* U+30A0-U+30FF */ + /* U+31F0-U+31FF */ + /* Bit 51 Bopomofo */ + /* Bopomofo Extended */ +#define TT_UCR_BOPOMOFO (1L << 19) /* U+3100-U+312F */ + /* U+31A0-U+31BF */ + /* Bit 52 Hangul Compatibility Jamo */ +#define TT_UCR_HANGUL_COMPATIBILITY_JAMO (1L << 20) /* U+3130-U+318F */ + /* Bit 53 Phags-Pa */ +#define TT_UCR_CJK_MISC (1L << 21) /* U+A840-U+A87F */ +#define TT_UCR_KANBUN TT_UCR_CJK_MISC /* deprecated */ +#define TT_UCR_PHAGSPA + /* Bit 54 Enclosed CJK Letters and Months */ +#define TT_UCR_ENCLOSED_CJK_LETTERS_MONTHS (1L << 22) /* U+3200-U+32FF */ + /* Bit 55 CJK Compatibility */ +#define TT_UCR_CJK_COMPATIBILITY (1L << 23) /* U+3300-U+33FF */ + /* Bit 56 Hangul Syllables */ +#define TT_UCR_HANGUL (1L << 24) /* U+AC00-U+D7A3 */ + /* Bit 57 High Surrogates */ + /* High Private Use Surrogates */ + /* Low Surrogates */ + /* */ + /* According to OpenType specs v.1.3+, */ + /* setting bit 57 implies that there is */ + /* at least one codepoint beyond the */ + /* Basic Multilingual Plane that is */ + /* supported by this font. So it really */ + /* means >= U+10000 */ +#define TT_UCR_SURROGATES (1L << 25) /* U+D800-U+DB7F */ + /* U+DB80-U+DBFF */ + /* U+DC00-U+DFFF */ +#define TT_UCR_NON_PLANE_0 TT_UCR_SURROGATES + /* Bit 58 Phoenician */ +#define TT_UCR_PHOENICIAN (1L << 26) /*U+10900-U+1091F*/ + /* Bit 59 CJK Unified Ideographs */ + /* CJK Radicals Supplement */ + /* Kangxi Radicals */ + /* Ideographic Description Characters */ + /* CJK Unified Ideographs Extension A */ + /* CJK Unified Ideographs Extension B */ + /* Kanbun */ +#define TT_UCR_CJK_UNIFIED_IDEOGRAPHS (1L << 27) /* U+4E00-U+9FFF */ + /* U+2E80-U+2EFF */ + /* U+2F00-U+2FDF */ + /* U+2FF0-U+2FFF */ + /* U+3400-U+4DB5 */ + /*U+20000-U+2A6DF*/ + /* U+3190-U+319F */ + /* Bit 60 Private Use */ +#define TT_UCR_PRIVATE_USE (1L << 28) /* U+E000-U+F8FF */ + /* Bit 61 CJK Strokes */ + /* CJK Compatibility Ideographs */ + /* CJK Compatibility Ideographs Supplement */ +#define TT_UCR_CJK_COMPATIBILITY_IDEOGRAPHS (1L << 29) /* U+31C0-U+31EF */ + /* U+F900-U+FAFF */ + /*U+2F800-U+2FA1F*/ + /* Bit 62 Alphabetic Presentation Forms */ +#define TT_UCR_ALPHABETIC_PRESENTATION_FORMS (1L << 30) /* U+FB00-U+FB4F */ + /* Bit 63 Arabic Presentation Forms-A */ +#define TT_UCR_ARABIC_PRESENTATIONS_A (1L << 31) /* U+FB50-U+FDFF */ + /* Bit 64 Combining Half Marks */ +#define TT_UCR_COMBINING_HALF_MARKS (1L << 0) /* U+FE20-U+FE2F */ + /* Bit 65 Vertical forms */ + /* CJK Compatibility Forms */ +#define TT_UCR_CJK_COMPATIBILITY_FORMS (1L << 1) /* U+FE10-U+FE1F */ + /* U+FE30-U+FE4F */ + /* Bit 66 Small Form Variants */ +#define TT_UCR_SMALL_FORM_VARIANTS (1L << 2) /* U+FE50-U+FE6F */ + /* Bit 67 Arabic Presentation Forms-B */ +#define TT_UCR_ARABIC_PRESENTATIONS_B (1L << 3) /* U+FE70-U+FEFE */ + /* Bit 68 Halfwidth and Fullwidth Forms */ +#define TT_UCR_HALFWIDTH_FULLWIDTH_FORMS (1L << 4) /* U+FF00-U+FFEF */ + /* Bit 69 Specials */ +#define TT_UCR_SPECIALS (1L << 5) /* U+FFF0-U+FFFD */ + /* Bit 70 Tibetan */ +#define TT_UCR_TIBETAN (1L << 6) /* U+0F00-U+0FFF */ + /* Bit 71 Syriac */ +#define TT_UCR_SYRIAC (1L << 7) /* U+0700-U+074F */ + /* Bit 72 Thaana */ +#define TT_UCR_THAANA (1L << 8) /* U+0780-U+07BF */ + /* Bit 73 Sinhala */ +#define TT_UCR_SINHALA (1L << 9) /* U+0D80-U+0DFF */ + /* Bit 74 Myanmar */ +#define TT_UCR_MYANMAR (1L << 10) /* U+1000-U+109F */ + /* Bit 75 Ethiopic */ + /* Ethiopic Supplement */ + /* Ethiopic Extended */ +#define TT_UCR_ETHIOPIC (1L << 11) /* U+1200-U+137F */ + /* U+1380-U+139F */ + /* U+2D80-U+2DDF */ + /* Bit 76 Cherokee */ +#define TT_UCR_CHEROKEE (1L << 12) /* U+13A0-U+13FF */ + /* Bit 77 Unified Canadian Aboriginal Syllabics */ +#define TT_UCR_CANADIAN_ABORIGINAL_SYLLABICS (1L << 13) /* U+1400-U+167F */ + /* Bit 78 Ogham */ +#define TT_UCR_OGHAM (1L << 14) /* U+1680-U+169F */ + /* Bit 79 Runic */ +#define TT_UCR_RUNIC (1L << 15) /* U+16A0-U+16FF */ + /* Bit 80 Khmer */ + /* Khmer Symbols */ +#define TT_UCR_KHMER (1L << 16) /* U+1780-U+17FF */ + /* U+19E0-U+19FF */ + /* Bit 81 Mongolian */ +#define TT_UCR_MONGOLIAN (1L << 17) /* U+1800-U+18AF */ + /* Bit 82 Braille Patterns */ +#define TT_UCR_BRAILLE (1L << 18) /* U+2800-U+28FF */ + /* Bit 83 Yi Syllables */ + /* Yi Radicals */ +#define TT_UCR_YI (1L << 19) /* U+A000-U+A48F */ + /* U+A490-U+A4CF */ + /* Bit 84 Tagalog */ + /* Hanunoo */ + /* Buhid */ + /* Tagbanwa */ +#define TT_UCR_PHILIPPINE (1L << 20) /* U+1700-U+171F */ + /* U+1720-U+173F */ + /* U+1740-U+175F */ + /* U+1760-U+177F */ + /* Bit 85 Old Italic */ +#define TT_UCR_OLD_ITALIC (1L << 21) /*U+10300-U+1032F*/ + /* Bit 86 Gothic */ +#define TT_UCR_GOTHIC (1L << 22) /*U+10330-U+1034F*/ + /* Bit 87 Deseret */ +#define TT_UCR_DESERET (1L << 23) /*U+10400-U+1044F*/ + /* Bit 88 Byzantine Musical Symbols */ + /* Musical Symbols */ + /* Ancient Greek Musical Notation */ +#define TT_UCR_MUSICAL_SYMBOLS (1L << 24) /*U+1D000-U+1D0FF*/ + /*U+1D100-U+1D1FF*/ + /*U+1D200-U+1D24F*/ + /* Bit 89 Mathematical Alphanumeric Symbols */ +#define TT_UCR_MATH_ALPHANUMERIC_SYMBOLS (1L << 25) /*U+1D400-U+1D7FF*/ + /* Bit 90 Private Use (plane 15) */ + /* Private Use (plane 16) */ +#define TT_UCR_PRIVATE_USE_SUPPLEMENTARY (1L << 26) /*U+F0000-U+FFFFD*/ + /*U+100000-U+10FFFD*/ + /* Bit 91 Variation Selectors */ + /* Variation Selectors Supplement */ +#define TT_UCR_VARIATION_SELECTORS (1L << 27) /* U+FE00-U+FE0F */ + /*U+E0100-U+E01EF*/ + /* Bit 92 Tags */ +#define TT_UCR_TAGS (1L << 28) /*U+E0000-U+E007F*/ + /* Bit 93 Limbu */ +#define TT_UCR_LIMBU (1L << 29) /* U+1900-U+194F */ + /* Bit 94 Tai Le */ +#define TT_UCR_TAI_LE (1L << 30) /* U+1950-U+197F */ + /* Bit 95 New Tai Lue */ +#define TT_UCR_NEW_TAI_LUE (1L << 31) /* U+1980-U+19DF */ + /* Bit 96 Buginese */ +#define TT_UCR_BUGINESE (1L << 0) /* U+1A00-U+1A1F */ + /* Bit 97 Glagolitic */ +#define TT_UCR_GLAGOLITIC (1L << 1) /* U+2C00-U+2C5F */ + /* Bit 98 Tifinagh */ +#define TT_UCR_TIFINAGH (1L << 2) /* U+2D30-U+2D7F */ + /* Bit 99 Yijing Hexagram Symbols */ +#define TT_UCR_YIJING (1L << 3) /* U+4DC0-U+4DFF */ + /* Bit 100 Syloti Nagri */ +#define TT_UCR_SYLOTI_NAGRI (1L << 4) /* U+A800-U+A82F */ + /* Bit 101 Linear B Syllabary */ + /* Linear B Ideograms */ + /* Aegean Numbers */ +#define TT_UCR_LINEAR_B (1L << 5) /*U+10000-U+1007F*/ + /*U+10080-U+100FF*/ + /*U+10100-U+1013F*/ + /* Bit 102 Ancient Greek Numbers */ +#define TT_UCR_ANCIENT_GREEK_NUMBERS (1L << 6) /*U+10140-U+1018F*/ + /* Bit 103 Ugaritic */ +#define TT_UCR_UGARITIC (1L << 7) /*U+10380-U+1039F*/ + /* Bit 104 Old Persian */ +#define TT_UCR_OLD_PERSIAN (1L << 8) /*U+103A0-U+103DF*/ + /* Bit 105 Shavian */ +#define TT_UCR_SHAVIAN (1L << 9) /*U+10450-U+1047F*/ + /* Bit 106 Osmanya */ +#define TT_UCR_OSMANYA (1L << 10) /*U+10480-U+104AF*/ + /* Bit 107 Cypriot Syllabary */ +#define TT_UCR_CYPRIOT_SYLLABARY (1L << 11) /*U+10800-U+1083F*/ + /* Bit 108 Kharoshthi */ +#define TT_UCR_KHAROSHTHI (1L << 12) /*U+10A00-U+10A5F*/ + /* Bit 109 Tai Xuan Jing Symbols */ +#define TT_UCR_TAI_XUAN_JING (1L << 13) /*U+1D300-U+1D35F*/ + /* Bit 110 Cuneiform */ + /* Cuneiform Numbers and Punctuation */ +#define TT_UCR_CUNEIFORM (1L << 14) /*U+12000-U+123FF*/ + /*U+12400-U+1247F*/ + /* Bit 111 Counting Rod Numerals */ +#define TT_UCR_COUNTING_ROD_NUMERALS (1L << 15) /*U+1D360-U+1D37F*/ + /* Bit 112 Sundanese */ +#define TT_UCR_SUNDANESE (1L << 16) /* U+1B80-U+1BBF */ + /* Bit 113 Lepcha */ +#define TT_UCR_LEPCHA (1L << 17) /* U+1C00-U+1C4F */ + /* Bit 114 Ol Chiki */ +#define TT_UCR_OL_CHIKI (1L << 18) /* U+1C50-U+1C7F */ + /* Bit 115 Saurashtra */ +#define TT_UCR_SAURASHTRA (1L << 19) /* U+A880-U+A8DF */ + /* Bit 116 Kayah Li */ +#define TT_UCR_KAYAH_LI (1L << 20) /* U+A900-U+A92F */ + /* Bit 117 Rejang */ +#define TT_UCR_REJANG (1L << 21) /* U+A930-U+A95F */ + /* Bit 118 Cham */ +#define TT_UCR_CHAM (1L << 22) /* U+AA00-U+AA5F */ + /* Bit 119 Ancient Symbols */ +#define TT_UCR_ANCIENT_SYMBOLS (1L << 23) /*U+10190-U+101CF*/ + /* Bit 120 Phaistos Disc */ +#define TT_UCR_PHAISTOS_DISC (1L << 24) /*U+101D0-U+101FF*/ + /* Bit 121 Carian */ + /* Lycian */ + /* Lydian */ +#define TT_UCR_OLD_ANATOLIAN (1L << 25) /*U+102A0-U+102DF*/ + /*U+10280-U+1029F*/ + /*U+10920-U+1093F*/ + /* Bit 122 Domino Tiles */ + /* Mahjong Tiles */ +#define TT_UCR_GAME_TILES (1L << 26) /*U+1F030-U+1F09F*/ + /*U+1F000-U+1F02F*/ + /* Bit 123-127 Reserved for process-internal usage */ + + + /*************************************************************************/ + /* */ + /* Some compilers have a very limited length of identifiers. */ + /* */ +#if defined( __TURBOC__ ) && __TURBOC__ < 0x0410 || defined( __PACIFIC__ ) +#define HAVE_LIMIT_ON_IDENTS +#endif + + +#ifndef HAVE_LIMIT_ON_IDENTS + + + /*************************************************************************/ + /* */ + /* Here some alias #defines in order to be clearer. */ + /* */ + /* These are not always #defined to stay within the 31~character limit */ + /* which some compilers have. */ + /* */ + /* Credits go to Dave Hoo <dhoo@flash.net> for pointing out that modern */ + /* Borland compilers (read: from BC++ 3.1 on) can increase this limit. */ + /* If you get a warning with such a compiler, use the -i40 switch. */ + /* */ +#define TT_UCR_ARABIC_PRESENTATION_FORMS_A \ + TT_UCR_ARABIC_PRESENTATIONS_A +#define TT_UCR_ARABIC_PRESENTATION_FORMS_B \ + TT_UCR_ARABIC_PRESENTATIONS_B + +#define TT_UCR_COMBINING_DIACRITICAL_MARKS \ + TT_UCR_COMBINING_DIACRITICS +#define TT_UCR_COMBINING_DIACRITICAL_MARKS_SYMB \ + TT_UCR_COMBINING_DIACRITICS_SYMB + + +#endif /* !HAVE_LIMIT_ON_IDENTS */ + + +FT_END_HEADER + +#endif /* __TTNAMEID_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/tttables.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/tttables.h new file mode 100644 index 0000000000..02236c2005 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/tttables.h @@ -0,0 +1,763 @@ +/***************************************************************************/ +/* */ +/* tttables.h */ +/* */ +/* Basic SFNT/TrueType tables definitions and interface */ +/* (specification only). */ +/* */ +/* Copyright 1996-2005, 2008-2011 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __TTTABLES_H__ +#define __TTTABLES_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /*************************************************************************/ + /* */ + /* <Section> */ + /* truetype_tables */ + /* */ + /* <Title> */ + /* TrueType Tables */ + /* */ + /* <Abstract> */ + /* TrueType specific table types and functions. */ + /* */ + /* <Description> */ + /* This section contains the definition of TrueType-specific tables */ + /* as well as some routines used to access and process them. */ + /* */ + /*************************************************************************/ + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_Header */ + /* */ + /* <Description> */ + /* A structure used to model a TrueType font header table. All */ + /* fields follow the TrueType specification. */ + /* */ + typedef struct TT_Header_ + { + FT_Fixed Table_Version; + FT_Fixed Font_Revision; + + FT_Long CheckSum_Adjust; + FT_Long Magic_Number; + + FT_UShort Flags; + FT_UShort Units_Per_EM; + + FT_Long Created [2]; + FT_Long Modified[2]; + + FT_Short xMin; + FT_Short yMin; + FT_Short xMax; + FT_Short yMax; + + FT_UShort Mac_Style; + FT_UShort Lowest_Rec_PPEM; + + FT_Short Font_Direction; + FT_Short Index_To_Loc_Format; + FT_Short Glyph_Data_Format; + + } TT_Header; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_HoriHeader */ + /* */ + /* <Description> */ + /* A structure used to model a TrueType horizontal header, the `hhea' */ + /* table, as well as the corresponding horizontal metrics table, */ + /* i.e., the `hmtx' table. */ + /* */ + /* <Fields> */ + /* Version :: The table version. */ + /* */ + /* Ascender :: The font's ascender, i.e., the distance */ + /* from the baseline to the top-most of all */ + /* glyph points found in the font. */ + /* */ + /* This value is invalid in many fonts, as */ + /* it is usually set by the font designer, */ + /* and often reflects only a portion of the */ + /* glyphs found in the font (maybe ASCII). */ + /* */ + /* You should use the `sTypoAscender' field */ + /* of the OS/2 table instead if you want */ + /* the correct one. */ + /* */ + /* Descender :: The font's descender, i.e., the distance */ + /* from the baseline to the bottom-most of */ + /* all glyph points found in the font. It */ + /* is negative. */ + /* */ + /* This value is invalid in many fonts, as */ + /* it is usually set by the font designer, */ + /* and often reflects only a portion of the */ + /* glyphs found in the font (maybe ASCII). */ + /* */ + /* You should use the `sTypoDescender' */ + /* field of the OS/2 table instead if you */ + /* want the correct one. */ + /* */ + /* Line_Gap :: The font's line gap, i.e., the distance */ + /* to add to the ascender and descender to */ + /* get the BTB, i.e., the */ + /* baseline-to-baseline distance for the */ + /* font. */ + /* */ + /* advance_Width_Max :: This field is the maximum of all advance */ + /* widths found in the font. It can be */ + /* used to compute the maximum width of an */ + /* arbitrary string of text. */ + /* */ + /* min_Left_Side_Bearing :: The minimum left side bearing of all */ + /* glyphs within the font. */ + /* */ + /* min_Right_Side_Bearing :: The minimum right side bearing of all */ + /* glyphs within the font. */ + /* */ + /* xMax_Extent :: The maximum horizontal extent (i.e., the */ + /* `width' of a glyph's bounding box) for */ + /* all glyphs in the font. */ + /* */ + /* caret_Slope_Rise :: The rise coefficient of the cursor's */ + /* slope of the cursor (slope=rise/run). */ + /* */ + /* caret_Slope_Run :: The run coefficient of the cursor's */ + /* slope. */ + /* */ + /* Reserved :: 8~reserved bytes. */ + /* */ + /* metric_Data_Format :: Always~0. */ + /* */ + /* number_Of_HMetrics :: Number of HMetrics entries in the `hmtx' */ + /* table -- this value can be smaller than */ + /* the total number of glyphs in the font. */ + /* */ + /* long_metrics :: A pointer into the `hmtx' table. */ + /* */ + /* short_metrics :: A pointer into the `hmtx' table. */ + /* */ + /* <Note> */ + /* IMPORTANT: The TT_HoriHeader and TT_VertHeader structures should */ + /* be identical except for the names of their fields which */ + /* are different. */ + /* */ + /* This ensures that a single function in the `ttload' */ + /* module is able to read both the horizontal and vertical */ + /* headers. */ + /* */ + typedef struct TT_HoriHeader_ + { + FT_Fixed Version; + FT_Short Ascender; + FT_Short Descender; + FT_Short Line_Gap; + + FT_UShort advance_Width_Max; /* advance width maximum */ + + FT_Short min_Left_Side_Bearing; /* minimum left-sb */ + FT_Short min_Right_Side_Bearing; /* minimum right-sb */ + FT_Short xMax_Extent; /* xmax extents */ + FT_Short caret_Slope_Rise; + FT_Short caret_Slope_Run; + FT_Short caret_Offset; + + FT_Short Reserved[4]; + + FT_Short metric_Data_Format; + FT_UShort number_Of_HMetrics; + + /* The following fields are not defined by the TrueType specification */ + /* but they are used to connect the metrics header to the relevant */ + /* `HMTX' table. */ + + void* long_metrics; + void* short_metrics; + + } TT_HoriHeader; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_VertHeader */ + /* */ + /* <Description> */ + /* A structure used to model a TrueType vertical header, the `vhea' */ + /* table, as well as the corresponding vertical metrics table, i.e., */ + /* the `vmtx' table. */ + /* */ + /* <Fields> */ + /* Version :: The table version. */ + /* */ + /* Ascender :: The font's ascender, i.e., the distance */ + /* from the baseline to the top-most of */ + /* all glyph points found in the font. */ + /* */ + /* This value is invalid in many fonts, as */ + /* it is usually set by the font designer, */ + /* and often reflects only a portion of */ + /* the glyphs found in the font (maybe */ + /* ASCII). */ + /* */ + /* You should use the `sTypoAscender' */ + /* field of the OS/2 table instead if you */ + /* want the correct one. */ + /* */ + /* Descender :: The font's descender, i.e., the */ + /* distance from the baseline to the */ + /* bottom-most of all glyph points found */ + /* in the font. It is negative. */ + /* */ + /* This value is invalid in many fonts, as */ + /* it is usually set by the font designer, */ + /* and often reflects only a portion of */ + /* the glyphs found in the font (maybe */ + /* ASCII). */ + /* */ + /* You should use the `sTypoDescender' */ + /* field of the OS/2 table instead if you */ + /* want the correct one. */ + /* */ + /* Line_Gap :: The font's line gap, i.e., the distance */ + /* to add to the ascender and descender to */ + /* get the BTB, i.e., the */ + /* baseline-to-baseline distance for the */ + /* font. */ + /* */ + /* advance_Height_Max :: This field is the maximum of all */ + /* advance heights found in the font. It */ + /* can be used to compute the maximum */ + /* height of an arbitrary string of text. */ + /* */ + /* min_Top_Side_Bearing :: The minimum top side bearing of all */ + /* glyphs within the font. */ + /* */ + /* min_Bottom_Side_Bearing :: The minimum bottom side bearing of all */ + /* glyphs within the font. */ + /* */ + /* yMax_Extent :: The maximum vertical extent (i.e., the */ + /* `height' of a glyph's bounding box) for */ + /* all glyphs in the font. */ + /* */ + /* caret_Slope_Rise :: The rise coefficient of the cursor's */ + /* slope of the cursor (slope=rise/run). */ + /* */ + /* caret_Slope_Run :: The run coefficient of the cursor's */ + /* slope. */ + /* */ + /* caret_Offset :: The cursor's offset for slanted fonts. */ + /* This value is `reserved' in vmtx */ + /* version 1.0. */ + /* */ + /* Reserved :: 8~reserved bytes. */ + /* */ + /* metric_Data_Format :: Always~0. */ + /* */ + /* number_Of_HMetrics :: Number of VMetrics entries in the */ + /* `vmtx' table -- this value can be */ + /* smaller than the total number of glyphs */ + /* in the font. */ + /* */ + /* long_metrics :: A pointer into the `vmtx' table. */ + /* */ + /* short_metrics :: A pointer into the `vmtx' table. */ + /* */ + /* <Note> */ + /* IMPORTANT: The TT_HoriHeader and TT_VertHeader structures should */ + /* be identical except for the names of their fields which */ + /* are different. */ + /* */ + /* This ensures that a single function in the `ttload' */ + /* module is able to read both the horizontal and vertical */ + /* headers. */ + /* */ + typedef struct TT_VertHeader_ + { + FT_Fixed Version; + FT_Short Ascender; + FT_Short Descender; + FT_Short Line_Gap; + + FT_UShort advance_Height_Max; /* advance height maximum */ + + FT_Short min_Top_Side_Bearing; /* minimum left-sb or top-sb */ + FT_Short min_Bottom_Side_Bearing; /* minimum right-sb or bottom-sb */ + FT_Short yMax_Extent; /* xmax or ymax extents */ + FT_Short caret_Slope_Rise; + FT_Short caret_Slope_Run; + FT_Short caret_Offset; + + FT_Short Reserved[4]; + + FT_Short metric_Data_Format; + FT_UShort number_Of_VMetrics; + + /* The following fields are not defined by the TrueType specification */ + /* but they're used to connect the metrics header to the relevant */ + /* `HMTX' or `VMTX' table. */ + + void* long_metrics; + void* short_metrics; + + } TT_VertHeader; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_OS2 */ + /* */ + /* <Description> */ + /* A structure used to model a TrueType OS/2 table. This is the long */ + /* table version. All fields comply to the TrueType specification. */ + /* */ + /* Note that we now support old Mac fonts which do not include an */ + /* OS/2 table. In this case, the `version' field is always set to */ + /* 0xFFFF. */ + /* */ + typedef struct TT_OS2_ + { + FT_UShort version; /* 0x0001 - more or 0xFFFF */ + FT_Short xAvgCharWidth; + FT_UShort usWeightClass; + FT_UShort usWidthClass; + FT_Short fsType; + FT_Short ySubscriptXSize; + FT_Short ySubscriptYSize; + FT_Short ySubscriptXOffset; + FT_Short ySubscriptYOffset; + FT_Short ySuperscriptXSize; + FT_Short ySuperscriptYSize; + FT_Short ySuperscriptXOffset; + FT_Short ySuperscriptYOffset; + FT_Short yStrikeoutSize; + FT_Short yStrikeoutPosition; + FT_Short sFamilyClass; + + FT_Byte panose[10]; + + FT_ULong ulUnicodeRange1; /* Bits 0-31 */ + FT_ULong ulUnicodeRange2; /* Bits 32-63 */ + FT_ULong ulUnicodeRange3; /* Bits 64-95 */ + FT_ULong ulUnicodeRange4; /* Bits 96-127 */ + + FT_Char achVendID[4]; + + FT_UShort fsSelection; + FT_UShort usFirstCharIndex; + FT_UShort usLastCharIndex; + FT_Short sTypoAscender; + FT_Short sTypoDescender; + FT_Short sTypoLineGap; + FT_UShort usWinAscent; + FT_UShort usWinDescent; + + /* only version 1 tables: */ + + FT_ULong ulCodePageRange1; /* Bits 0-31 */ + FT_ULong ulCodePageRange2; /* Bits 32-63 */ + + /* only version 2 tables: */ + + FT_Short sxHeight; + FT_Short sCapHeight; + FT_UShort usDefaultChar; + FT_UShort usBreakChar; + FT_UShort usMaxContext; + + } TT_OS2; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_Postscript */ + /* */ + /* <Description> */ + /* A structure used to model a TrueType PostScript table. All fields */ + /* comply to the TrueType specification. This structure does not */ + /* reference the PostScript glyph names, which can be nevertheless */ + /* accessed with the `ttpost' module. */ + /* */ + typedef struct TT_Postscript_ + { + FT_Fixed FormatType; + FT_Fixed italicAngle; + FT_Short underlinePosition; + FT_Short underlineThickness; + FT_ULong isFixedPitch; + FT_ULong minMemType42; + FT_ULong maxMemType42; + FT_ULong minMemType1; + FT_ULong maxMemType1; + + /* Glyph names follow in the file, but we don't */ + /* load them by default. See the ttpost.c file. */ + + } TT_Postscript; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_PCLT */ + /* */ + /* <Description> */ + /* A structure used to model a TrueType PCLT table. All fields */ + /* comply to the TrueType specification. */ + /* */ + typedef struct TT_PCLT_ + { + FT_Fixed Version; + FT_ULong FontNumber; + FT_UShort Pitch; + FT_UShort xHeight; + FT_UShort Style; + FT_UShort TypeFamily; + FT_UShort CapHeight; + FT_UShort SymbolSet; + FT_Char TypeFace[16]; + FT_Char CharacterComplement[8]; + FT_Char FileName[6]; + FT_Char StrokeWeight; + FT_Char WidthType; + FT_Byte SerifStyle; + FT_Byte Reserved; + + } TT_PCLT; + + + /*************************************************************************/ + /* */ + /* <Struct> */ + /* TT_MaxProfile */ + /* */ + /* <Description> */ + /* The maximum profile is a table containing many max values which */ + /* can be used to pre-allocate arrays. This ensures that no memory */ + /* allocation occurs during a glyph load. */ + /* */ + /* <Fields> */ + /* version :: The version number. */ + /* */ + /* numGlyphs :: The number of glyphs in this TrueType */ + /* font. */ + /* */ + /* maxPoints :: The maximum number of points in a */ + /* non-composite TrueType glyph. See also */ + /* the structure element */ + /* `maxCompositePoints'. */ + /* */ + /* maxContours :: The maximum number of contours in a */ + /* non-composite TrueType glyph. See also */ + /* the structure element */ + /* `maxCompositeContours'. */ + /* */ + /* maxCompositePoints :: The maximum number of points in a */ + /* composite TrueType glyph. See also the */ + /* structure element `maxPoints'. */ + /* */ + /* maxCompositeContours :: The maximum number of contours in a */ + /* composite TrueType glyph. See also the */ + /* structure element `maxContours'. */ + /* */ + /* maxZones :: The maximum number of zones used for */ + /* glyph hinting. */ + /* */ + /* maxTwilightPoints :: The maximum number of points in the */ + /* twilight zone used for glyph hinting. */ + /* */ + /* maxStorage :: The maximum number of elements in the */ + /* storage area used for glyph hinting. */ + /* */ + /* maxFunctionDefs :: The maximum number of function */ + /* definitions in the TrueType bytecode for */ + /* this font. */ + /* */ + /* maxInstructionDefs :: The maximum number of instruction */ + /* definitions in the TrueType bytecode for */ + /* this font. */ + /* */ + /* maxStackElements :: The maximum number of stack elements used */ + /* during bytecode interpretation. */ + /* */ + /* maxSizeOfInstructions :: The maximum number of TrueType opcodes */ + /* used for glyph hinting. */ + /* */ + /* maxComponentElements :: The maximum number of simple (i.e., non- */ + /* composite) glyphs in a composite glyph. */ + /* */ + /* maxComponentDepth :: The maximum nesting depth of composite */ + /* glyphs. */ + /* */ + /* <Note> */ + /* This structure is only used during font loading. */ + /* */ + typedef struct TT_MaxProfile_ + { + FT_Fixed version; + FT_UShort numGlyphs; + FT_UShort maxPoints; + FT_UShort maxContours; + FT_UShort maxCompositePoints; + FT_UShort maxCompositeContours; + FT_UShort maxZones; + FT_UShort maxTwilightPoints; + FT_UShort maxStorage; + FT_UShort maxFunctionDefs; + FT_UShort maxInstructionDefs; + FT_UShort maxStackElements; + FT_UShort maxSizeOfInstructions; + FT_UShort maxComponentElements; + FT_UShort maxComponentDepth; + + } TT_MaxProfile; + + + /*************************************************************************/ + /* */ + /* <Enum> */ + /* FT_Sfnt_Tag */ + /* */ + /* <Description> */ + /* An enumeration used to specify the index of an SFNT table. */ + /* Used in the @FT_Get_Sfnt_Table API function. */ + /* */ + typedef enum FT_Sfnt_Tag_ + { + ft_sfnt_head = 0, /* TT_Header */ + ft_sfnt_maxp = 1, /* TT_MaxProfile */ + ft_sfnt_os2 = 2, /* TT_OS2 */ + ft_sfnt_hhea = 3, /* TT_HoriHeader */ + ft_sfnt_vhea = 4, /* TT_VertHeader */ + ft_sfnt_post = 5, /* TT_Postscript */ + ft_sfnt_pclt = 6, /* TT_PCLT */ + + sfnt_max /* internal end mark */ + + } FT_Sfnt_Tag; + + /* */ + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_Sfnt_Table */ + /* */ + /* <Description> */ + /* Return a pointer to a given SFNT table within a face. */ + /* */ + /* <Input> */ + /* face :: A handle to the source. */ + /* */ + /* tag :: The index of the SFNT table. */ + /* */ + /* <Return> */ + /* A type-less pointer to the table. This will be~0 in case of */ + /* error, or if the corresponding table was not found *OR* loaded */ + /* from the file. */ + /* */ + /* Use a typecast according to `tag' to access the structure */ + /* elements. */ + /* */ + /* <Note> */ + /* The table is owned by the face object and disappears with it. */ + /* */ + /* This function is only useful to access SFNT tables that are loaded */ + /* by the sfnt, truetype, and opentype drivers. See @FT_Sfnt_Tag for */ + /* a list. */ + /* */ + FT_EXPORT( void* ) + FT_Get_Sfnt_Table( FT_Face face, + FT_Sfnt_Tag tag ); + + + /************************************************************************** + * + * @function: + * FT_Load_Sfnt_Table + * + * @description: + * Load any font table into client memory. + * + * @input: + * face :: + * A handle to the source face. + * + * tag :: + * The four-byte tag of the table to load. Use the value~0 if you want + * to access the whole font file. Otherwise, you can use one of the + * definitions found in the @FT_TRUETYPE_TAGS_H file, or forge a new + * one with @FT_MAKE_TAG. + * + * offset :: + * The starting offset in the table (or file if tag == 0). + * + * @output: + * buffer :: + * The target buffer address. The client must ensure that the memory + * array is big enough to hold the data. + * + * @inout: + * length :: + * If the `length' parameter is NULL, then try to load the whole table. + * Return an error code if it fails. + * + * Else, if `*length' is~0, exit immediately while returning the + * table's (or file) full size in it. + * + * Else the number of bytes to read from the table or file, from the + * starting offset. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If you need to determine the table's length you should first call this + * function with `*length' set to~0, as in the following example: + * + * { + * FT_ULong length = 0; + * + * + * error = FT_Load_Sfnt_Table( face, tag, 0, NULL, &length ); + * if ( error ) { ... table does not exist ... } + * + * buffer = malloc( length ); + * if ( buffer == NULL ) { ... not enough memory ... } + * + * error = FT_Load_Sfnt_Table( face, tag, 0, buffer, &length ); + * if ( error ) { ... could not load table ... } + * } + */ + FT_EXPORT( FT_Error ) + FT_Load_Sfnt_Table( FT_Face face, + FT_ULong tag, + FT_Long offset, + FT_Byte* buffer, + FT_ULong* length ); + + + /************************************************************************** + * + * @function: + * FT_Sfnt_Table_Info + * + * @description: + * Return information on an SFNT table. + * + * @input: + * face :: + * A handle to the source face. + * + * table_index :: + * The index of an SFNT table. The function returns + * FT_Err_Table_Missing for an invalid value. + * + * @inout: + * tag :: + * The name tag of the SFNT table. If the value is NULL, `table_index' + * is ignored, and `length' returns the number of SFNT tables in the + * font. + * + * @output: + * length :: + * The length of the SFNT table (or the number of SFNT tables, depending + * on `tag'). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * SFNT tables with length zero are treated as missing. + * + */ + FT_EXPORT( FT_Error ) + FT_Sfnt_Table_Info( FT_Face face, + FT_UInt table_index, + FT_ULong *tag, + FT_ULong *length ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_CMap_Language_ID */ + /* */ + /* <Description> */ + /* Return TrueType/sfnt specific cmap language ID. Definitions of */ + /* language ID values are in `freetype/ttnameid.h'. */ + /* */ + /* <Input> */ + /* charmap :: */ + /* The target charmap. */ + /* */ + /* <Return> */ + /* The language ID of `charmap'. If `charmap' doesn't belong to a */ + /* TrueType/sfnt face, just return~0 as the default value. */ + /* */ + FT_EXPORT( FT_ULong ) + FT_Get_CMap_Language_ID( FT_CharMap charmap ); + + + /*************************************************************************/ + /* */ + /* <Function> */ + /* FT_Get_CMap_Format */ + /* */ + /* <Description> */ + /* Return TrueType/sfnt specific cmap format. */ + /* */ + /* <Input> */ + /* charmap :: */ + /* The target charmap. */ + /* */ + /* <Return> */ + /* The format of `charmap'. If `charmap' doesn't belong to a */ + /* TrueType/sfnt face, return -1. */ + /* */ + FT_EXPORT( FT_Long ) + FT_Get_CMap_Format( FT_CharMap charmap ); + + /* */ + + +FT_END_HEADER + +#endif /* __TTTABLES_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/tttags.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/tttags.h new file mode 100644 index 0000000000..307ce4b637 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/tttags.h @@ -0,0 +1,107 @@ +/***************************************************************************/ +/* */ +/* tttags.h */ +/* */ +/* Tags for TrueType and OpenType tables (specification only). */ +/* */ +/* Copyright 1996-2001, 2004, 2005, 2007, 2008 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __TTAGS_H__ +#define __TTAGS_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + +#define TTAG_avar FT_MAKE_TAG( 'a', 'v', 'a', 'r' ) +#define TTAG_BASE FT_MAKE_TAG( 'B', 'A', 'S', 'E' ) +#define TTAG_bdat FT_MAKE_TAG( 'b', 'd', 'a', 't' ) +#define TTAG_BDF FT_MAKE_TAG( 'B', 'D', 'F', ' ' ) +#define TTAG_bhed FT_MAKE_TAG( 'b', 'h', 'e', 'd' ) +#define TTAG_bloc FT_MAKE_TAG( 'b', 'l', 'o', 'c' ) +#define TTAG_bsln FT_MAKE_TAG( 'b', 's', 'l', 'n' ) +#define TTAG_CFF FT_MAKE_TAG( 'C', 'F', 'F', ' ' ) +#define TTAG_CID FT_MAKE_TAG( 'C', 'I', 'D', ' ' ) +#define TTAG_cmap FT_MAKE_TAG( 'c', 'm', 'a', 'p' ) +#define TTAG_cvar FT_MAKE_TAG( 'c', 'v', 'a', 'r' ) +#define TTAG_cvt FT_MAKE_TAG( 'c', 'v', 't', ' ' ) +#define TTAG_DSIG FT_MAKE_TAG( 'D', 'S', 'I', 'G' ) +#define TTAG_EBDT FT_MAKE_TAG( 'E', 'B', 'D', 'T' ) +#define TTAG_EBLC FT_MAKE_TAG( 'E', 'B', 'L', 'C' ) +#define TTAG_EBSC FT_MAKE_TAG( 'E', 'B', 'S', 'C' ) +#define TTAG_feat FT_MAKE_TAG( 'f', 'e', 'a', 't' ) +#define TTAG_FOND FT_MAKE_TAG( 'F', 'O', 'N', 'D' ) +#define TTAG_fpgm FT_MAKE_TAG( 'f', 'p', 'g', 'm' ) +#define TTAG_fvar FT_MAKE_TAG( 'f', 'v', 'a', 'r' ) +#define TTAG_gasp FT_MAKE_TAG( 'g', 'a', 's', 'p' ) +#define TTAG_GDEF FT_MAKE_TAG( 'G', 'D', 'E', 'F' ) +#define TTAG_glyf FT_MAKE_TAG( 'g', 'l', 'y', 'f' ) +#define TTAG_GPOS FT_MAKE_TAG( 'G', 'P', 'O', 'S' ) +#define TTAG_GSUB FT_MAKE_TAG( 'G', 'S', 'U', 'B' ) +#define TTAG_gvar FT_MAKE_TAG( 'g', 'v', 'a', 'r' ) +#define TTAG_hdmx FT_MAKE_TAG( 'h', 'd', 'm', 'x' ) +#define TTAG_head FT_MAKE_TAG( 'h', 'e', 'a', 'd' ) +#define TTAG_hhea FT_MAKE_TAG( 'h', 'h', 'e', 'a' ) +#define TTAG_hmtx FT_MAKE_TAG( 'h', 'm', 't', 'x' ) +#define TTAG_JSTF FT_MAKE_TAG( 'J', 'S', 'T', 'F' ) +#define TTAG_just FT_MAKE_TAG( 'j', 'u', 's', 't' ) +#define TTAG_kern FT_MAKE_TAG( 'k', 'e', 'r', 'n' ) +#define TTAG_lcar FT_MAKE_TAG( 'l', 'c', 'a', 'r' ) +#define TTAG_loca FT_MAKE_TAG( 'l', 'o', 'c', 'a' ) +#define TTAG_LTSH FT_MAKE_TAG( 'L', 'T', 'S', 'H' ) +#define TTAG_LWFN FT_MAKE_TAG( 'L', 'W', 'F', 'N' ) +#define TTAG_MATH FT_MAKE_TAG( 'M', 'A', 'T', 'H' ) +#define TTAG_maxp FT_MAKE_TAG( 'm', 'a', 'x', 'p' ) +#define TTAG_META FT_MAKE_TAG( 'M', 'E', 'T', 'A' ) +#define TTAG_MMFX FT_MAKE_TAG( 'M', 'M', 'F', 'X' ) +#define TTAG_MMSD FT_MAKE_TAG( 'M', 'M', 'S', 'D' ) +#define TTAG_mort FT_MAKE_TAG( 'm', 'o', 'r', 't' ) +#define TTAG_morx FT_MAKE_TAG( 'm', 'o', 'r', 'x' ) +#define TTAG_name FT_MAKE_TAG( 'n', 'a', 'm', 'e' ) +#define TTAG_opbd FT_MAKE_TAG( 'o', 'p', 'b', 'd' ) +#define TTAG_OS2 FT_MAKE_TAG( 'O', 'S', '/', '2' ) +#define TTAG_OTTO FT_MAKE_TAG( 'O', 'T', 'T', 'O' ) +#define TTAG_PCLT FT_MAKE_TAG( 'P', 'C', 'L', 'T' ) +#define TTAG_POST FT_MAKE_TAG( 'P', 'O', 'S', 'T' ) +#define TTAG_post FT_MAKE_TAG( 'p', 'o', 's', 't' ) +#define TTAG_prep FT_MAKE_TAG( 'p', 'r', 'e', 'p' ) +#define TTAG_prop FT_MAKE_TAG( 'p', 'r', 'o', 'p' ) +#define TTAG_sfnt FT_MAKE_TAG( 's', 'f', 'n', 't' ) +#define TTAG_SING FT_MAKE_TAG( 'S', 'I', 'N', 'G' ) +#define TTAG_trak FT_MAKE_TAG( 't', 'r', 'a', 'k' ) +#define TTAG_true FT_MAKE_TAG( 't', 'r', 'u', 'e' ) +#define TTAG_ttc FT_MAKE_TAG( 't', 't', 'c', ' ' ) +#define TTAG_ttcf FT_MAKE_TAG( 't', 't', 'c', 'f' ) +#define TTAG_TYP1 FT_MAKE_TAG( 'T', 'Y', 'P', '1' ) +#define TTAG_typ1 FT_MAKE_TAG( 't', 'y', 'p', '1' ) +#define TTAG_VDMX FT_MAKE_TAG( 'V', 'D', 'M', 'X' ) +#define TTAG_vhea FT_MAKE_TAG( 'v', 'h', 'e', 'a' ) +#define TTAG_vmtx FT_MAKE_TAG( 'v', 'm', 't', 'x' ) + + +FT_END_HEADER + +#endif /* __TTAGS_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ttunpat.h b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ttunpat.h new file mode 100644 index 0000000000..a0162759b7 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/freetype/ttunpat.h @@ -0,0 +1,59 @@ +/***************************************************************************/ +/* */ +/* ttunpat.h */ +/* */ +/* Definitions for the unpatented TrueType hinting system */ +/* */ +/* Copyright 2003, 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* Written by Graham Asher <graham.asher@btinternet.com> */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + +#ifndef __TTUNPAT_H__ +#define __TTUNPAT_H__ + + +#include <ft2build.h> +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************** + * + * @constant: + * FT_PARAM_TAG_UNPATENTED_HINTING + * + * @description: + * A constant used as the tag of an @FT_Parameter structure to indicate + * that unpatented methods only should be used by the TrueType bytecode + * interpreter for a typeface opened by @FT_Open_Face. + * + */ +#define FT_PARAM_TAG_UNPATENTED_HINTING FT_MAKE_TAG( 'u', 'n', 'p', 'a' ) + + /* */ + +FT_END_HEADER + + +#endif /* __TTUNPAT_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libfreetype2/ft2build.h b/cocos2dx/platform/third_party/linux/libfreetype2/ft2build.h new file mode 100644 index 0000000000..923d887df6 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libfreetype2/ft2build.h @@ -0,0 +1,39 @@ +/***************************************************************************/ +/* */ +/* ft2build.h */ +/* */ +/* FreeType 2 build and setup macros. */ +/* (Generic version) */ +/* */ +/* Copyright 1996-2001, 2006 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /*************************************************************************/ + /* */ + /* This file corresponds to the default `ft2build.h' file for */ + /* FreeType 2. It uses the `freetype' include root. */ + /* */ + /* Note that specific platforms might use a different configuration. */ + /* See builds/unix/ft2unix.h for an example. */ + /* */ + /*************************************************************************/ + + +#ifndef __FT2_BUILD_GENERIC_H__ +#define __FT2_BUILD_GENERIC_H__ + +#include <freetype/config/ftheader.h> + +#endif /* __FT2_BUILD_GENERIC_H__ */ + + +/* END */ diff --git a/cocos2dx/platform/third_party/linux/libjpeg/cderror.h b/cocos2dx/platform/third_party/linux/libjpeg/cderror.h new file mode 100644 index 0000000000..e19c475c5c --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/cderror.h @@ -0,0 +1,134 @@ +/* + * cderror.h + * + * Copyright (C) 1994-1997, Thomas G. Lane. + * Modified 2009 by Guido Vollbeding. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This file defines the error and message codes for the cjpeg/djpeg + * applications. These strings are not needed as part of the JPEG library + * proper. + * Edit this file to add new codes, or to translate the message strings to + * some other language. + */ + +/* + * To define the enum list of message codes, include this file without + * defining macro JMESSAGE. To create a message string table, include it + * again with a suitable JMESSAGE definition (see jerror.c for an example). + */ +#ifndef JMESSAGE +#ifndef CDERROR_H +#define CDERROR_H +/* First time through, define the enum list */ +#define JMAKE_ENUM_LIST +#else +/* Repeated inclusions of this file are no-ops unless JMESSAGE is defined */ +#define JMESSAGE(code,string) +#endif /* CDERROR_H */ +#endif /* JMESSAGE */ + +#ifdef JMAKE_ENUM_LIST + +typedef enum { + +#define JMESSAGE(code,string) code , + +#endif /* JMAKE_ENUM_LIST */ + +JMESSAGE(JMSG_FIRSTADDONCODE=1000, NULL) /* Must be first entry! */ + +#ifdef BMP_SUPPORTED +JMESSAGE(JERR_BMP_BADCMAP, "Unsupported BMP colormap format") +JMESSAGE(JERR_BMP_BADDEPTH, "Only 8- and 24-bit BMP files are supported") +JMESSAGE(JERR_BMP_BADHEADER, "Invalid BMP file: bad header length") +JMESSAGE(JERR_BMP_BADPLANES, "Invalid BMP file: biPlanes not equal to 1") +JMESSAGE(JERR_BMP_COLORSPACE, "BMP output must be grayscale or RGB") +JMESSAGE(JERR_BMP_COMPRESSED, "Sorry, compressed BMPs not yet supported") +JMESSAGE(JERR_BMP_EMPTY, "Empty BMP image") +JMESSAGE(JERR_BMP_NOT, "Not a BMP file - does not start with BM") +JMESSAGE(JTRC_BMP, "%ux%u 24-bit BMP image") +JMESSAGE(JTRC_BMP_MAPPED, "%ux%u 8-bit colormapped BMP image") +JMESSAGE(JTRC_BMP_OS2, "%ux%u 24-bit OS2 BMP image") +JMESSAGE(JTRC_BMP_OS2_MAPPED, "%ux%u 8-bit colormapped OS2 BMP image") +#endif /* BMP_SUPPORTED */ + +#ifdef GIF_SUPPORTED +JMESSAGE(JERR_GIF_BUG, "GIF output got confused") +JMESSAGE(JERR_GIF_CODESIZE, "Bogus GIF codesize %d") +JMESSAGE(JERR_GIF_COLORSPACE, "GIF output must be grayscale or RGB") +JMESSAGE(JERR_GIF_IMAGENOTFOUND, "Too few images in GIF file") +JMESSAGE(JERR_GIF_NOT, "Not a GIF file") +JMESSAGE(JTRC_GIF, "%ux%ux%d GIF image") +JMESSAGE(JTRC_GIF_BADVERSION, + "Warning: unexpected GIF version number '%c%c%c'") +JMESSAGE(JTRC_GIF_EXTENSION, "Ignoring GIF extension block of type 0x%02x") +JMESSAGE(JTRC_GIF_NONSQUARE, "Caution: nonsquare pixels in input") +JMESSAGE(JWRN_GIF_BADDATA, "Corrupt data in GIF file") +JMESSAGE(JWRN_GIF_CHAR, "Bogus char 0x%02x in GIF file, ignoring") +JMESSAGE(JWRN_GIF_ENDCODE, "Premature end of GIF image") +JMESSAGE(JWRN_GIF_NOMOREDATA, "Ran out of GIF bits") +#endif /* GIF_SUPPORTED */ + +#ifdef PPM_SUPPORTED +JMESSAGE(JERR_PPM_COLORSPACE, "PPM output must be grayscale or RGB") +JMESSAGE(JERR_PPM_NONNUMERIC, "Nonnumeric data in PPM file") +JMESSAGE(JERR_PPM_NOT, "Not a PPM/PGM file") +JMESSAGE(JTRC_PGM, "%ux%u PGM image") +JMESSAGE(JTRC_PGM_TEXT, "%ux%u text PGM image") +JMESSAGE(JTRC_PPM, "%ux%u PPM image") +JMESSAGE(JTRC_PPM_TEXT, "%ux%u text PPM image") +#endif /* PPM_SUPPORTED */ + +#ifdef RLE_SUPPORTED +JMESSAGE(JERR_RLE_BADERROR, "Bogus error code from RLE library") +JMESSAGE(JERR_RLE_COLORSPACE, "RLE output must be grayscale or RGB") +JMESSAGE(JERR_RLE_DIMENSIONS, "Image dimensions (%ux%u) too large for RLE") +JMESSAGE(JERR_RLE_EMPTY, "Empty RLE file") +JMESSAGE(JERR_RLE_EOF, "Premature EOF in RLE header") +JMESSAGE(JERR_RLE_MEM, "Insufficient memory for RLE header") +JMESSAGE(JERR_RLE_NOT, "Not an RLE file") +JMESSAGE(JERR_RLE_TOOMANYCHANNELS, "Cannot handle %d output channels for RLE") +JMESSAGE(JERR_RLE_UNSUPPORTED, "Cannot handle this RLE setup") +JMESSAGE(JTRC_RLE, "%ux%u full-color RLE file") +JMESSAGE(JTRC_RLE_FULLMAP, "%ux%u full-color RLE file with map of length %d") +JMESSAGE(JTRC_RLE_GRAY, "%ux%u grayscale RLE file") +JMESSAGE(JTRC_RLE_MAPGRAY, "%ux%u grayscale RLE file with map of length %d") +JMESSAGE(JTRC_RLE_MAPPED, "%ux%u colormapped RLE file with map of length %d") +#endif /* RLE_SUPPORTED */ + +#ifdef TARGA_SUPPORTED +JMESSAGE(JERR_TGA_BADCMAP, "Unsupported Targa colormap format") +JMESSAGE(JERR_TGA_BADPARMS, "Invalid or unsupported Targa file") +JMESSAGE(JERR_TGA_COLORSPACE, "Targa output must be grayscale or RGB") +JMESSAGE(JTRC_TGA, "%ux%u RGB Targa image") +JMESSAGE(JTRC_TGA_GRAY, "%ux%u grayscale Targa image") +JMESSAGE(JTRC_TGA_MAPPED, "%ux%u colormapped Targa image") +#else +JMESSAGE(JERR_TGA_NOTCOMP, "Targa support was not compiled") +#endif /* TARGA_SUPPORTED */ + +JMESSAGE(JERR_BAD_CMAP_FILE, + "Color map file is invalid or of unsupported format") +JMESSAGE(JERR_TOO_MANY_COLORS, + "Output file format cannot handle %d colormap entries") +JMESSAGE(JERR_UNGETC_FAILED, "ungetc failed") +#ifdef TARGA_SUPPORTED +JMESSAGE(JERR_UNKNOWN_FORMAT, + "Unrecognized input file format --- perhaps you need -targa") +#else +JMESSAGE(JERR_UNKNOWN_FORMAT, "Unrecognized input file format") +#endif +JMESSAGE(JERR_UNSUPPORTED_FORMAT, "Unsupported output file format") + +#ifdef JMAKE_ENUM_LIST + + JMSG_LASTADDONCODE +} ADDON_MESSAGE_CODE; + +#undef JMAKE_ENUM_LIST +#endif /* JMAKE_ENUM_LIST */ + +/* Zap JMESSAGE macro so that future re-inclusions do nothing by default */ +#undef JMESSAGE diff --git a/cocos2dx/platform/third_party/linux/libjpeg/cdjpeg.h b/cocos2dx/platform/third_party/linux/libjpeg/cdjpeg.h new file mode 100644 index 0000000000..ed024ac3ae --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/cdjpeg.h @@ -0,0 +1,187 @@ +/* + * cdjpeg.h + * + * Copyright (C) 1994-1997, Thomas G. Lane. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This file contains common declarations for the sample applications + * cjpeg and djpeg. It is NOT used by the core JPEG library. + */ + +#define JPEG_CJPEG_DJPEG /* define proper options in jconfig.h */ +#define JPEG_INTERNAL_OPTIONS /* cjpeg.c,djpeg.c need to see xxx_SUPPORTED */ +#include "jinclude.h" +#include "jpeglib.h" +#include "jerror.h" /* get library error codes too */ +#include "cderror.h" /* get application-specific error codes */ + + +/* + * Object interface for cjpeg's source file decoding modules + */ + +typedef struct cjpeg_source_struct * cjpeg_source_ptr; + +struct cjpeg_source_struct { + JMETHOD(void, start_input, (j_compress_ptr cinfo, + cjpeg_source_ptr sinfo)); + JMETHOD(JDIMENSION, get_pixel_rows, (j_compress_ptr cinfo, + cjpeg_source_ptr sinfo)); + JMETHOD(void, finish_input, (j_compress_ptr cinfo, + cjpeg_source_ptr sinfo)); + + FILE *input_file; + + JSAMPARRAY buffer; + JDIMENSION buffer_height; +}; + + +/* + * Object interface for djpeg's output file encoding modules + */ + +typedef struct djpeg_dest_struct * djpeg_dest_ptr; + +struct djpeg_dest_struct { + /* start_output is called after jpeg_start_decompress finishes. + * The color map will be ready at this time, if one is needed. + */ + JMETHOD(void, start_output, (j_decompress_ptr cinfo, + djpeg_dest_ptr dinfo)); + /* Emit the specified number of pixel rows from the buffer. */ + JMETHOD(void, put_pixel_rows, (j_decompress_ptr cinfo, + djpeg_dest_ptr dinfo, + JDIMENSION rows_supplied)); + /* Finish up at the end of the image. */ + JMETHOD(void, finish_output, (j_decompress_ptr cinfo, + djpeg_dest_ptr dinfo)); + + /* Target file spec; filled in by djpeg.c after object is created. */ + FILE * output_file; + + /* Output pixel-row buffer. Created by module init or start_output. + * Width is cinfo->output_width * cinfo->output_components; + * height is buffer_height. + */ + JSAMPARRAY buffer; + JDIMENSION buffer_height; +}; + + +/* + * cjpeg/djpeg may need to perform extra passes to convert to or from + * the source/destination file format. The JPEG library does not know + * about these passes, but we'd like them to be counted by the progress + * monitor. We use an expanded progress monitor object to hold the + * additional pass count. + */ + +struct cdjpeg_progress_mgr { + struct jpeg_progress_mgr pub; /* fields known to JPEG library */ + int completed_extra_passes; /* extra passes completed */ + int total_extra_passes; /* total extra */ + /* last printed percentage stored here to avoid multiple printouts */ + int percent_done; +}; + +typedef struct cdjpeg_progress_mgr * cd_progress_ptr; + + +/* Short forms of external names for systems with brain-damaged linkers. */ + +#ifdef NEED_SHORT_EXTERNAL_NAMES +#define jinit_read_bmp jIRdBMP +#define jinit_write_bmp jIWrBMP +#define jinit_read_gif jIRdGIF +#define jinit_write_gif jIWrGIF +#define jinit_read_ppm jIRdPPM +#define jinit_write_ppm jIWrPPM +#define jinit_read_rle jIRdRLE +#define jinit_write_rle jIWrRLE +#define jinit_read_targa jIRdTarga +#define jinit_write_targa jIWrTarga +#define read_quant_tables RdQTables +#define read_scan_script RdScnScript +#define set_quality_ratings SetQRates +#define set_quant_slots SetQSlots +#define set_sample_factors SetSFacts +#define read_color_map RdCMap +#define enable_signal_catcher EnSigCatcher +#define start_progress_monitor StProgMon +#define end_progress_monitor EnProgMon +#define read_stdin RdStdin +#define write_stdout WrStdout +#endif /* NEED_SHORT_EXTERNAL_NAMES */ + +/* Module selection routines for I/O modules. */ + +EXTERN(cjpeg_source_ptr) jinit_read_bmp JPP((j_compress_ptr cinfo)); +EXTERN(djpeg_dest_ptr) jinit_write_bmp JPP((j_decompress_ptr cinfo, + boolean is_os2)); +EXTERN(cjpeg_source_ptr) jinit_read_gif JPP((j_compress_ptr cinfo)); +EXTERN(djpeg_dest_ptr) jinit_write_gif JPP((j_decompress_ptr cinfo)); +EXTERN(cjpeg_source_ptr) jinit_read_ppm JPP((j_compress_ptr cinfo)); +EXTERN(djpeg_dest_ptr) jinit_write_ppm JPP((j_decompress_ptr cinfo)); +EXTERN(cjpeg_source_ptr) jinit_read_rle JPP((j_compress_ptr cinfo)); +EXTERN(djpeg_dest_ptr) jinit_write_rle JPP((j_decompress_ptr cinfo)); +EXTERN(cjpeg_source_ptr) jinit_read_targa JPP((j_compress_ptr cinfo)); +EXTERN(djpeg_dest_ptr) jinit_write_targa JPP((j_decompress_ptr cinfo)); + +/* cjpeg support routines (in rdswitch.c) */ + +EXTERN(boolean) read_quant_tables JPP((j_compress_ptr cinfo, char * filename, + boolean force_baseline)); +EXTERN(boolean) read_scan_script JPP((j_compress_ptr cinfo, char * filename)); +EXTERN(boolean) set_quality_ratings JPP((j_compress_ptr cinfo, char *arg, + boolean force_baseline)); +EXTERN(boolean) set_quant_slots JPP((j_compress_ptr cinfo, char *arg)); +EXTERN(boolean) set_sample_factors JPP((j_compress_ptr cinfo, char *arg)); + +/* djpeg support routines (in rdcolmap.c) */ + +EXTERN(void) read_color_map JPP((j_decompress_ptr cinfo, FILE * infile)); + +/* common support routines (in cdjpeg.c) */ + +EXTERN(void) enable_signal_catcher JPP((j_common_ptr cinfo)); +EXTERN(void) start_progress_monitor JPP((j_common_ptr cinfo, + cd_progress_ptr progress)); +EXTERN(void) end_progress_monitor JPP((j_common_ptr cinfo)); +EXTERN(boolean) keymatch JPP((char * arg, const char * keyword, int minchars)); +EXTERN(FILE *) read_stdin JPP((void)); +EXTERN(FILE *) write_stdout JPP((void)); + +/* miscellaneous useful macros */ + +#ifdef DONT_USE_B_MODE /* define mode parameters for fopen() */ +#define READ_BINARY "r" +#define WRITE_BINARY "w" +#else +#ifdef VMS /* VMS is very nonstandard */ +#define READ_BINARY "rb", "ctx=stm" +#define WRITE_BINARY "wb", "ctx=stm" +#else /* standard ANSI-compliant case */ +#define READ_BINARY "rb" +#define WRITE_BINARY "wb" +#endif +#endif + +#ifndef EXIT_FAILURE /* define exit() codes if not provided */ +#define EXIT_FAILURE 1 +#endif +#ifndef EXIT_SUCCESS +#ifdef VMS +#define EXIT_SUCCESS 1 /* VMS is very nonstandard */ +#else +#define EXIT_SUCCESS 0 +#endif +#endif +#ifndef EXIT_WARNING +#ifdef VMS +#define EXIT_WARNING 1 /* VMS is very nonstandard */ +#else +#define EXIT_WARNING 2 +#endif +#endif diff --git a/cocos2dx/platform/third_party/linux/libjpeg/jconfig.h b/cocos2dx/platform/third_party/linux/libjpeg/jconfig.h new file mode 100644 index 0000000000..966b1d5149 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/jconfig.h @@ -0,0 +1,54 @@ +/* jconfig.h. Generated from jconfig.cfg by configure. */ +/* jconfig.cfg --- source file edited by configure script */ +/* see jconfig.txt for explanations */ + +#define HAVE_PROTOTYPES 1 +#define HAVE_UNSIGNED_CHAR 1 +#define HAVE_UNSIGNED_SHORT 1 +/* #undef void */ +/* #undef const */ +/* #undef CHAR_IS_UNSIGNED */ +#define HAVE_STDDEF_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_LOCALE_H 1 +/* #undef NEED_BSD_STRINGS */ +/* #undef NEED_SYS_TYPES_H */ +/* #undef NEED_FAR_POINTERS */ +/* #undef NEED_SHORT_EXTERNAL_NAMES */ +/* Define this if you get warnings about undefined structures. */ +/* #undef INCOMPLETE_TYPES_BROKEN */ + +/* Define "boolean" as unsigned char, not int, on Windows systems. */ +#ifdef _WIN32 +#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */ +typedef unsigned char boolean; +#endif +#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */ +#endif + +#ifdef JPEG_INTERNALS + +/* #undef RIGHT_SHIFT_IS_UNSIGNED */ +#define INLINE __inline__ +/* These are for configuring the JPEG memory manager. */ +/* #undef DEFAULT_MAX_MEM */ +/* #undef NO_MKTEMP */ + +#endif /* JPEG_INTERNALS */ + +#ifdef JPEG_CJPEG_DJPEG + +#define BMP_SUPPORTED /* BMP image file format */ +#define GIF_SUPPORTED /* GIF image file format */ +#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */ +/* #undef RLE_SUPPORTED */ +#define TARGA_SUPPORTED /* Targa image file format */ + +/* #undef TWO_FILE_COMMANDLINE */ +/* #undef NEED_SIGNAL_CATCHER */ +/* #undef DONT_USE_B_MODE */ + +/* Define this if you want percent-done progress reports from cjpeg/djpeg. */ +/* #undef PROGRESS_REPORT */ + +#endif /* JPEG_CJPEG_DJPEG */ diff --git a/cocos2dx/platform/third_party/linux/libjpeg/jdct.h b/cocos2dx/platform/third_party/linux/libjpeg/jdct.h new file mode 100644 index 0000000000..360dec80c9 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/jdct.h @@ -0,0 +1,393 @@ +/* + * jdct.h + * + * Copyright (C) 1994-1996, Thomas G. Lane. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This include file contains common declarations for the forward and + * inverse DCT modules. These declarations are private to the DCT managers + * (jcdctmgr.c, jddctmgr.c) and the individual DCT algorithms. + * The individual DCT algorithms are kept in separate files to ease + * machine-dependent tuning (e.g., assembly coding). + */ + + +/* + * A forward DCT routine is given a pointer to an input sample array and + * a pointer to a work area of type DCTELEM[]; the DCT is to be performed + * in-place in that buffer. Type DCTELEM is int for 8-bit samples, INT32 + * for 12-bit samples. (NOTE: Floating-point DCT implementations use an + * array of type FAST_FLOAT, instead.) + * The input data is to be fetched from the sample array starting at a + * specified column. (Any row offset needed will be applied to the array + * pointer before it is passed to the FDCT code.) + * Note that the number of samples fetched by the FDCT routine is + * DCT_h_scaled_size * DCT_v_scaled_size. + * The DCT outputs are returned scaled up by a factor of 8; they therefore + * have a range of +-8K for 8-bit data, +-128K for 12-bit data. This + * convention improves accuracy in integer implementations and saves some + * work in floating-point ones. + * Quantization of the output coefficients is done by jcdctmgr.c. + */ + +#if BITS_IN_JSAMPLE == 8 +typedef int DCTELEM; /* 16 or 32 bits is fine */ +#else +typedef INT32 DCTELEM; /* must have 32 bits */ +#endif + +typedef JMETHOD(void, forward_DCT_method_ptr, (DCTELEM * data, + JSAMPARRAY sample_data, + JDIMENSION start_col)); +typedef JMETHOD(void, float_DCT_method_ptr, (FAST_FLOAT * data, + JSAMPARRAY sample_data, + JDIMENSION start_col)); + + +/* + * An inverse DCT routine is given a pointer to the input JBLOCK and a pointer + * to an output sample array. The routine must dequantize the input data as + * well as perform the IDCT; for dequantization, it uses the multiplier table + * pointed to by compptr->dct_table. The output data is to be placed into the + * sample array starting at a specified column. (Any row offset needed will + * be applied to the array pointer before it is passed to the IDCT code.) + * Note that the number of samples emitted by the IDCT routine is + * DCT_h_scaled_size * DCT_v_scaled_size. + */ + +/* typedef inverse_DCT_method_ptr is declared in jpegint.h */ + +/* + * Each IDCT routine has its own ideas about the best dct_table element type. + */ + +typedef MULTIPLIER ISLOW_MULT_TYPE; /* short or int, whichever is faster */ +#if BITS_IN_JSAMPLE == 8 +typedef MULTIPLIER IFAST_MULT_TYPE; /* 16 bits is OK, use short if faster */ +#define IFAST_SCALE_BITS 2 /* fractional bits in scale factors */ +#else +typedef INT32 IFAST_MULT_TYPE; /* need 32 bits for scaled quantizers */ +#define IFAST_SCALE_BITS 13 /* fractional bits in scale factors */ +#endif +typedef FAST_FLOAT FLOAT_MULT_TYPE; /* preferred floating type */ + + +/* + * Each IDCT routine is responsible for range-limiting its results and + * converting them to unsigned form (0..MAXJSAMPLE). The raw outputs could + * be quite far out of range if the input data is corrupt, so a bulletproof + * range-limiting step is required. We use a mask-and-table-lookup method + * to do the combined operations quickly. See the comments with + * prepare_range_limit_table (in jdmaster.c) for more info. + */ + +#define IDCT_range_limit(cinfo) ((cinfo)->sample_range_limit + CENTERJSAMPLE) + +#define RANGE_MASK (MAXJSAMPLE * 4 + 3) /* 2 bits wider than legal samples */ + + +/* Short forms of external names for systems with brain-damaged linkers. */ + +#ifdef NEED_SHORT_EXTERNAL_NAMES +#define jpeg_fdct_islow jFDislow +#define jpeg_fdct_ifast jFDifast +#define jpeg_fdct_float jFDfloat +#define jpeg_fdct_7x7 jFD7x7 +#define jpeg_fdct_6x6 jFD6x6 +#define jpeg_fdct_5x5 jFD5x5 +#define jpeg_fdct_4x4 jFD4x4 +#define jpeg_fdct_3x3 jFD3x3 +#define jpeg_fdct_2x2 jFD2x2 +#define jpeg_fdct_1x1 jFD1x1 +#define jpeg_fdct_9x9 jFD9x9 +#define jpeg_fdct_10x10 jFD10x10 +#define jpeg_fdct_11x11 jFD11x11 +#define jpeg_fdct_12x12 jFD12x12 +#define jpeg_fdct_13x13 jFD13x13 +#define jpeg_fdct_14x14 jFD14x14 +#define jpeg_fdct_15x15 jFD15x15 +#define jpeg_fdct_16x16 jFD16x16 +#define jpeg_fdct_16x8 jFD16x8 +#define jpeg_fdct_14x7 jFD14x7 +#define jpeg_fdct_12x6 jFD12x6 +#define jpeg_fdct_10x5 jFD10x5 +#define jpeg_fdct_8x4 jFD8x4 +#define jpeg_fdct_6x3 jFD6x3 +#define jpeg_fdct_4x2 jFD4x2 +#define jpeg_fdct_2x1 jFD2x1 +#define jpeg_fdct_8x16 jFD8x16 +#define jpeg_fdct_7x14 jFD7x14 +#define jpeg_fdct_6x12 jFD6x12 +#define jpeg_fdct_5x10 jFD5x10 +#define jpeg_fdct_4x8 jFD4x8 +#define jpeg_fdct_3x6 jFD3x6 +#define jpeg_fdct_2x4 jFD2x4 +#define jpeg_fdct_1x2 jFD1x2 +#define jpeg_idct_islow jRDislow +#define jpeg_idct_ifast jRDifast +#define jpeg_idct_float jRDfloat +#define jpeg_idct_7x7 jRD7x7 +#define jpeg_idct_6x6 jRD6x6 +#define jpeg_idct_5x5 jRD5x5 +#define jpeg_idct_4x4 jRD4x4 +#define jpeg_idct_3x3 jRD3x3 +#define jpeg_idct_2x2 jRD2x2 +#define jpeg_idct_1x1 jRD1x1 +#define jpeg_idct_9x9 jRD9x9 +#define jpeg_idct_10x10 jRD10x10 +#define jpeg_idct_11x11 jRD11x11 +#define jpeg_idct_12x12 jRD12x12 +#define jpeg_idct_13x13 jRD13x13 +#define jpeg_idct_14x14 jRD14x14 +#define jpeg_idct_15x15 jRD15x15 +#define jpeg_idct_16x16 jRD16x16 +#define jpeg_idct_16x8 jRD16x8 +#define jpeg_idct_14x7 jRD14x7 +#define jpeg_idct_12x6 jRD12x6 +#define jpeg_idct_10x5 jRD10x5 +#define jpeg_idct_8x4 jRD8x4 +#define jpeg_idct_6x3 jRD6x3 +#define jpeg_idct_4x2 jRD4x2 +#define jpeg_idct_2x1 jRD2x1 +#define jpeg_idct_8x16 jRD8x16 +#define jpeg_idct_7x14 jRD7x14 +#define jpeg_idct_6x12 jRD6x12 +#define jpeg_idct_5x10 jRD5x10 +#define jpeg_idct_4x8 jRD4x8 +#define jpeg_idct_3x6 jRD3x8 +#define jpeg_idct_2x4 jRD2x4 +#define jpeg_idct_1x2 jRD1x2 +#endif /* NEED_SHORT_EXTERNAL_NAMES */ + +/* Extern declarations for the forward and inverse DCT routines. */ + +EXTERN(void) jpeg_fdct_islow + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_ifast + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_float + JPP((FAST_FLOAT * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_7x7 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_6x6 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_5x5 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_4x4 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_3x3 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_2x2 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_1x1 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_9x9 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_10x10 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_11x11 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_12x12 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_13x13 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_14x14 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_15x15 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_16x16 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_16x8 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_14x7 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_12x6 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_10x5 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_8x4 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_6x3 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_4x2 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_2x1 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_8x16 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_7x14 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_6x12 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_5x10 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_4x8 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_3x6 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_2x4 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); +EXTERN(void) jpeg_fdct_1x2 + JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col)); + +EXTERN(void) jpeg_idct_islow + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_ifast + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_float + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_7x7 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_6x6 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_5x5 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_4x4 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_3x3 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_2x2 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_1x1 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_9x9 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_10x10 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_11x11 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_12x12 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_13x13 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_14x14 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_15x15 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_16x16 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_16x8 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_14x7 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_12x6 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_10x5 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_8x4 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_6x3 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_4x2 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_2x1 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_8x16 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_7x14 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_6x12 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_5x10 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_4x8 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_3x6 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_2x4 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); +EXTERN(void) jpeg_idct_1x2 + JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col)); + + +/* + * Macros for handling fixed-point arithmetic; these are used by many + * but not all of the DCT/IDCT modules. + * + * All values are expected to be of type INT32. + * Fractional constants are scaled left by CONST_BITS bits. + * CONST_BITS is defined within each module using these macros, + * and may differ from one module to the next. + */ + +#define ONE ((INT32) 1) +#define CONST_SCALE (ONE << CONST_BITS) + +/* Convert a positive real constant to an integer scaled by CONST_SCALE. + * Caution: some C compilers fail to reduce "FIX(constant)" at compile time, + * thus causing a lot of useless floating-point operations at run time. + */ + +#define FIX(x) ((INT32) ((x) * CONST_SCALE + 0.5)) + +/* Descale and correctly round an INT32 value that's scaled by N bits. + * We assume RIGHT_SHIFT rounds towards minus infinity, so adding + * the fudge factor is correct for either sign of X. + */ + +#define DESCALE(x,n) RIGHT_SHIFT((x) + (ONE << ((n)-1)), n) + +/* Multiply an INT32 variable by an INT32 constant to yield an INT32 result. + * This macro is used only when the two inputs will actually be no more than + * 16 bits wide, so that a 16x16->32 bit multiply can be used instead of a + * full 32x32 multiply. This provides a useful speedup on many machines. + * Unfortunately there is no way to specify a 16x16->32 multiply portably + * in C, but some C compilers will do the right thing if you provide the + * correct combination of casts. + */ + +#ifdef SHORTxSHORT_32 /* may work if 'int' is 32 bits */ +#define MULTIPLY16C16(var,const) (((INT16) (var)) * ((INT16) (const))) +#endif +#ifdef SHORTxLCONST_32 /* known to work with Microsoft C 6.0 */ +#define MULTIPLY16C16(var,const) (((INT16) (var)) * ((INT32) (const))) +#endif + +#ifndef MULTIPLY16C16 /* default definition */ +#define MULTIPLY16C16(var,const) ((var) * (const)) +#endif + +/* Same except both inputs are variables. */ + +#ifdef SHORTxSHORT_32 /* may work if 'int' is 32 bits */ +#define MULTIPLY16V16(var1,var2) (((INT16) (var1)) * ((INT16) (var2))) +#endif + +#ifndef MULTIPLY16V16 /* default definition */ +#define MULTIPLY16V16(var1,var2) ((var1) * (var2)) +#endif diff --git a/cocos2dx/platform/third_party/linux/libjpeg/jerror.h b/cocos2dx/platform/third_party/linux/libjpeg/jerror.h new file mode 100644 index 0000000000..1cfb2b19d8 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/jerror.h @@ -0,0 +1,304 @@ +/* + * jerror.h + * + * Copyright (C) 1994-1997, Thomas G. Lane. + * Modified 1997-2009 by Guido Vollbeding. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This file defines the error and message codes for the JPEG library. + * Edit this file to add new codes, or to translate the message strings to + * some other language. + * A set of error-reporting macros are defined too. Some applications using + * the JPEG library may wish to include this file to get the error codes + * and/or the macros. + */ + +/* + * To define the enum list of message codes, include this file without + * defining macro JMESSAGE. To create a message string table, include it + * again with a suitable JMESSAGE definition (see jerror.c for an example). + */ +#ifndef JMESSAGE +#ifndef JERROR_H +/* First time through, define the enum list */ +#define JMAKE_ENUM_LIST +#else +/* Repeated inclusions of this file are no-ops unless JMESSAGE is defined */ +#define JMESSAGE(code,string) +#endif /* JERROR_H */ +#endif /* JMESSAGE */ + +#ifdef JMAKE_ENUM_LIST + +typedef enum { + +#define JMESSAGE(code,string) code , + +#endif /* JMAKE_ENUM_LIST */ + +JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */ + +/* For maintenance convenience, list is alphabetical by message code name */ +JMESSAGE(JERR_BAD_ALIGN_TYPE, "ALIGN_TYPE is wrong, please fix") +JMESSAGE(JERR_BAD_ALLOC_CHUNK, "MAX_ALLOC_CHUNK is wrong, please fix") +JMESSAGE(JERR_BAD_BUFFER_MODE, "Bogus buffer control mode") +JMESSAGE(JERR_BAD_COMPONENT_ID, "Invalid component ID %d in SOS") +JMESSAGE(JERR_BAD_CROP_SPEC, "Invalid crop request") +JMESSAGE(JERR_BAD_DCT_COEF, "DCT coefficient out of range") +JMESSAGE(JERR_BAD_DCTSIZE, "DCT scaled block size %dx%d not supported") +JMESSAGE(JERR_BAD_DROP_SAMPLING, + "Component index %d: mismatching sampling ratio %d:%d, %d:%d, %c") +JMESSAGE(JERR_BAD_HUFF_TABLE, "Bogus Huffman table definition") +JMESSAGE(JERR_BAD_IN_COLORSPACE, "Bogus input colorspace") +JMESSAGE(JERR_BAD_J_COLORSPACE, "Bogus JPEG colorspace") +JMESSAGE(JERR_BAD_LENGTH, "Bogus marker length") +JMESSAGE(JERR_BAD_LIB_VERSION, + "Wrong JPEG library version: library is %d, caller expects %d") +JMESSAGE(JERR_BAD_MCU_SIZE, "Sampling factors too large for interleaved scan") +JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d") +JMESSAGE(JERR_BAD_PRECISION, "Unsupported JPEG data precision %d") +JMESSAGE(JERR_BAD_PROGRESSION, + "Invalid progressive parameters Ss=%d Se=%d Ah=%d Al=%d") +JMESSAGE(JERR_BAD_PROG_SCRIPT, + "Invalid progressive parameters at scan script entry %d") +JMESSAGE(JERR_BAD_SAMPLING, "Bogus sampling factors") +JMESSAGE(JERR_BAD_SCAN_SCRIPT, "Invalid scan script at entry %d") +JMESSAGE(JERR_BAD_STATE, "Improper call to JPEG library in state %d") +JMESSAGE(JERR_BAD_STRUCT_SIZE, + "JPEG parameter struct mismatch: library thinks size is %u, caller expects %u") +JMESSAGE(JERR_BAD_VIRTUAL_ACCESS, "Bogus virtual array access") +JMESSAGE(JERR_BUFFER_SIZE, "Buffer passed to JPEG library is too small") +JMESSAGE(JERR_CANT_SUSPEND, "Suspension not allowed here") +JMESSAGE(JERR_CCIR601_NOTIMPL, "CCIR601 sampling not implemented yet") +JMESSAGE(JERR_COMPONENT_COUNT, "Too many color components: %d, max %d") +JMESSAGE(JERR_CONVERSION_NOTIMPL, "Unsupported color conversion request") +JMESSAGE(JERR_DAC_INDEX, "Bogus DAC index %d") +JMESSAGE(JERR_DAC_VALUE, "Bogus DAC value 0x%x") +JMESSAGE(JERR_DHT_INDEX, "Bogus DHT index %d") +JMESSAGE(JERR_DQT_INDEX, "Bogus DQT index %d") +JMESSAGE(JERR_EMPTY_IMAGE, "Empty JPEG image (DNL not supported)") +JMESSAGE(JERR_EMS_READ, "Read from EMS failed") +JMESSAGE(JERR_EMS_WRITE, "Write to EMS failed") +JMESSAGE(JERR_EOI_EXPECTED, "Didn't expect more than one scan") +JMESSAGE(JERR_FILE_READ, "Input file read error") +JMESSAGE(JERR_FILE_WRITE, "Output file write error --- out of disk space?") +JMESSAGE(JERR_FRACT_SAMPLE_NOTIMPL, "Fractional sampling not implemented yet") +JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow") +JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry") +JMESSAGE(JERR_IMAGE_TOO_BIG, "Maximum supported image dimension is %u pixels") +JMESSAGE(JERR_INPUT_EMPTY, "Empty input file") +JMESSAGE(JERR_INPUT_EOF, "Premature end of input file") +JMESSAGE(JERR_MISMATCHED_QUANT_TABLE, + "Cannot transcode due to multiple use of quantization table %d") +JMESSAGE(JERR_MISSING_DATA, "Scan script does not transmit all data") +JMESSAGE(JERR_MODE_CHANGE, "Invalid color quantization mode change") +JMESSAGE(JERR_NOTIMPL, "Not implemented yet") +JMESSAGE(JERR_NOT_COMPILED, "Requested feature was omitted at compile time") +JMESSAGE(JERR_NO_ARITH_TABLE, "Arithmetic table 0x%02x was not defined") +JMESSAGE(JERR_NO_BACKING_STORE, "Backing store not supported") +JMESSAGE(JERR_NO_HUFF_TABLE, "Huffman table 0x%02x was not defined") +JMESSAGE(JERR_NO_IMAGE, "JPEG datastream contains no image") +JMESSAGE(JERR_NO_QUANT_TABLE, "Quantization table 0x%02x was not defined") +JMESSAGE(JERR_NO_SOI, "Not a JPEG file: starts with 0x%02x 0x%02x") +JMESSAGE(JERR_OUT_OF_MEMORY, "Insufficient memory (case %d)") +JMESSAGE(JERR_QUANT_COMPONENTS, + "Cannot quantize more than %d color components") +JMESSAGE(JERR_QUANT_FEW_COLORS, "Cannot quantize to fewer than %d colors") +JMESSAGE(JERR_QUANT_MANY_COLORS, "Cannot quantize to more than %d colors") +JMESSAGE(JERR_SOF_DUPLICATE, "Invalid JPEG file structure: two SOF markers") +JMESSAGE(JERR_SOF_NO_SOS, "Invalid JPEG file structure: missing SOS marker") +JMESSAGE(JERR_SOF_UNSUPPORTED, "Unsupported JPEG process: SOF type 0x%02x") +JMESSAGE(JERR_SOI_DUPLICATE, "Invalid JPEG file structure: two SOI markers") +JMESSAGE(JERR_SOS_NO_SOF, "Invalid JPEG file structure: SOS before SOF") +JMESSAGE(JERR_TFILE_CREATE, "Failed to create temporary file %s") +JMESSAGE(JERR_TFILE_READ, "Read failed on temporary file") +JMESSAGE(JERR_TFILE_SEEK, "Seek failed on temporary file") +JMESSAGE(JERR_TFILE_WRITE, + "Write failed on temporary file --- out of disk space?") +JMESSAGE(JERR_TOO_LITTLE_DATA, "Application transferred too few scanlines") +JMESSAGE(JERR_UNKNOWN_MARKER, "Unsupported marker type 0x%02x") +JMESSAGE(JERR_VIRTUAL_BUG, "Virtual array controller messed up") +JMESSAGE(JERR_WIDTH_OVERFLOW, "Image too wide for this implementation") +JMESSAGE(JERR_XMS_READ, "Read from XMS failed") +JMESSAGE(JERR_XMS_WRITE, "Write to XMS failed") +JMESSAGE(JMSG_COPYRIGHT, JCOPYRIGHT) +JMESSAGE(JMSG_VERSION, JVERSION) +JMESSAGE(JTRC_16BIT_TABLES, + "Caution: quantization tables are too coarse for baseline JPEG") +JMESSAGE(JTRC_ADOBE, + "Adobe APP14 marker: version %d, flags 0x%04x 0x%04x, transform %d") +JMESSAGE(JTRC_APP0, "Unknown APP0 marker (not JFIF), length %u") +JMESSAGE(JTRC_APP14, "Unknown APP14 marker (not Adobe), length %u") +JMESSAGE(JTRC_DAC, "Define Arithmetic Table 0x%02x: 0x%02x") +JMESSAGE(JTRC_DHT, "Define Huffman Table 0x%02x") +JMESSAGE(JTRC_DQT, "Define Quantization Table %d precision %d") +JMESSAGE(JTRC_DRI, "Define Restart Interval %u") +JMESSAGE(JTRC_EMS_CLOSE, "Freed EMS handle %u") +JMESSAGE(JTRC_EMS_OPEN, "Obtained EMS handle %u") +JMESSAGE(JTRC_EOI, "End Of Image") +JMESSAGE(JTRC_HUFFBITS, " %3d %3d %3d %3d %3d %3d %3d %3d") +JMESSAGE(JTRC_JFIF, "JFIF APP0 marker: version %d.%02d, density %dx%d %d") +JMESSAGE(JTRC_JFIF_BADTHUMBNAILSIZE, + "Warning: thumbnail image size does not match data length %u") +JMESSAGE(JTRC_JFIF_EXTENSION, + "JFIF extension marker: type 0x%02x, length %u") +JMESSAGE(JTRC_JFIF_THUMBNAIL, " with %d x %d thumbnail image") +JMESSAGE(JTRC_MISC_MARKER, "Miscellaneous marker 0x%02x, length %u") +JMESSAGE(JTRC_PARMLESS_MARKER, "Unexpected marker 0x%02x") +JMESSAGE(JTRC_QUANTVALS, " %4u %4u %4u %4u %4u %4u %4u %4u") +JMESSAGE(JTRC_QUANT_3_NCOLORS, "Quantizing to %d = %d*%d*%d colors") +JMESSAGE(JTRC_QUANT_NCOLORS, "Quantizing to %d colors") +JMESSAGE(JTRC_QUANT_SELECTED, "Selected %d colors for quantization") +JMESSAGE(JTRC_RECOVERY_ACTION, "At marker 0x%02x, recovery action %d") +JMESSAGE(JTRC_RST, "RST%d") +JMESSAGE(JTRC_SMOOTH_NOTIMPL, + "Smoothing not supported with nonstandard sampling ratios") +JMESSAGE(JTRC_SOF, "Start Of Frame 0x%02x: width=%u, height=%u, components=%d") +JMESSAGE(JTRC_SOF_COMPONENT, " Component %d: %dhx%dv q=%d") +JMESSAGE(JTRC_SOI, "Start of Image") +JMESSAGE(JTRC_SOS, "Start Of Scan: %d components") +JMESSAGE(JTRC_SOS_COMPONENT, " Component %d: dc=%d ac=%d") +JMESSAGE(JTRC_SOS_PARAMS, " Ss=%d, Se=%d, Ah=%d, Al=%d") +JMESSAGE(JTRC_TFILE_CLOSE, "Closed temporary file %s") +JMESSAGE(JTRC_TFILE_OPEN, "Opened temporary file %s") +JMESSAGE(JTRC_THUMB_JPEG, + "JFIF extension marker: JPEG-compressed thumbnail image, length %u") +JMESSAGE(JTRC_THUMB_PALETTE, + "JFIF extension marker: palette thumbnail image, length %u") +JMESSAGE(JTRC_THUMB_RGB, + "JFIF extension marker: RGB thumbnail image, length %u") +JMESSAGE(JTRC_UNKNOWN_IDS, + "Unrecognized component IDs %d %d %d, assuming YCbCr") +JMESSAGE(JTRC_XMS_CLOSE, "Freed XMS handle %u") +JMESSAGE(JTRC_XMS_OPEN, "Obtained XMS handle %u") +JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d") +JMESSAGE(JWRN_ARITH_BAD_CODE, "Corrupt JPEG data: bad arithmetic code") +JMESSAGE(JWRN_BOGUS_PROGRESSION, + "Inconsistent progression sequence for component %d coefficient %d") +JMESSAGE(JWRN_EXTRANEOUS_DATA, + "Corrupt JPEG data: %u extraneous bytes before marker 0x%02x") +JMESSAGE(JWRN_HIT_MARKER, "Corrupt JPEG data: premature end of data segment") +JMESSAGE(JWRN_HUFF_BAD_CODE, "Corrupt JPEG data: bad Huffman code") +JMESSAGE(JWRN_JFIF_MAJOR, "Warning: unknown JFIF revision number %d.%02d") +JMESSAGE(JWRN_JPEG_EOF, "Premature end of JPEG file") +JMESSAGE(JWRN_MUST_RESYNC, + "Corrupt JPEG data: found marker 0x%02x instead of RST%d") +JMESSAGE(JWRN_NOT_SEQUENTIAL, "Invalid SOS parameters for sequential JPEG") +JMESSAGE(JWRN_TOO_MUCH_DATA, "Application transferred too many scanlines") + +#ifdef JMAKE_ENUM_LIST + + JMSG_LASTMSGCODE +} J_MESSAGE_CODE; + +#undef JMAKE_ENUM_LIST +#endif /* JMAKE_ENUM_LIST */ + +/* Zap JMESSAGE macro so that future re-inclusions do nothing by default */ +#undef JMESSAGE + + +#ifndef JERROR_H +#define JERROR_H + +/* Macros to simplify using the error and trace message stuff */ +/* The first parameter is either type of cinfo pointer */ + +/* Fatal errors (print message and exit) */ +#define ERREXIT(cinfo,code) \ + ((cinfo)->err->msg_code = (code), \ + (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo))) +#define ERREXIT1(cinfo,code,p1) \ + ((cinfo)->err->msg_code = (code), \ + (cinfo)->err->msg_parm.i[0] = (p1), \ + (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo))) +#define ERREXIT2(cinfo,code,p1,p2) \ + ((cinfo)->err->msg_code = (code), \ + (cinfo)->err->msg_parm.i[0] = (p1), \ + (cinfo)->err->msg_parm.i[1] = (p2), \ + (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo))) +#define ERREXIT3(cinfo,code,p1,p2,p3) \ + ((cinfo)->err->msg_code = (code), \ + (cinfo)->err->msg_parm.i[0] = (p1), \ + (cinfo)->err->msg_parm.i[1] = (p2), \ + (cinfo)->err->msg_parm.i[2] = (p3), \ + (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo))) +#define ERREXIT4(cinfo,code,p1,p2,p3,p4) \ + ((cinfo)->err->msg_code = (code), \ + (cinfo)->err->msg_parm.i[0] = (p1), \ + (cinfo)->err->msg_parm.i[1] = (p2), \ + (cinfo)->err->msg_parm.i[2] = (p3), \ + (cinfo)->err->msg_parm.i[3] = (p4), \ + (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo))) +#define ERREXIT6(cinfo,code,p1,p2,p3,p4,p5,p6) \ + ((cinfo)->err->msg_code = (code), \ + (cinfo)->err->msg_parm.i[0] = (p1), \ + (cinfo)->err->msg_parm.i[1] = (p2), \ + (cinfo)->err->msg_parm.i[2] = (p3), \ + (cinfo)->err->msg_parm.i[3] = (p4), \ + (cinfo)->err->msg_parm.i[4] = (p5), \ + (cinfo)->err->msg_parm.i[5] = (p6), \ + (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo))) +#define ERREXITS(cinfo,code,str) \ + ((cinfo)->err->msg_code = (code), \ + strncpy((cinfo)->err->msg_parm.s, (str), JMSG_STR_PARM_MAX), \ + (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo))) + +#define MAKESTMT(stuff) do { stuff } while (0) + +/* Nonfatal errors (we can keep going, but the data is probably corrupt) */ +#define WARNMS(cinfo,code) \ + ((cinfo)->err->msg_code = (code), \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1)) +#define WARNMS1(cinfo,code,p1) \ + ((cinfo)->err->msg_code = (code), \ + (cinfo)->err->msg_parm.i[0] = (p1), \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1)) +#define WARNMS2(cinfo,code,p1,p2) \ + ((cinfo)->err->msg_code = (code), \ + (cinfo)->err->msg_parm.i[0] = (p1), \ + (cinfo)->err->msg_parm.i[1] = (p2), \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1)) + +/* Informational/debugging messages */ +#define TRACEMS(cinfo,lvl,code) \ + ((cinfo)->err->msg_code = (code), \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) +#define TRACEMS1(cinfo,lvl,code,p1) \ + ((cinfo)->err->msg_code = (code), \ + (cinfo)->err->msg_parm.i[0] = (p1), \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) +#define TRACEMS2(cinfo,lvl,code,p1,p2) \ + ((cinfo)->err->msg_code = (code), \ + (cinfo)->err->msg_parm.i[0] = (p1), \ + (cinfo)->err->msg_parm.i[1] = (p2), \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) +#define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \ + MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \ + _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); \ + (cinfo)->err->msg_code = (code); \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); ) +#define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \ + MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \ + _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \ + (cinfo)->err->msg_code = (code); \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); ) +#define TRACEMS5(cinfo,lvl,code,p1,p2,p3,p4,p5) \ + MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \ + _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \ + _mp[4] = (p5); \ + (cinfo)->err->msg_code = (code); \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); ) +#define TRACEMS8(cinfo,lvl,code,p1,p2,p3,p4,p5,p6,p7,p8) \ + MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \ + _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \ + _mp[4] = (p5); _mp[5] = (p6); _mp[6] = (p7); _mp[7] = (p8); \ + (cinfo)->err->msg_code = (code); \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); ) +#define TRACEMSS(cinfo,lvl,code,str) \ + ((cinfo)->err->msg_code = (code), \ + strncpy((cinfo)->err->msg_parm.s, (str), JMSG_STR_PARM_MAX), \ + (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) + +#endif /* JERROR_H */ diff --git a/cocos2dx/platform/third_party/linux/libjpeg/jinclude.h b/cocos2dx/platform/third_party/linux/libjpeg/jinclude.h new file mode 100644 index 0000000000..0a4f15146a --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/jinclude.h @@ -0,0 +1,91 @@ +/* + * jinclude.h + * + * Copyright (C) 1991-1994, Thomas G. Lane. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This file exists to provide a single place to fix any problems with + * including the wrong system include files. (Common problems are taken + * care of by the standard jconfig symbols, but on really weird systems + * you may have to edit this file.) + * + * NOTE: this file is NOT intended to be included by applications using the + * JPEG library. Most applications need only include jpeglib.h. + */ + + +/* Include auto-config file to find out which system include files we need. */ + +#include "jconfig.h" /* auto configuration options */ +#define JCONFIG_INCLUDED /* so that jpeglib.h doesn't do it again */ + +/* + * We need the NULL macro and size_t typedef. + * On an ANSI-conforming system it is sufficient to include <stddef.h>. + * Otherwise, we get them from <stdlib.h> or <stdio.h>; we may have to + * pull in <sys/types.h> as well. + * Note that the core JPEG library does not require <stdio.h>; + * only the default error handler and data source/destination modules do. + * But we must pull it in because of the references to FILE in jpeglib.h. + * You can remove those references if you want to compile without <stdio.h>. + */ + +#ifdef HAVE_STDDEF_H +#include <stddef.h> +#endif + +#ifdef HAVE_STDLIB_H +#include <stdlib.h> +#endif + +#ifdef NEED_SYS_TYPES_H +#include <sys/types.h> +#endif + +#include <stdio.h> + +/* + * We need memory copying and zeroing functions, plus strncpy(). + * ANSI and System V implementations declare these in <string.h>. + * BSD doesn't have the mem() functions, but it does have bcopy()/bzero(). + * Some systems may declare memset and memcpy in <memory.h>. + * + * NOTE: we assume the size parameters to these functions are of type size_t. + * Change the casts in these macros if not! + */ + +#ifdef NEED_BSD_STRINGS + +#include <strings.h> +#define MEMZERO(target,size) bzero((void *)(target), (size_t)(size)) +#define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size)) + +#else /* not BSD, assume ANSI/SysV string lib */ + +#include <string.h> +#define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size)) +#define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size)) + +#endif + +/* + * In ANSI C, and indeed any rational implementation, size_t is also the + * type returned by sizeof(). However, it seems there are some irrational + * implementations out there, in which sizeof() returns an int even though + * size_t is defined as long or unsigned long. To ensure consistent results + * we always use this SIZEOF() macro in place of using sizeof() directly. + */ + +#define SIZEOF(object) ((size_t) sizeof(object)) + +/* + * The modules that use fread() and fwrite() always invoke them through + * these macros. On some systems you may need to twiddle the argument casts. + * CAUTION: argument order is different from underlying functions! + */ + +#define JFREAD(file,buf,sizeofbuf) \ + ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file))) +#define JFWRITE(file,buf,sizeofbuf) \ + ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file))) diff --git a/cocos2dx/platform/third_party/linux/libjpeg/jmemsys.h b/cocos2dx/platform/third_party/linux/libjpeg/jmemsys.h new file mode 100644 index 0000000000..6c3c6d348f --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/jmemsys.h @@ -0,0 +1,198 @@ +/* + * jmemsys.h + * + * Copyright (C) 1992-1997, Thomas G. Lane. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This include file defines the interface between the system-independent + * and system-dependent portions of the JPEG memory manager. No other + * modules need include it. (The system-independent portion is jmemmgr.c; + * there are several different versions of the system-dependent portion.) + * + * This file works as-is for the system-dependent memory managers supplied + * in the IJG distribution. You may need to modify it if you write a + * custom memory manager. If system-dependent changes are needed in + * this file, the best method is to #ifdef them based on a configuration + * symbol supplied in jconfig.h, as we have done with USE_MSDOS_MEMMGR + * and USE_MAC_MEMMGR. + */ + + +/* Short forms of external names for systems with brain-damaged linkers. */ + +#ifdef NEED_SHORT_EXTERNAL_NAMES +#define jpeg_get_small jGetSmall +#define jpeg_free_small jFreeSmall +#define jpeg_get_large jGetLarge +#define jpeg_free_large jFreeLarge +#define jpeg_mem_available jMemAvail +#define jpeg_open_backing_store jOpenBackStore +#define jpeg_mem_init jMemInit +#define jpeg_mem_term jMemTerm +#endif /* NEED_SHORT_EXTERNAL_NAMES */ + + +/* + * These two functions are used to allocate and release small chunks of + * memory. (Typically the total amount requested through jpeg_get_small is + * no more than 20K or so; this will be requested in chunks of a few K each.) + * Behavior should be the same as for the standard library functions malloc + * and free; in particular, jpeg_get_small must return NULL on failure. + * On most systems, these ARE malloc and free. jpeg_free_small is passed the + * size of the object being freed, just in case it's needed. + * On an 80x86 machine using small-data memory model, these manage near heap. + */ + +EXTERN(void *) jpeg_get_small JPP((j_common_ptr cinfo, size_t sizeofobject)); +EXTERN(void) jpeg_free_small JPP((j_common_ptr cinfo, void * object, + size_t sizeofobject)); + +/* + * These two functions are used to allocate and release large chunks of + * memory (up to the total free space designated by jpeg_mem_available). + * The interface is the same as above, except that on an 80x86 machine, + * far pointers are used. On most other machines these are identical to + * the jpeg_get/free_small routines; but we keep them separate anyway, + * in case a different allocation strategy is desirable for large chunks. + */ + +EXTERN(void FAR *) jpeg_get_large JPP((j_common_ptr cinfo, + size_t sizeofobject)); +EXTERN(void) jpeg_free_large JPP((j_common_ptr cinfo, void FAR * object, + size_t sizeofobject)); + +/* + * The macro MAX_ALLOC_CHUNK designates the maximum number of bytes that may + * be requested in a single call to jpeg_get_large (and jpeg_get_small for that + * matter, but that case should never come into play). This macro is needed + * to model the 64Kb-segment-size limit of far addressing on 80x86 machines. + * On those machines, we expect that jconfig.h will provide a proper value. + * On machines with 32-bit flat address spaces, any large constant may be used. + * + * NB: jmemmgr.c expects that MAX_ALLOC_CHUNK will be representable as type + * size_t and will be a multiple of sizeof(align_type). + */ + +#ifndef MAX_ALLOC_CHUNK /* may be overridden in jconfig.h */ +#define MAX_ALLOC_CHUNK 1000000000L +#endif + +/* + * This routine computes the total space still available for allocation by + * jpeg_get_large. If more space than this is needed, backing store will be + * used. NOTE: any memory already allocated must not be counted. + * + * There is a minimum space requirement, corresponding to the minimum + * feasible buffer sizes; jmemmgr.c will request that much space even if + * jpeg_mem_available returns zero. The maximum space needed, enough to hold + * all working storage in memory, is also passed in case it is useful. + * Finally, the total space already allocated is passed. If no better + * method is available, cinfo->mem->max_memory_to_use - already_allocated + * is often a suitable calculation. + * + * It is OK for jpeg_mem_available to underestimate the space available + * (that'll just lead to more backing-store access than is really necessary). + * However, an overestimate will lead to failure. Hence it's wise to subtract + * a slop factor from the true available space. 5% should be enough. + * + * On machines with lots of virtual memory, any large constant may be returned. + * Conversely, zero may be returned to always use the minimum amount of memory. + */ + +EXTERN(long) jpeg_mem_available JPP((j_common_ptr cinfo, + long min_bytes_needed, + long max_bytes_needed, + long already_allocated)); + + +/* + * This structure holds whatever state is needed to access a single + * backing-store object. The read/write/close method pointers are called + * by jmemmgr.c to manipulate the backing-store object; all other fields + * are private to the system-dependent backing store routines. + */ + +#define TEMP_NAME_LENGTH 64 /* max length of a temporary file's name */ + + +#ifdef USE_MSDOS_MEMMGR /* DOS-specific junk */ + +typedef unsigned short XMSH; /* type of extended-memory handles */ +typedef unsigned short EMSH; /* type of expanded-memory handles */ + +typedef union { + short file_handle; /* DOS file handle if it's a temp file */ + XMSH xms_handle; /* handle if it's a chunk of XMS */ + EMSH ems_handle; /* handle if it's a chunk of EMS */ +} handle_union; + +#endif /* USE_MSDOS_MEMMGR */ + +#ifdef USE_MAC_MEMMGR /* Mac-specific junk */ +#include <Files.h> +#endif /* USE_MAC_MEMMGR */ + + +typedef struct backing_store_struct * backing_store_ptr; + +typedef struct backing_store_struct { + /* Methods for reading/writing/closing this backing-store object */ + JMETHOD(void, read_backing_store, (j_common_ptr cinfo, + backing_store_ptr info, + void FAR * buffer_address, + long file_offset, long byte_count)); + JMETHOD(void, write_backing_store, (j_common_ptr cinfo, + backing_store_ptr info, + void FAR * buffer_address, + long file_offset, long byte_count)); + JMETHOD(void, close_backing_store, (j_common_ptr cinfo, + backing_store_ptr info)); + + /* Private fields for system-dependent backing-store management */ +#ifdef USE_MSDOS_MEMMGR + /* For the MS-DOS manager (jmemdos.c), we need: */ + handle_union handle; /* reference to backing-store storage object */ + char temp_name[TEMP_NAME_LENGTH]; /* name if it's a file */ +#else +#ifdef USE_MAC_MEMMGR + /* For the Mac manager (jmemmac.c), we need: */ + short temp_file; /* file reference number to temp file */ + FSSpec tempSpec; /* the FSSpec for the temp file */ + char temp_name[TEMP_NAME_LENGTH]; /* name if it's a file */ +#else + /* For a typical implementation with temp files, we need: */ + FILE * temp_file; /* stdio reference to temp file */ + char temp_name[TEMP_NAME_LENGTH]; /* name of temp file */ +#endif +#endif +} backing_store_info; + + +/* + * Initial opening of a backing-store object. This must fill in the + * read/write/close pointers in the object. The read/write routines + * may take an error exit if the specified maximum file size is exceeded. + * (If jpeg_mem_available always returns a large value, this routine can + * just take an error exit.) + */ + +EXTERN(void) jpeg_open_backing_store JPP((j_common_ptr cinfo, + backing_store_ptr info, + long total_bytes_needed)); + + +/* + * These routines take care of any system-dependent initialization and + * cleanup required. jpeg_mem_init will be called before anything is + * allocated (and, therefore, nothing in cinfo is of use except the error + * manager pointer). It should return a suitable default value for + * max_memory_to_use; this may subsequently be overridden by the surrounding + * application. (Note that max_memory_to_use is only important if + * jpeg_mem_available chooses to consult it ... no one else will.) + * jpeg_mem_term may assume that all requested memory has been freed and that + * all opened backing-store objects have been closed. + */ + +EXTERN(long) jpeg_mem_init JPP((j_common_ptr cinfo)); +EXTERN(void) jpeg_mem_term JPP((j_common_ptr cinfo)); diff --git a/cocos2dx/platform/third_party/linux/libjpeg/jmorecfg.h b/cocos2dx/platform/third_party/linux/libjpeg/jmorecfg.h new file mode 100644 index 0000000000..928d052c83 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/jmorecfg.h @@ -0,0 +1,371 @@ +/* + * jmorecfg.h + * + * Copyright (C) 1991-1997, Thomas G. Lane. + * Modified 1997-2009 by Guido Vollbeding. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This file contains additional configuration options that customize the + * JPEG software for special applications or support machine-dependent + * optimizations. Most users will not need to touch this file. + */ + + +/* + * Define BITS_IN_JSAMPLE as either + * 8 for 8-bit sample values (the usual setting) + * 12 for 12-bit sample values + * Only 8 and 12 are legal data precisions for lossy JPEG according to the + * JPEG standard, and the IJG code does not support anything else! + * We do not support run-time selection of data precision, sorry. + */ + +#define BITS_IN_JSAMPLE 8 /* use 8 or 12 */ + + +/* + * Maximum number of components (color channels) allowed in JPEG image. + * To meet the letter of the JPEG spec, set this to 255. However, darn + * few applications need more than 4 channels (maybe 5 for CMYK + alpha + * mask). We recommend 10 as a reasonable compromise; use 4 if you are + * really short on memory. (Each allowed component costs a hundred or so + * bytes of storage, whether actually used in an image or not.) + */ + +#define MAX_COMPONENTS 10 /* maximum number of image components */ + + +/* + * Basic data types. + * You may need to change these if you have a machine with unusual data + * type sizes; for example, "char" not 8 bits, "short" not 16 bits, + * or "long" not 32 bits. We don't care whether "int" is 16 or 32 bits, + * but it had better be at least 16. + */ + +/* Representation of a single sample (pixel element value). + * We frequently allocate large arrays of these, so it's important to keep + * them small. But if you have memory to burn and access to char or short + * arrays is very slow on your hardware, you might want to change these. + */ + +#if BITS_IN_JSAMPLE == 8 +/* JSAMPLE should be the smallest type that will hold the values 0..255. + * You can use a signed char by having GETJSAMPLE mask it with 0xFF. + */ + +#ifdef HAVE_UNSIGNED_CHAR + +typedef unsigned char JSAMPLE; +#define GETJSAMPLE(value) ((int) (value)) + +#else /* not HAVE_UNSIGNED_CHAR */ + +typedef char JSAMPLE; +#ifdef CHAR_IS_UNSIGNED +#define GETJSAMPLE(value) ((int) (value)) +#else +#define GETJSAMPLE(value) ((int) (value) & 0xFF) +#endif /* CHAR_IS_UNSIGNED */ + +#endif /* HAVE_UNSIGNED_CHAR */ + +#define MAXJSAMPLE 255 +#define CENTERJSAMPLE 128 + +#endif /* BITS_IN_JSAMPLE == 8 */ + + +#if BITS_IN_JSAMPLE == 12 +/* JSAMPLE should be the smallest type that will hold the values 0..4095. + * On nearly all machines "short" will do nicely. + */ + +typedef short JSAMPLE; +#define GETJSAMPLE(value) ((int) (value)) + +#define MAXJSAMPLE 4095 +#define CENTERJSAMPLE 2048 + +#endif /* BITS_IN_JSAMPLE == 12 */ + + +/* Representation of a DCT frequency coefficient. + * This should be a signed value of at least 16 bits; "short" is usually OK. + * Again, we allocate large arrays of these, but you can change to int + * if you have memory to burn and "short" is really slow. + */ + +typedef short JCOEF; + + +/* Compressed datastreams are represented as arrays of JOCTET. + * These must be EXACTLY 8 bits wide, at least once they are written to + * external storage. Note that when using the stdio data source/destination + * managers, this is also the data type passed to fread/fwrite. + */ + +#ifdef HAVE_UNSIGNED_CHAR + +typedef unsigned char JOCTET; +#define GETJOCTET(value) (value) + +#else /* not HAVE_UNSIGNED_CHAR */ + +typedef char JOCTET; +#ifdef CHAR_IS_UNSIGNED +#define GETJOCTET(value) (value) +#else +#define GETJOCTET(value) ((value) & 0xFF) +#endif /* CHAR_IS_UNSIGNED */ + +#endif /* HAVE_UNSIGNED_CHAR */ + + +/* These typedefs are used for various table entries and so forth. + * They must be at least as wide as specified; but making them too big + * won't cost a huge amount of memory, so we don't provide special + * extraction code like we did for JSAMPLE. (In other words, these + * typedefs live at a different point on the speed/space tradeoff curve.) + */ + +/* UINT8 must hold at least the values 0..255. */ + +#ifdef HAVE_UNSIGNED_CHAR +typedef unsigned char UINT8; +#else /* not HAVE_UNSIGNED_CHAR */ +#ifdef CHAR_IS_UNSIGNED +typedef char UINT8; +#else /* not CHAR_IS_UNSIGNED */ +typedef short UINT8; +#endif /* CHAR_IS_UNSIGNED */ +#endif /* HAVE_UNSIGNED_CHAR */ + +/* UINT16 must hold at least the values 0..65535. */ + +#ifdef HAVE_UNSIGNED_SHORT +typedef unsigned short UINT16; +#else /* not HAVE_UNSIGNED_SHORT */ +typedef unsigned int UINT16; +#endif /* HAVE_UNSIGNED_SHORT */ + +/* INT16 must hold at least the values -32768..32767. */ + +#ifndef XMD_H /* X11/xmd.h correctly defines INT16 */ +typedef short INT16; +#endif + +/* INT32 must hold at least signed 32-bit values. */ + +#ifndef XMD_H /* X11/xmd.h correctly defines INT32 */ +#ifndef _BASETSD_H_ /* Microsoft defines it in basetsd.h */ +#ifndef _BASETSD_H /* MinGW is slightly different */ +#ifndef QGLOBAL_H /* Qt defines it in qglobal.h */ +typedef long INT32; +#endif +#endif +#endif +#endif + +/* Datatype used for image dimensions. The JPEG standard only supports + * images up to 64K*64K due to 16-bit fields in SOF markers. Therefore + * "unsigned int" is sufficient on all machines. However, if you need to + * handle larger images and you don't mind deviating from the spec, you + * can change this datatype. + */ + +typedef unsigned int JDIMENSION; + +#define JPEG_MAX_DIMENSION 65500L /* a tad under 64K to prevent overflows */ + + +/* These macros are used in all function definitions and extern declarations. + * You could modify them if you need to change function linkage conventions; + * in particular, you'll need to do that to make the library a Windows DLL. + * Another application is to make all functions global for use with debuggers + * or code profilers that require it. + */ + +/* a function called through method pointers: */ +#define METHODDEF(type) static type +/* a function used only in its module: */ +#define LOCAL(type) static type +/* a function referenced thru EXTERNs: */ +#define GLOBAL(type) type +/* a reference to a GLOBAL function: */ +#define EXTERN(type) extern type + + +/* This macro is used to declare a "method", that is, a function pointer. + * We want to supply prototype parameters if the compiler can cope. + * Note that the arglist parameter must be parenthesized! + * Again, you can customize this if you need special linkage keywords. + */ + +#ifdef HAVE_PROTOTYPES +#define JMETHOD(type,methodname,arglist) type (*methodname) arglist +#else +#define JMETHOD(type,methodname,arglist) type (*methodname) () +#endif + + +/* Here is the pseudo-keyword for declaring pointers that must be "far" + * on 80x86 machines. Most of the specialized coding for 80x86 is handled + * by just saying "FAR *" where such a pointer is needed. In a few places + * explicit coding is needed; see uses of the NEED_FAR_POINTERS symbol. + */ + +#ifndef FAR +#ifdef NEED_FAR_POINTERS +#define FAR far +#else +#define FAR +#endif +#endif + + +/* + * On a few systems, type boolean and/or its values FALSE, TRUE may appear + * in standard header files. Or you may have conflicts with application- + * specific header files that you want to include together with these files. + * Defining HAVE_BOOLEAN before including jpeglib.h should make it work. + */ + +#ifndef HAVE_BOOLEAN +typedef int boolean; +#endif +#ifndef FALSE /* in case these macros already exist */ +#define FALSE 0 /* values of boolean */ +#endif +#ifndef TRUE +#define TRUE 1 +#endif + + +/* + * The remaining options affect code selection within the JPEG library, + * but they don't need to be visible to most applications using the library. + * To minimize application namespace pollution, the symbols won't be + * defined unless JPEG_INTERNALS or JPEG_INTERNAL_OPTIONS has been defined. + */ + +#ifdef JPEG_INTERNALS +#define JPEG_INTERNAL_OPTIONS +#endif + +#ifdef JPEG_INTERNAL_OPTIONS + + +/* + * These defines indicate whether to include various optional functions. + * Undefining some of these symbols will produce a smaller but less capable + * library. Note that you can leave certain source files out of the + * compilation/linking process if you've #undef'd the corresponding symbols. + * (You may HAVE to do that if your compiler doesn't like null source files.) + */ + +/* Capability options common to encoder and decoder: */ + +#define DCT_ISLOW_SUPPORTED /* slow but accurate integer algorithm */ +#define DCT_IFAST_SUPPORTED /* faster, less accurate integer method */ +#define DCT_FLOAT_SUPPORTED /* floating-point: accurate, fast on fast HW */ + +/* Encoder capability options: */ + +#define C_ARITH_CODING_SUPPORTED /* Arithmetic coding back end? */ +#define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */ +#define C_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/ +#define DCT_SCALING_SUPPORTED /* Input rescaling via DCT? (Requires DCT_ISLOW)*/ +#define ENTROPY_OPT_SUPPORTED /* Optimization of entropy coding parms? */ +/* Note: if you selected 12-bit data precision, it is dangerous to turn off + * ENTROPY_OPT_SUPPORTED. The standard Huffman tables are only good for 8-bit + * precision, so jchuff.c normally uses entropy optimization to compute + * usable tables for higher precision. If you don't want to do optimization, + * you'll have to supply different default Huffman tables. + * The exact same statements apply for progressive JPEG: the default tables + * don't work for progressive mode. (This may get fixed, however.) + */ +#define INPUT_SMOOTHING_SUPPORTED /* Input image smoothing option? */ + +/* Decoder capability options: */ + +#define D_ARITH_CODING_SUPPORTED /* Arithmetic coding back end? */ +#define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */ +#define D_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/ +#define IDCT_SCALING_SUPPORTED /* Output rescaling via IDCT? */ +#define SAVE_MARKERS_SUPPORTED /* jpeg_save_markers() needed? */ +#define BLOCK_SMOOTHING_SUPPORTED /* Block smoothing? (Progressive only) */ +#undef UPSAMPLE_SCALING_SUPPORTED /* Output rescaling at upsample stage? */ +#define UPSAMPLE_MERGING_SUPPORTED /* Fast path for sloppy upsampling? */ +#define QUANT_1PASS_SUPPORTED /* 1-pass color quantization? */ +#define QUANT_2PASS_SUPPORTED /* 2-pass color quantization? */ + +/* more capability options later, no doubt */ + + +/* + * Ordering of RGB data in scanlines passed to or from the application. + * If your application wants to deal with data in the order B,G,R, just + * change these macros. You can also deal with formats such as R,G,B,X + * (one extra byte per pixel) by changing RGB_PIXELSIZE. Note that changing + * the offsets will also change the order in which colormap data is organized. + * RESTRICTIONS: + * 1. The sample applications cjpeg,djpeg do NOT support modified RGB formats. + * 2. These macros only affect RGB<=>YCbCr color conversion, so they are not + * useful if you are using JPEG color spaces other than YCbCr or grayscale. + * 3. The color quantizer modules will not behave desirably if RGB_PIXELSIZE + * is not 3 (they don't understand about dummy color components!). So you + * can't use color quantization if you change that value. + */ + +#define RGB_RED 0 /* Offset of Red in an RGB scanline element */ +#define RGB_GREEN 1 /* Offset of Green */ +#define RGB_BLUE 2 /* Offset of Blue */ +#define RGB_PIXELSIZE 3 /* JSAMPLEs per RGB scanline element */ + + +/* Definitions for speed-related optimizations. */ + + +/* If your compiler supports inline functions, define INLINE + * as the inline keyword; otherwise define it as empty. + */ + +#ifndef INLINE +#ifdef __GNUC__ /* for instance, GNU C knows about inline */ +#define INLINE __inline__ +#endif +#ifndef INLINE +#define INLINE /* default is to define it as empty */ +#endif +#endif + + +/* On some machines (notably 68000 series) "int" is 32 bits, but multiplying + * two 16-bit shorts is faster than multiplying two ints. Define MULTIPLIER + * as short on such a machine. MULTIPLIER must be at least 16 bits wide. + */ + +#ifndef MULTIPLIER +#define MULTIPLIER int /* type for fastest integer multiply */ +#endif + + +/* FAST_FLOAT should be either float or double, whichever is done faster + * by your compiler. (Note that this type is only used in the floating point + * DCT routines, so it only matters if you've defined DCT_FLOAT_SUPPORTED.) + * Typically, float is faster in ANSI C compilers, while double is faster in + * pre-ANSI compilers (because they insist on converting to double anyway). + * The code below therefore chooses float if we have ANSI-style prototypes. + */ + +#ifndef FAST_FLOAT +#ifdef HAVE_PROTOTYPES +#define FAST_FLOAT float +#else +#define FAST_FLOAT double +#endif +#endif + +#endif /* JPEG_INTERNAL_OPTIONS */ diff --git a/cocos2dx/platform/third_party/linux/libjpeg/jpegint.h b/cocos2dx/platform/third_party/linux/libjpeg/jpegint.h new file mode 100644 index 0000000000..0c27a4e4a0 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/jpegint.h @@ -0,0 +1,407 @@ +/* + * jpegint.h + * + * Copyright (C) 1991-1997, Thomas G. Lane. + * Modified 1997-2009 by Guido Vollbeding. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This file provides common declarations for the various JPEG modules. + * These declarations are considered internal to the JPEG library; most + * applications using the library shouldn't need to include this file. + */ + + +/* Declarations for both compression & decompression */ + +typedef enum { /* Operating modes for buffer controllers */ + JBUF_PASS_THRU, /* Plain stripwise operation */ + /* Remaining modes require a full-image buffer to have been created */ + JBUF_SAVE_SOURCE, /* Run source subobject only, save output */ + JBUF_CRANK_DEST, /* Run dest subobject only, using saved data */ + JBUF_SAVE_AND_PASS /* Run both subobjects, save output */ +} J_BUF_MODE; + +/* Values of global_state field (jdapi.c has some dependencies on ordering!) */ +#define CSTATE_START 100 /* after create_compress */ +#define CSTATE_SCANNING 101 /* start_compress done, write_scanlines OK */ +#define CSTATE_RAW_OK 102 /* start_compress done, write_raw_data OK */ +#define CSTATE_WRCOEFS 103 /* jpeg_write_coefficients done */ +#define DSTATE_START 200 /* after create_decompress */ +#define DSTATE_INHEADER 201 /* reading header markers, no SOS yet */ +#define DSTATE_READY 202 /* found SOS, ready for start_decompress */ +#define DSTATE_PRELOAD 203 /* reading multiscan file in start_decompress*/ +#define DSTATE_PRESCAN 204 /* performing dummy pass for 2-pass quant */ +#define DSTATE_SCANNING 205 /* start_decompress done, read_scanlines OK */ +#define DSTATE_RAW_OK 206 /* start_decompress done, read_raw_data OK */ +#define DSTATE_BUFIMAGE 207 /* expecting jpeg_start_output */ +#define DSTATE_BUFPOST 208 /* looking for SOS/EOI in jpeg_finish_output */ +#define DSTATE_RDCOEFS 209 /* reading file in jpeg_read_coefficients */ +#define DSTATE_STOPPING 210 /* looking for EOI in jpeg_finish_decompress */ + + +/* Declarations for compression modules */ + +/* Master control module */ +struct jpeg_comp_master { + JMETHOD(void, prepare_for_pass, (j_compress_ptr cinfo)); + JMETHOD(void, pass_startup, (j_compress_ptr cinfo)); + JMETHOD(void, finish_pass, (j_compress_ptr cinfo)); + + /* State variables made visible to other modules */ + boolean call_pass_startup; /* True if pass_startup must be called */ + boolean is_last_pass; /* True during last pass */ +}; + +/* Main buffer control (downsampled-data buffer) */ +struct jpeg_c_main_controller { + JMETHOD(void, start_pass, (j_compress_ptr cinfo, J_BUF_MODE pass_mode)); + JMETHOD(void, process_data, (j_compress_ptr cinfo, + JSAMPARRAY input_buf, JDIMENSION *in_row_ctr, + JDIMENSION in_rows_avail)); +}; + +/* Compression preprocessing (downsampling input buffer control) */ +struct jpeg_c_prep_controller { + JMETHOD(void, start_pass, (j_compress_ptr cinfo, J_BUF_MODE pass_mode)); + JMETHOD(void, pre_process_data, (j_compress_ptr cinfo, + JSAMPARRAY input_buf, + JDIMENSION *in_row_ctr, + JDIMENSION in_rows_avail, + JSAMPIMAGE output_buf, + JDIMENSION *out_row_group_ctr, + JDIMENSION out_row_groups_avail)); +}; + +/* Coefficient buffer control */ +struct jpeg_c_coef_controller { + JMETHOD(void, start_pass, (j_compress_ptr cinfo, J_BUF_MODE pass_mode)); + JMETHOD(boolean, compress_data, (j_compress_ptr cinfo, + JSAMPIMAGE input_buf)); +}; + +/* Colorspace conversion */ +struct jpeg_color_converter { + JMETHOD(void, start_pass, (j_compress_ptr cinfo)); + JMETHOD(void, color_convert, (j_compress_ptr cinfo, + JSAMPARRAY input_buf, JSAMPIMAGE output_buf, + JDIMENSION output_row, int num_rows)); +}; + +/* Downsampling */ +struct jpeg_downsampler { + JMETHOD(void, start_pass, (j_compress_ptr cinfo)); + JMETHOD(void, downsample, (j_compress_ptr cinfo, + JSAMPIMAGE input_buf, JDIMENSION in_row_index, + JSAMPIMAGE output_buf, + JDIMENSION out_row_group_index)); + + boolean need_context_rows; /* TRUE if need rows above & below */ +}; + +/* Forward DCT (also controls coefficient quantization) */ +typedef JMETHOD(void, forward_DCT_ptr, + (j_compress_ptr cinfo, jpeg_component_info * compptr, + JSAMPARRAY sample_data, JBLOCKROW coef_blocks, + JDIMENSION start_row, JDIMENSION start_col, + JDIMENSION num_blocks)); + +struct jpeg_forward_dct { + JMETHOD(void, start_pass, (j_compress_ptr cinfo)); + /* It is useful to allow each component to have a separate FDCT method. */ + forward_DCT_ptr forward_DCT[MAX_COMPONENTS]; +}; + +/* Entropy encoding */ +struct jpeg_entropy_encoder { + JMETHOD(void, start_pass, (j_compress_ptr cinfo, boolean gather_statistics)); + JMETHOD(boolean, encode_mcu, (j_compress_ptr cinfo, JBLOCKROW *MCU_data)); + JMETHOD(void, finish_pass, (j_compress_ptr cinfo)); +}; + +/* Marker writing */ +struct jpeg_marker_writer { + JMETHOD(void, write_file_header, (j_compress_ptr cinfo)); + JMETHOD(void, write_frame_header, (j_compress_ptr cinfo)); + JMETHOD(void, write_scan_header, (j_compress_ptr cinfo)); + JMETHOD(void, write_file_trailer, (j_compress_ptr cinfo)); + JMETHOD(void, write_tables_only, (j_compress_ptr cinfo)); + /* These routines are exported to allow insertion of extra markers */ + /* Probably only COM and APPn markers should be written this way */ + JMETHOD(void, write_marker_header, (j_compress_ptr cinfo, int marker, + unsigned int datalen)); + JMETHOD(void, write_marker_byte, (j_compress_ptr cinfo, int val)); +}; + + +/* Declarations for decompression modules */ + +/* Master control module */ +struct jpeg_decomp_master { + JMETHOD(void, prepare_for_output_pass, (j_decompress_ptr cinfo)); + JMETHOD(void, finish_output_pass, (j_decompress_ptr cinfo)); + + /* State variables made visible to other modules */ + boolean is_dummy_pass; /* True during 1st pass for 2-pass quant */ +}; + +/* Input control module */ +struct jpeg_input_controller { + JMETHOD(int, consume_input, (j_decompress_ptr cinfo)); + JMETHOD(void, reset_input_controller, (j_decompress_ptr cinfo)); + JMETHOD(void, start_input_pass, (j_decompress_ptr cinfo)); + JMETHOD(void, finish_input_pass, (j_decompress_ptr cinfo)); + + /* State variables made visible to other modules */ + boolean has_multiple_scans; /* True if file has multiple scans */ + boolean eoi_reached; /* True when EOI has been consumed */ +}; + +/* Main buffer control (downsampled-data buffer) */ +struct jpeg_d_main_controller { + JMETHOD(void, start_pass, (j_decompress_ptr cinfo, J_BUF_MODE pass_mode)); + JMETHOD(void, process_data, (j_decompress_ptr cinfo, + JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, + JDIMENSION out_rows_avail)); +}; + +/* Coefficient buffer control */ +struct jpeg_d_coef_controller { + JMETHOD(void, start_input_pass, (j_decompress_ptr cinfo)); + JMETHOD(int, consume_data, (j_decompress_ptr cinfo)); + JMETHOD(void, start_output_pass, (j_decompress_ptr cinfo)); + JMETHOD(int, decompress_data, (j_decompress_ptr cinfo, + JSAMPIMAGE output_buf)); + /* Pointer to array of coefficient virtual arrays, or NULL if none */ + jvirt_barray_ptr *coef_arrays; +}; + +/* Decompression postprocessing (color quantization buffer control) */ +struct jpeg_d_post_controller { + JMETHOD(void, start_pass, (j_decompress_ptr cinfo, J_BUF_MODE pass_mode)); + JMETHOD(void, post_process_data, (j_decompress_ptr cinfo, + JSAMPIMAGE input_buf, + JDIMENSION *in_row_group_ctr, + JDIMENSION in_row_groups_avail, + JSAMPARRAY output_buf, + JDIMENSION *out_row_ctr, + JDIMENSION out_rows_avail)); +}; + +/* Marker reading & parsing */ +struct jpeg_marker_reader { + JMETHOD(void, reset_marker_reader, (j_decompress_ptr cinfo)); + /* Read markers until SOS or EOI. + * Returns same codes as are defined for jpeg_consume_input: + * JPEG_SUSPENDED, JPEG_REACHED_SOS, or JPEG_REACHED_EOI. + */ + JMETHOD(int, read_markers, (j_decompress_ptr cinfo)); + /* Read a restart marker --- exported for use by entropy decoder only */ + jpeg_marker_parser_method read_restart_marker; + + /* State of marker reader --- nominally internal, but applications + * supplying COM or APPn handlers might like to know the state. + */ + boolean saw_SOI; /* found SOI? */ + boolean saw_SOF; /* found SOF? */ + int next_restart_num; /* next restart number expected (0-7) */ + unsigned int discarded_bytes; /* # of bytes skipped looking for a marker */ +}; + +/* Entropy decoding */ +struct jpeg_entropy_decoder { + JMETHOD(void, start_pass, (j_decompress_ptr cinfo)); + JMETHOD(boolean, decode_mcu, (j_decompress_ptr cinfo, + JBLOCKROW *MCU_data)); +}; + +/* Inverse DCT (also performs dequantization) */ +typedef JMETHOD(void, inverse_DCT_method_ptr, + (j_decompress_ptr cinfo, jpeg_component_info * compptr, + JCOEFPTR coef_block, + JSAMPARRAY output_buf, JDIMENSION output_col)); + +struct jpeg_inverse_dct { + JMETHOD(void, start_pass, (j_decompress_ptr cinfo)); + /* It is useful to allow each component to have a separate IDCT method. */ + inverse_DCT_method_ptr inverse_DCT[MAX_COMPONENTS]; +}; + +/* Upsampling (note that upsampler must also call color converter) */ +struct jpeg_upsampler { + JMETHOD(void, start_pass, (j_decompress_ptr cinfo)); + JMETHOD(void, upsample, (j_decompress_ptr cinfo, + JSAMPIMAGE input_buf, + JDIMENSION *in_row_group_ctr, + JDIMENSION in_row_groups_avail, + JSAMPARRAY output_buf, + JDIMENSION *out_row_ctr, + JDIMENSION out_rows_avail)); + + boolean need_context_rows; /* TRUE if need rows above & below */ +}; + +/* Colorspace conversion */ +struct jpeg_color_deconverter { + JMETHOD(void, start_pass, (j_decompress_ptr cinfo)); + JMETHOD(void, color_convert, (j_decompress_ptr cinfo, + JSAMPIMAGE input_buf, JDIMENSION input_row, + JSAMPARRAY output_buf, int num_rows)); +}; + +/* Color quantization or color precision reduction */ +struct jpeg_color_quantizer { + JMETHOD(void, start_pass, (j_decompress_ptr cinfo, boolean is_pre_scan)); + JMETHOD(void, color_quantize, (j_decompress_ptr cinfo, + JSAMPARRAY input_buf, JSAMPARRAY output_buf, + int num_rows)); + JMETHOD(void, finish_pass, (j_decompress_ptr cinfo)); + JMETHOD(void, new_color_map, (j_decompress_ptr cinfo)); +}; + + +/* Miscellaneous useful macros */ + +#undef MAX +#define MAX(a,b) ((a) > (b) ? (a) : (b)) +#undef MIN +#define MIN(a,b) ((a) < (b) ? (a) : (b)) + + +/* We assume that right shift corresponds to signed division by 2 with + * rounding towards minus infinity. This is correct for typical "arithmetic + * shift" instructions that shift in copies of the sign bit. But some + * C compilers implement >> with an unsigned shift. For these machines you + * must define RIGHT_SHIFT_IS_UNSIGNED. + * RIGHT_SHIFT provides a proper signed right shift of an INT32 quantity. + * It is only applied with constant shift counts. SHIFT_TEMPS must be + * included in the variables of any routine using RIGHT_SHIFT. + */ + +#ifdef RIGHT_SHIFT_IS_UNSIGNED +#define SHIFT_TEMPS INT32 shift_temp; +#define RIGHT_SHIFT(x,shft) \ + ((shift_temp = (x)) < 0 ? \ + (shift_temp >> (shft)) | ((~((INT32) 0)) << (32-(shft))) : \ + (shift_temp >> (shft))) +#else +#define SHIFT_TEMPS +#define RIGHT_SHIFT(x,shft) ((x) >> (shft)) +#endif + + +/* Short forms of external names for systems with brain-damaged linkers. */ + +#ifdef NEED_SHORT_EXTERNAL_NAMES +#define jinit_compress_master jICompress +#define jinit_c_master_control jICMaster +#define jinit_c_main_controller jICMainC +#define jinit_c_prep_controller jICPrepC +#define jinit_c_coef_controller jICCoefC +#define jinit_color_converter jICColor +#define jinit_downsampler jIDownsampler +#define jinit_forward_dct jIFDCT +#define jinit_huff_encoder jIHEncoder +#define jinit_arith_encoder jIAEncoder +#define jinit_marker_writer jIMWriter +#define jinit_master_decompress jIDMaster +#define jinit_d_main_controller jIDMainC +#define jinit_d_coef_controller jIDCoefC +#define jinit_d_post_controller jIDPostC +#define jinit_input_controller jIInCtlr +#define jinit_marker_reader jIMReader +#define jinit_huff_decoder jIHDecoder +#define jinit_arith_decoder jIADecoder +#define jinit_inverse_dct jIIDCT +#define jinit_upsampler jIUpsampler +#define jinit_color_deconverter jIDColor +#define jinit_1pass_quantizer jI1Quant +#define jinit_2pass_quantizer jI2Quant +#define jinit_merged_upsampler jIMUpsampler +#define jinit_memory_mgr jIMemMgr +#define jdiv_round_up jDivRound +#define jround_up jRound +#define jcopy_sample_rows jCopySamples +#define jcopy_block_row jCopyBlocks +#define jzero_far jZeroFar +#define jpeg_zigzag_order jZIGTable +#define jpeg_natural_order jZAGTable +#define jpeg_natural_order7 jZAGTable7 +#define jpeg_natural_order6 jZAGTable6 +#define jpeg_natural_order5 jZAGTable5 +#define jpeg_natural_order4 jZAGTable4 +#define jpeg_natural_order3 jZAGTable3 +#define jpeg_natural_order2 jZAGTable2 +#define jpeg_aritab jAriTab +#endif /* NEED_SHORT_EXTERNAL_NAMES */ + + +/* Compression module initialization routines */ +EXTERN(void) jinit_compress_master JPP((j_compress_ptr cinfo)); +EXTERN(void) jinit_c_master_control JPP((j_compress_ptr cinfo, + boolean transcode_only)); +EXTERN(void) jinit_c_main_controller JPP((j_compress_ptr cinfo, + boolean need_full_buffer)); +EXTERN(void) jinit_c_prep_controller JPP((j_compress_ptr cinfo, + boolean need_full_buffer)); +EXTERN(void) jinit_c_coef_controller JPP((j_compress_ptr cinfo, + boolean need_full_buffer)); +EXTERN(void) jinit_color_converter JPP((j_compress_ptr cinfo)); +EXTERN(void) jinit_downsampler JPP((j_compress_ptr cinfo)); +EXTERN(void) jinit_forward_dct JPP((j_compress_ptr cinfo)); +EXTERN(void) jinit_huff_encoder JPP((j_compress_ptr cinfo)); +EXTERN(void) jinit_arith_encoder JPP((j_compress_ptr cinfo)); +EXTERN(void) jinit_marker_writer JPP((j_compress_ptr cinfo)); +/* Decompression module initialization routines */ +EXTERN(void) jinit_master_decompress JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_d_main_controller JPP((j_decompress_ptr cinfo, + boolean need_full_buffer)); +EXTERN(void) jinit_d_coef_controller JPP((j_decompress_ptr cinfo, + boolean need_full_buffer)); +EXTERN(void) jinit_d_post_controller JPP((j_decompress_ptr cinfo, + boolean need_full_buffer)); +EXTERN(void) jinit_input_controller JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_marker_reader JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_huff_decoder JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_arith_decoder JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_inverse_dct JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_upsampler JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_color_deconverter JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_1pass_quantizer JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_2pass_quantizer JPP((j_decompress_ptr cinfo)); +EXTERN(void) jinit_merged_upsampler JPP((j_decompress_ptr cinfo)); +/* Memory manager initialization */ +EXTERN(void) jinit_memory_mgr JPP((j_common_ptr cinfo)); + +/* Utility routines in jutils.c */ +EXTERN(long) jdiv_round_up JPP((long a, long b)); +EXTERN(long) jround_up JPP((long a, long b)); +EXTERN(void) jcopy_sample_rows JPP((JSAMPARRAY input_array, int source_row, + JSAMPARRAY output_array, int dest_row, + int num_rows, JDIMENSION num_cols)); +EXTERN(void) jcopy_block_row JPP((JBLOCKROW input_row, JBLOCKROW output_row, + JDIMENSION num_blocks)); +EXTERN(void) jzero_far JPP((void FAR * target, size_t bytestozero)); +/* Constant tables in jutils.c */ +#if 0 /* This table is not actually needed in v6a */ +extern const int jpeg_zigzag_order[]; /* natural coef order to zigzag order */ +#endif +extern const int jpeg_natural_order[]; /* zigzag coef order to natural order */ +extern const int jpeg_natural_order7[]; /* zz to natural order for 7x7 block */ +extern const int jpeg_natural_order6[]; /* zz to natural order for 6x6 block */ +extern const int jpeg_natural_order5[]; /* zz to natural order for 5x5 block */ +extern const int jpeg_natural_order4[]; /* zz to natural order for 4x4 block */ +extern const int jpeg_natural_order3[]; /* zz to natural order for 3x3 block */ +extern const int jpeg_natural_order2[]; /* zz to natural order for 2x2 block */ + +/* Arithmetic coding probability estimation tables in jaricom.c */ +extern const INT32 jpeg_aritab[]; + +/* Suppress undefined-structure complaints if necessary. */ + +#ifdef INCOMPLETE_TYPES_BROKEN +#ifndef AM_MEMORY_MANAGER /* only jmemmgr.c defines these */ +struct jvirt_sarray_control { long dummy; }; +struct jvirt_barray_control { long dummy; }; +#endif +#endif /* INCOMPLETE_TYPES_BROKEN */ diff --git a/cocos2dx/platform/third_party/linux/libjpeg/jpeglib.h b/cocos2dx/platform/third_party/linux/libjpeg/jpeglib.h new file mode 100644 index 0000000000..1eb1fac033 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/jpeglib.h @@ -0,0 +1,1160 @@ +/* + * jpeglib.h + * + * Copyright (C) 1991-1998, Thomas G. Lane. + * Modified 2002-2010 by Guido Vollbeding. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This file defines the application interface for the JPEG library. + * Most applications using the library need only include this file, + * and perhaps jerror.h if they want to know the exact error codes. + */ + +#ifndef JPEGLIB_H +#define JPEGLIB_H + +/* + * First we include the configuration files that record how this + * installation of the JPEG library is set up. jconfig.h can be + * generated automatically for many systems. jmorecfg.h contains + * manual configuration options that most people need not worry about. + */ + +#ifndef JCONFIG_INCLUDED /* in case jinclude.h already did */ +#include "jconfig.h" /* widely used configuration options */ +#endif +#include "jmorecfg.h" /* seldom changed options */ + + +#ifdef __cplusplus +#ifndef DONT_USE_EXTERN_C +extern "C" { +#endif +#endif + +/* Version IDs for the JPEG library. + * Might be useful for tests like "#if JPEG_LIB_VERSION >= 80". + */ + +#define JPEG_LIB_VERSION 80 /* Compatibility version 8.0 */ +#define JPEG_LIB_VERSION_MAJOR 8 +#define JPEG_LIB_VERSION_MINOR 3 + + +/* Various constants determining the sizes of things. + * All of these are specified by the JPEG standard, so don't change them + * if you want to be compatible. + */ + +#define DCTSIZE 8 /* The basic DCT block is 8x8 samples */ +#define DCTSIZE2 64 /* DCTSIZE squared; # of elements in a block */ +#define NUM_QUANT_TBLS 4 /* Quantization tables are numbered 0..3 */ +#define NUM_HUFF_TBLS 4 /* Huffman tables are numbered 0..3 */ +#define NUM_ARITH_TBLS 16 /* Arith-coding tables are numbered 0..15 */ +#define MAX_COMPS_IN_SCAN 4 /* JPEG limit on # of components in one scan */ +#define MAX_SAMP_FACTOR 4 /* JPEG limit on sampling factors */ +/* Unfortunately, some bozo at Adobe saw no reason to be bound by the standard; + * the PostScript DCT filter can emit files with many more than 10 blocks/MCU. + * If you happen to run across such a file, you can up D_MAX_BLOCKS_IN_MCU + * to handle it. We even let you do this from the jconfig.h file. However, + * we strongly discourage changing C_MAX_BLOCKS_IN_MCU; just because Adobe + * sometimes emits noncompliant files doesn't mean you should too. + */ +#define C_MAX_BLOCKS_IN_MCU 10 /* compressor's limit on blocks per MCU */ +#ifndef D_MAX_BLOCKS_IN_MCU +#define D_MAX_BLOCKS_IN_MCU 10 /* decompressor's limit on blocks per MCU */ +#endif + + +/* Data structures for images (arrays of samples and of DCT coefficients). + * On 80x86 machines, the image arrays are too big for near pointers, + * but the pointer arrays can fit in near memory. + */ + +typedef JSAMPLE FAR *JSAMPROW; /* ptr to one image row of pixel samples. */ +typedef JSAMPROW *JSAMPARRAY; /* ptr to some rows (a 2-D sample array) */ +typedef JSAMPARRAY *JSAMPIMAGE; /* a 3-D sample array: top index is color */ + +typedef JCOEF JBLOCK[DCTSIZE2]; /* one block of coefficients */ +typedef JBLOCK FAR *JBLOCKROW; /* pointer to one row of coefficient blocks */ +typedef JBLOCKROW *JBLOCKARRAY; /* a 2-D array of coefficient blocks */ +typedef JBLOCKARRAY *JBLOCKIMAGE; /* a 3-D array of coefficient blocks */ + +typedef JCOEF FAR *JCOEFPTR; /* useful in a couple of places */ + + +/* Types for JPEG compression parameters and working tables. */ + + +/* DCT coefficient quantization tables. */ + +typedef struct { + /* This array gives the coefficient quantizers in natural array order + * (not the zigzag order in which they are stored in a JPEG DQT marker). + * CAUTION: IJG versions prior to v6a kept this array in zigzag order. + */ + UINT16 quantval[DCTSIZE2]; /* quantization step for each coefficient */ + /* This field is used only during compression. It's initialized FALSE when + * the table is created, and set TRUE when it's been output to the file. + * You could suppress output of a table by setting this to TRUE. + * (See jpeg_suppress_tables for an example.) + */ + boolean sent_table; /* TRUE when table has been output */ +} JQUANT_TBL; + + +/* Huffman coding tables. */ + +typedef struct { + /* These two fields directly represent the contents of a JPEG DHT marker */ + UINT8 bits[17]; /* bits[k] = # of symbols with codes of */ + /* length k bits; bits[0] is unused */ + UINT8 huffval[256]; /* The symbols, in order of incr code length */ + /* This field is used only during compression. It's initialized FALSE when + * the table is created, and set TRUE when it's been output to the file. + * You could suppress output of a table by setting this to TRUE. + * (See jpeg_suppress_tables for an example.) + */ + boolean sent_table; /* TRUE when table has been output */ +} JHUFF_TBL; + + +/* Basic info about one component (color channel). */ + +typedef struct { + /* These values are fixed over the whole image. */ + /* For compression, they must be supplied by parameter setup; */ + /* for decompression, they are read from the SOF marker. */ + int component_id; /* identifier for this component (0..255) */ + int component_index; /* its index in SOF or cinfo->comp_info[] */ + int h_samp_factor; /* horizontal sampling factor (1..4) */ + int v_samp_factor; /* vertical sampling factor (1..4) */ + int quant_tbl_no; /* quantization table selector (0..3) */ + /* These values may vary between scans. */ + /* For compression, they must be supplied by parameter setup; */ + /* for decompression, they are read from the SOS marker. */ + /* The decompressor output side may not use these variables. */ + int dc_tbl_no; /* DC entropy table selector (0..3) */ + int ac_tbl_no; /* AC entropy table selector (0..3) */ + + /* Remaining fields should be treated as private by applications. */ + + /* These values are computed during compression or decompression startup: */ + /* Component's size in DCT blocks. + * Any dummy blocks added to complete an MCU are not counted; therefore + * these values do not depend on whether a scan is interleaved or not. + */ + JDIMENSION width_in_blocks; + JDIMENSION height_in_blocks; + /* Size of a DCT block in samples, + * reflecting any scaling we choose to apply during the DCT step. + * Values from 1 to 16 are supported. + * Note that different components may receive different DCT scalings. + */ + int DCT_h_scaled_size; + int DCT_v_scaled_size; + /* The downsampled dimensions are the component's actual, unpadded number + * of samples at the main buffer (preprocessing/compression interface); + * DCT scaling is included, so + * downsampled_width = ceil(image_width * Hi/Hmax * DCT_h_scaled_size/DCTSIZE) + * and similarly for height. + */ + JDIMENSION downsampled_width; /* actual width in samples */ + JDIMENSION downsampled_height; /* actual height in samples */ + /* This flag is used only for decompression. In cases where some of the + * components will be ignored (eg grayscale output from YCbCr image), + * we can skip most computations for the unused components. + */ + boolean component_needed; /* do we need the value of this component? */ + + /* These values are computed before starting a scan of the component. */ + /* The decompressor output side may not use these variables. */ + int MCU_width; /* number of blocks per MCU, horizontally */ + int MCU_height; /* number of blocks per MCU, vertically */ + int MCU_blocks; /* MCU_width * MCU_height */ + int MCU_sample_width; /* MCU width in samples: MCU_width * DCT_h_scaled_size */ + int last_col_width; /* # of non-dummy blocks across in last MCU */ + int last_row_height; /* # of non-dummy blocks down in last MCU */ + + /* Saved quantization table for component; NULL if none yet saved. + * See jdinput.c comments about the need for this information. + * This field is currently used only for decompression. + */ + JQUANT_TBL * quant_table; + + /* Private per-component storage for DCT or IDCT subsystem. */ + void * dct_table; +} jpeg_component_info; + + +/* The script for encoding a multiple-scan file is an array of these: */ + +typedef struct { + int comps_in_scan; /* number of components encoded in this scan */ + int component_index[MAX_COMPS_IN_SCAN]; /* their SOF/comp_info[] indexes */ + int Ss, Se; /* progressive JPEG spectral selection parms */ + int Ah, Al; /* progressive JPEG successive approx. parms */ +} jpeg_scan_info; + +/* The decompressor can save APPn and COM markers in a list of these: */ + +typedef struct jpeg_marker_struct FAR * jpeg_saved_marker_ptr; + +struct jpeg_marker_struct { + jpeg_saved_marker_ptr next; /* next in list, or NULL */ + UINT8 marker; /* marker code: JPEG_COM, or JPEG_APP0+n */ + unsigned int original_length; /* # bytes of data in the file */ + unsigned int data_length; /* # bytes of data saved at data[] */ + JOCTET FAR * data; /* the data contained in the marker */ + /* the marker length word is not counted in data_length or original_length */ +}; + +/* Known color spaces. */ + +typedef enum { + JCS_UNKNOWN, /* error/unspecified */ + JCS_GRAYSCALE, /* monochrome */ + JCS_RGB, /* red/green/blue */ + JCS_YCbCr, /* Y/Cb/Cr (also known as YUV) */ + JCS_CMYK, /* C/M/Y/K */ + JCS_YCCK /* Y/Cb/Cr/K */ +} J_COLOR_SPACE; + +/* DCT/IDCT algorithm options. */ + +typedef enum { + JDCT_ISLOW, /* slow but accurate integer algorithm */ + JDCT_IFAST, /* faster, less accurate integer method */ + JDCT_FLOAT /* floating-point: accurate, fast on fast HW */ +} J_DCT_METHOD; + +#ifndef JDCT_DEFAULT /* may be overridden in jconfig.h */ +#define JDCT_DEFAULT JDCT_ISLOW +#endif +#ifndef JDCT_FASTEST /* may be overridden in jconfig.h */ +#define JDCT_FASTEST JDCT_IFAST +#endif + +/* Dithering options for decompression. */ + +typedef enum { + JDITHER_NONE, /* no dithering */ + JDITHER_ORDERED, /* simple ordered dither */ + JDITHER_FS /* Floyd-Steinberg error diffusion dither */ +} J_DITHER_MODE; + + +/* Common fields between JPEG compression and decompression master structs. */ + +#define jpeg_common_fields \ + struct jpeg_error_mgr * err; /* Error handler module */\ + struct jpeg_memory_mgr * mem; /* Memory manager module */\ + struct jpeg_progress_mgr * progress; /* Progress monitor, or NULL if none */\ + void * client_data; /* Available for use by application */\ + boolean is_decompressor; /* So common code can tell which is which */\ + int global_state /* For checking call sequence validity */ + +/* Routines that are to be used by both halves of the library are declared + * to receive a pointer to this structure. There are no actual instances of + * jpeg_common_struct, only of jpeg_compress_struct and jpeg_decompress_struct. + */ +struct jpeg_common_struct { + jpeg_common_fields; /* Fields common to both master struct types */ + /* Additional fields follow in an actual jpeg_compress_struct or + * jpeg_decompress_struct. All three structs must agree on these + * initial fields! (This would be a lot cleaner in C++.) + */ +}; + +typedef struct jpeg_common_struct * j_common_ptr; +typedef struct jpeg_compress_struct * j_compress_ptr; +typedef struct jpeg_decompress_struct * j_decompress_ptr; + + +/* Master record for a compression instance */ + +struct jpeg_compress_struct { + jpeg_common_fields; /* Fields shared with jpeg_decompress_struct */ + + /* Destination for compressed data */ + struct jpeg_destination_mgr * dest; + + /* Description of source image --- these fields must be filled in by + * outer application before starting compression. in_color_space must + * be correct before you can even call jpeg_set_defaults(). + */ + + JDIMENSION image_width; /* input image width */ + JDIMENSION image_height; /* input image height */ + int input_components; /* # of color components in input image */ + J_COLOR_SPACE in_color_space; /* colorspace of input image */ + + double input_gamma; /* image gamma of input image */ + + /* Compression parameters --- these fields must be set before calling + * jpeg_start_compress(). We recommend calling jpeg_set_defaults() to + * initialize everything to reasonable defaults, then changing anything + * the application specifically wants to change. That way you won't get + * burnt when new parameters are added. Also note that there are several + * helper routines to simplify changing parameters. + */ + + unsigned int scale_num, scale_denom; /* fraction by which to scale image */ + + JDIMENSION jpeg_width; /* scaled JPEG image width */ + JDIMENSION jpeg_height; /* scaled JPEG image height */ + /* Dimensions of actual JPEG image that will be written to file, + * derived from input dimensions by scaling factors above. + * These fields are computed by jpeg_start_compress(). + * You can also use jpeg_calc_jpeg_dimensions() to determine these values + * in advance of calling jpeg_start_compress(). + */ + + int data_precision; /* bits of precision in image data */ + + int num_components; /* # of color components in JPEG image */ + J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */ + + jpeg_component_info * comp_info; + /* comp_info[i] describes component that appears i'th in SOF */ + + JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS]; + int q_scale_factor[NUM_QUANT_TBLS]; + /* ptrs to coefficient quantization tables, or NULL if not defined, + * and corresponding scale factors (percentage, initialized 100). + */ + + JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS]; + JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS]; + /* ptrs to Huffman coding tables, or NULL if not defined */ + + UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */ + UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */ + UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */ + + int num_scans; /* # of entries in scan_info array */ + const jpeg_scan_info * scan_info; /* script for multi-scan file, or NULL */ + /* The default value of scan_info is NULL, which causes a single-scan + * sequential JPEG file to be emitted. To create a multi-scan file, + * set num_scans and scan_info to point to an array of scan definitions. + */ + + boolean raw_data_in; /* TRUE=caller supplies downsampled data */ + boolean arith_code; /* TRUE=arithmetic coding, FALSE=Huffman */ + boolean optimize_coding; /* TRUE=optimize entropy encoding parms */ + boolean CCIR601_sampling; /* TRUE=first samples are cosited */ + boolean do_fancy_downsampling; /* TRUE=apply fancy downsampling */ + int smoothing_factor; /* 1..100, or 0 for no input smoothing */ + J_DCT_METHOD dct_method; /* DCT algorithm selector */ + + /* The restart interval can be specified in absolute MCUs by setting + * restart_interval, or in MCU rows by setting restart_in_rows + * (in which case the correct restart_interval will be figured + * for each scan). + */ + unsigned int restart_interval; /* MCUs per restart, or 0 for no restart */ + int restart_in_rows; /* if > 0, MCU rows per restart interval */ + + /* Parameters controlling emission of special markers. */ + + boolean write_JFIF_header; /* should a JFIF marker be written? */ + UINT8 JFIF_major_version; /* What to write for the JFIF version number */ + UINT8 JFIF_minor_version; + /* These three values are not used by the JPEG code, merely copied */ + /* into the JFIF APP0 marker. density_unit can be 0 for unknown, */ + /* 1 for dots/inch, or 2 for dots/cm. Note that the pixel aspect */ + /* ratio is defined by X_density/Y_density even when density_unit=0. */ + UINT8 density_unit; /* JFIF code for pixel size units */ + UINT16 X_density; /* Horizontal pixel density */ + UINT16 Y_density; /* Vertical pixel density */ + boolean write_Adobe_marker; /* should an Adobe marker be written? */ + + /* State variable: index of next scanline to be written to + * jpeg_write_scanlines(). Application may use this to control its + * processing loop, e.g., "while (next_scanline < image_height)". + */ + + JDIMENSION next_scanline; /* 0 .. image_height-1 */ + + /* Remaining fields are known throughout compressor, but generally + * should not be touched by a surrounding application. + */ + + /* + * These fields are computed during compression startup + */ + boolean progressive_mode; /* TRUE if scan script uses progressive mode */ + int max_h_samp_factor; /* largest h_samp_factor */ + int max_v_samp_factor; /* largest v_samp_factor */ + + int min_DCT_h_scaled_size; /* smallest DCT_h_scaled_size of any component */ + int min_DCT_v_scaled_size; /* smallest DCT_v_scaled_size of any component */ + + JDIMENSION total_iMCU_rows; /* # of iMCU rows to be input to coef ctlr */ + /* The coefficient controller receives data in units of MCU rows as defined + * for fully interleaved scans (whether the JPEG file is interleaved or not). + * There are v_samp_factor * DCTSIZE sample rows of each component in an + * "iMCU" (interleaved MCU) row. + */ + + /* + * These fields are valid during any one scan. + * They describe the components and MCUs actually appearing in the scan. + */ + int comps_in_scan; /* # of JPEG components in this scan */ + jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN]; + /* *cur_comp_info[i] describes component that appears i'th in SOS */ + + JDIMENSION MCUs_per_row; /* # of MCUs across the image */ + JDIMENSION MCU_rows_in_scan; /* # of MCU rows in the image */ + + int blocks_in_MCU; /* # of DCT blocks per MCU */ + int MCU_membership[C_MAX_BLOCKS_IN_MCU]; + /* MCU_membership[i] is index in cur_comp_info of component owning */ + /* i'th block in an MCU */ + + int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ + + int block_size; /* the basic DCT block size: 1..16 */ + const int * natural_order; /* natural-order position array */ + int lim_Se; /* min( Se, DCTSIZE2-1 ) */ + + /* + * Links to compression subobjects (methods and private variables of modules) + */ + struct jpeg_comp_master * master; + struct jpeg_c_main_controller * main; + struct jpeg_c_prep_controller * prep; + struct jpeg_c_coef_controller * coef; + struct jpeg_marker_writer * marker; + struct jpeg_color_converter * cconvert; + struct jpeg_downsampler * downsample; + struct jpeg_forward_dct * fdct; + struct jpeg_entropy_encoder * entropy; + jpeg_scan_info * script_space; /* workspace for jpeg_simple_progression */ + int script_space_size; +}; + + +/* Master record for a decompression instance */ + +struct jpeg_decompress_struct { + jpeg_common_fields; /* Fields shared with jpeg_compress_struct */ + + /* Source of compressed data */ + struct jpeg_source_mgr * src; + + /* Basic description of image --- filled in by jpeg_read_header(). */ + /* Application may inspect these values to decide how to process image. */ + + JDIMENSION image_width; /* nominal image width (from SOF marker) */ + JDIMENSION image_height; /* nominal image height */ + int num_components; /* # of color components in JPEG image */ + J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */ + + /* Decompression processing parameters --- these fields must be set before + * calling jpeg_start_decompress(). Note that jpeg_read_header() initializes + * them to default values. + */ + + J_COLOR_SPACE out_color_space; /* colorspace for output */ + + unsigned int scale_num, scale_denom; /* fraction by which to scale image */ + + double output_gamma; /* image gamma wanted in output */ + + boolean buffered_image; /* TRUE=multiple output passes */ + boolean raw_data_out; /* TRUE=downsampled data wanted */ + + J_DCT_METHOD dct_method; /* IDCT algorithm selector */ + boolean do_fancy_upsampling; /* TRUE=apply fancy upsampling */ + boolean do_block_smoothing; /* TRUE=apply interblock smoothing */ + + boolean quantize_colors; /* TRUE=colormapped output wanted */ + /* the following are ignored if not quantize_colors: */ + J_DITHER_MODE dither_mode; /* type of color dithering to use */ + boolean two_pass_quantize; /* TRUE=use two-pass color quantization */ + int desired_number_of_colors; /* max # colors to use in created colormap */ + /* these are significant only in buffered-image mode: */ + boolean enable_1pass_quant; /* enable future use of 1-pass quantizer */ + boolean enable_external_quant;/* enable future use of external colormap */ + boolean enable_2pass_quant; /* enable future use of 2-pass quantizer */ + + /* Description of actual output image that will be returned to application. + * These fields are computed by jpeg_start_decompress(). + * You can also use jpeg_calc_output_dimensions() to determine these values + * in advance of calling jpeg_start_decompress(). + */ + + JDIMENSION output_width; /* scaled image width */ + JDIMENSION output_height; /* scaled image height */ + int out_color_components; /* # of color components in out_color_space */ + int output_components; /* # of color components returned */ + /* output_components is 1 (a colormap index) when quantizing colors; + * otherwise it equals out_color_components. + */ + int rec_outbuf_height; /* min recommended height of scanline buffer */ + /* If the buffer passed to jpeg_read_scanlines() is less than this many rows + * high, space and time will be wasted due to unnecessary data copying. + * Usually rec_outbuf_height will be 1 or 2, at most 4. + */ + + /* When quantizing colors, the output colormap is described by these fields. + * The application can supply a colormap by setting colormap non-NULL before + * calling jpeg_start_decompress; otherwise a colormap is created during + * jpeg_start_decompress or jpeg_start_output. + * The map has out_color_components rows and actual_number_of_colors columns. + */ + int actual_number_of_colors; /* number of entries in use */ + JSAMPARRAY colormap; /* The color map as a 2-D pixel array */ + + /* State variables: these variables indicate the progress of decompression. + * The application may examine these but must not modify them. + */ + + /* Row index of next scanline to be read from jpeg_read_scanlines(). + * Application may use this to control its processing loop, e.g., + * "while (output_scanline < output_height)". + */ + JDIMENSION output_scanline; /* 0 .. output_height-1 */ + + /* Current input scan number and number of iMCU rows completed in scan. + * These indicate the progress of the decompressor input side. + */ + int input_scan_number; /* Number of SOS markers seen so far */ + JDIMENSION input_iMCU_row; /* Number of iMCU rows completed */ + + /* The "output scan number" is the notional scan being displayed by the + * output side. The decompressor will not allow output scan/row number + * to get ahead of input scan/row, but it can fall arbitrarily far behind. + */ + int output_scan_number; /* Nominal scan number being displayed */ + JDIMENSION output_iMCU_row; /* Number of iMCU rows read */ + + /* Current progression status. coef_bits[c][i] indicates the precision + * with which component c's DCT coefficient i (in zigzag order) is known. + * It is -1 when no data has yet been received, otherwise it is the point + * transform (shift) value for the most recent scan of the coefficient + * (thus, 0 at completion of the progression). + * This pointer is NULL when reading a non-progressive file. + */ + int (*coef_bits)[DCTSIZE2]; /* -1 or current Al value for each coef */ + + /* Internal JPEG parameters --- the application usually need not look at + * these fields. Note that the decompressor output side may not use + * any parameters that can change between scans. + */ + + /* Quantization and Huffman tables are carried forward across input + * datastreams when processing abbreviated JPEG datastreams. + */ + + JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS]; + /* ptrs to coefficient quantization tables, or NULL if not defined */ + + JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS]; + JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS]; + /* ptrs to Huffman coding tables, or NULL if not defined */ + + /* These parameters are never carried across datastreams, since they + * are given in SOF/SOS markers or defined to be reset by SOI. + */ + + int data_precision; /* bits of precision in image data */ + + jpeg_component_info * comp_info; + /* comp_info[i] describes component that appears i'th in SOF */ + + boolean is_baseline; /* TRUE if Baseline SOF0 encountered */ + boolean progressive_mode; /* TRUE if SOFn specifies progressive mode */ + boolean arith_code; /* TRUE=arithmetic coding, FALSE=Huffman */ + + UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */ + UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */ + UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */ + + unsigned int restart_interval; /* MCUs per restart interval, or 0 for no restart */ + + /* These fields record data obtained from optional markers recognized by + * the JPEG library. + */ + boolean saw_JFIF_marker; /* TRUE iff a JFIF APP0 marker was found */ + /* Data copied from JFIF marker; only valid if saw_JFIF_marker is TRUE: */ + UINT8 JFIF_major_version; /* JFIF version number */ + UINT8 JFIF_minor_version; + UINT8 density_unit; /* JFIF code for pixel size units */ + UINT16 X_density; /* Horizontal pixel density */ + UINT16 Y_density; /* Vertical pixel density */ + boolean saw_Adobe_marker; /* TRUE iff an Adobe APP14 marker was found */ + UINT8 Adobe_transform; /* Color transform code from Adobe marker */ + + boolean CCIR601_sampling; /* TRUE=first samples are cosited */ + + /* Aside from the specific data retained from APPn markers known to the + * library, the uninterpreted contents of any or all APPn and COM markers + * can be saved in a list for examination by the application. + */ + jpeg_saved_marker_ptr marker_list; /* Head of list of saved markers */ + + /* Remaining fields are known throughout decompressor, but generally + * should not be touched by a surrounding application. + */ + + /* + * These fields are computed during decompression startup + */ + int max_h_samp_factor; /* largest h_samp_factor */ + int max_v_samp_factor; /* largest v_samp_factor */ + + int min_DCT_h_scaled_size; /* smallest DCT_h_scaled_size of any component */ + int min_DCT_v_scaled_size; /* smallest DCT_v_scaled_size of any component */ + + JDIMENSION total_iMCU_rows; /* # of iMCU rows in image */ + /* The coefficient controller's input and output progress is measured in + * units of "iMCU" (interleaved MCU) rows. These are the same as MCU rows + * in fully interleaved JPEG scans, but are used whether the scan is + * interleaved or not. We define an iMCU row as v_samp_factor DCT block + * rows of each component. Therefore, the IDCT output contains + * v_samp_factor*DCT_v_scaled_size sample rows of a component per iMCU row. + */ + + JSAMPLE * sample_range_limit; /* table for fast range-limiting */ + + /* + * These fields are valid during any one scan. + * They describe the components and MCUs actually appearing in the scan. + * Note that the decompressor output side must not use these fields. + */ + int comps_in_scan; /* # of JPEG components in this scan */ + jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN]; + /* *cur_comp_info[i] describes component that appears i'th in SOS */ + + JDIMENSION MCUs_per_row; /* # of MCUs across the image */ + JDIMENSION MCU_rows_in_scan; /* # of MCU rows in the image */ + + int blocks_in_MCU; /* # of DCT blocks per MCU */ + int MCU_membership[D_MAX_BLOCKS_IN_MCU]; + /* MCU_membership[i] is index in cur_comp_info of component owning */ + /* i'th block in an MCU */ + + int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ + + /* These fields are derived from Se of first SOS marker. + */ + int block_size; /* the basic DCT block size: 1..16 */ + const int * natural_order; /* natural-order position array for entropy decode */ + int lim_Se; /* min( Se, DCTSIZE2-1 ) for entropy decode */ + + /* This field is shared between entropy decoder and marker parser. + * It is either zero or the code of a JPEG marker that has been + * read from the data source, but has not yet been processed. + */ + int unread_marker; + + /* + * Links to decompression subobjects (methods, private variables of modules) + */ + struct jpeg_decomp_master * master; + struct jpeg_d_main_controller * main; + struct jpeg_d_coef_controller * coef; + struct jpeg_d_post_controller * post; + struct jpeg_input_controller * inputctl; + struct jpeg_marker_reader * marker; + struct jpeg_entropy_decoder * entropy; + struct jpeg_inverse_dct * idct; + struct jpeg_upsampler * upsample; + struct jpeg_color_deconverter * cconvert; + struct jpeg_color_quantizer * cquantize; +}; + + +/* "Object" declarations for JPEG modules that may be supplied or called + * directly by the surrounding application. + * As with all objects in the JPEG library, these structs only define the + * publicly visible methods and state variables of a module. Additional + * private fields may exist after the public ones. + */ + + +/* Error handler object */ + +struct jpeg_error_mgr { + /* Error exit handler: does not return to caller */ + JMETHOD(void, error_exit, (j_common_ptr cinfo)); + /* Conditionally emit a trace or warning message */ + JMETHOD(void, emit_message, (j_common_ptr cinfo, int msg_level)); + /* Routine that actually outputs a trace or error message */ + JMETHOD(void, output_message, (j_common_ptr cinfo)); + /* Format a message string for the most recent JPEG error or message */ + JMETHOD(void, format_message, (j_common_ptr cinfo, char * buffer)); +#define JMSG_LENGTH_MAX 200 /* recommended size of format_message buffer */ + /* Reset error state variables at start of a new image */ + JMETHOD(void, reset_error_mgr, (j_common_ptr cinfo)); + + /* The message ID code and any parameters are saved here. + * A message can have one string parameter or up to 8 int parameters. + */ + int msg_code; +#define JMSG_STR_PARM_MAX 80 + union { + int i[8]; + char s[JMSG_STR_PARM_MAX]; + } msg_parm; + + /* Standard state variables for error facility */ + + int trace_level; /* max msg_level that will be displayed */ + + /* For recoverable corrupt-data errors, we emit a warning message, + * but keep going unless emit_message chooses to abort. emit_message + * should count warnings in num_warnings. The surrounding application + * can check for bad data by seeing if num_warnings is nonzero at the + * end of processing. + */ + long num_warnings; /* number of corrupt-data warnings */ + + /* These fields point to the table(s) of error message strings. + * An application can change the table pointer to switch to a different + * message list (typically, to change the language in which errors are + * reported). Some applications may wish to add additional error codes + * that will be handled by the JPEG library error mechanism; the second + * table pointer is used for this purpose. + * + * First table includes all errors generated by JPEG library itself. + * Error code 0 is reserved for a "no such error string" message. + */ + const char * const * jpeg_message_table; /* Library errors */ + int last_jpeg_message; /* Table contains strings 0..last_jpeg_message */ + /* Second table can be added by application (see cjpeg/djpeg for example). + * It contains strings numbered first_addon_message..last_addon_message. + */ + const char * const * addon_message_table; /* Non-library errors */ + int first_addon_message; /* code for first string in addon table */ + int last_addon_message; /* code for last string in addon table */ +}; + + +/* Progress monitor object */ + +struct jpeg_progress_mgr { + JMETHOD(void, progress_monitor, (j_common_ptr cinfo)); + + long pass_counter; /* work units completed in this pass */ + long pass_limit; /* total number of work units in this pass */ + int completed_passes; /* passes completed so far */ + int total_passes; /* total number of passes expected */ +}; + + +/* Data destination object for compression */ + +struct jpeg_destination_mgr { + JOCTET * next_output_byte; /* => next byte to write in buffer */ + size_t free_in_buffer; /* # of byte spaces remaining in buffer */ + + JMETHOD(void, init_destination, (j_compress_ptr cinfo)); + JMETHOD(boolean, empty_output_buffer, (j_compress_ptr cinfo)); + JMETHOD(void, term_destination, (j_compress_ptr cinfo)); +}; + + +/* Data source object for decompression */ + +struct jpeg_source_mgr { + const JOCTET * next_input_byte; /* => next byte to read from buffer */ + size_t bytes_in_buffer; /* # of bytes remaining in buffer */ + + JMETHOD(void, init_source, (j_decompress_ptr cinfo)); + JMETHOD(boolean, fill_input_buffer, (j_decompress_ptr cinfo)); + JMETHOD(void, skip_input_data, (j_decompress_ptr cinfo, long num_bytes)); + JMETHOD(boolean, resync_to_restart, (j_decompress_ptr cinfo, int desired)); + JMETHOD(void, term_source, (j_decompress_ptr cinfo)); +}; + + +/* Memory manager object. + * Allocates "small" objects (a few K total), "large" objects (tens of K), + * and "really big" objects (virtual arrays with backing store if needed). + * The memory manager does not allow individual objects to be freed; rather, + * each created object is assigned to a pool, and whole pools can be freed + * at once. This is faster and more convenient than remembering exactly what + * to free, especially where malloc()/free() are not too speedy. + * NB: alloc routines never return NULL. They exit to error_exit if not + * successful. + */ + +#define JPOOL_PERMANENT 0 /* lasts until master record is destroyed */ +#define JPOOL_IMAGE 1 /* lasts until done with image/datastream */ +#define JPOOL_NUMPOOLS 2 + +typedef struct jvirt_sarray_control * jvirt_sarray_ptr; +typedef struct jvirt_barray_control * jvirt_barray_ptr; + + +struct jpeg_memory_mgr { + /* Method pointers */ + JMETHOD(void *, alloc_small, (j_common_ptr cinfo, int pool_id, + size_t sizeofobject)); + JMETHOD(void FAR *, alloc_large, (j_common_ptr cinfo, int pool_id, + size_t sizeofobject)); + JMETHOD(JSAMPARRAY, alloc_sarray, (j_common_ptr cinfo, int pool_id, + JDIMENSION samplesperrow, + JDIMENSION numrows)); + JMETHOD(JBLOCKARRAY, alloc_barray, (j_common_ptr cinfo, int pool_id, + JDIMENSION blocksperrow, + JDIMENSION numrows)); + JMETHOD(jvirt_sarray_ptr, request_virt_sarray, (j_common_ptr cinfo, + int pool_id, + boolean pre_zero, + JDIMENSION samplesperrow, + JDIMENSION numrows, + JDIMENSION maxaccess)); + JMETHOD(jvirt_barray_ptr, request_virt_barray, (j_common_ptr cinfo, + int pool_id, + boolean pre_zero, + JDIMENSION blocksperrow, + JDIMENSION numrows, + JDIMENSION maxaccess)); + JMETHOD(void, realize_virt_arrays, (j_common_ptr cinfo)); + JMETHOD(JSAMPARRAY, access_virt_sarray, (j_common_ptr cinfo, + jvirt_sarray_ptr ptr, + JDIMENSION start_row, + JDIMENSION num_rows, + boolean writable)); + JMETHOD(JBLOCKARRAY, access_virt_barray, (j_common_ptr cinfo, + jvirt_barray_ptr ptr, + JDIMENSION start_row, + JDIMENSION num_rows, + boolean writable)); + JMETHOD(void, free_pool, (j_common_ptr cinfo, int pool_id)); + JMETHOD(void, self_destruct, (j_common_ptr cinfo)); + + /* Limit on memory allocation for this JPEG object. (Note that this is + * merely advisory, not a guaranteed maximum; it only affects the space + * used for virtual-array buffers.) May be changed by outer application + * after creating the JPEG object. + */ + long max_memory_to_use; + + /* Maximum allocation request accepted by alloc_large. */ + long max_alloc_chunk; +}; + + +/* Routine signature for application-supplied marker processing methods. + * Need not pass marker code since it is stored in cinfo->unread_marker. + */ +typedef JMETHOD(boolean, jpeg_marker_parser_method, (j_decompress_ptr cinfo)); + + +/* Declarations for routines called by application. + * The JPP macro hides prototype parameters from compilers that can't cope. + * Note JPP requires double parentheses. + */ + +#ifdef HAVE_PROTOTYPES +#define JPP(arglist) arglist +#else +#define JPP(arglist) () +#endif + + +/* Short forms of external names for systems with brain-damaged linkers. + * We shorten external names to be unique in the first six letters, which + * is good enough for all known systems. + * (If your compiler itself needs names to be unique in less than 15 + * characters, you are out of luck. Get a better compiler.) + */ + +#ifdef NEED_SHORT_EXTERNAL_NAMES +#define jpeg_std_error jStdError +#define jpeg_CreateCompress jCreaCompress +#define jpeg_CreateDecompress jCreaDecompress +#define jpeg_destroy_compress jDestCompress +#define jpeg_destroy_decompress jDestDecompress +#define jpeg_stdio_dest jStdDest +#define jpeg_stdio_src jStdSrc +#define jpeg_mem_dest jMemDest +#define jpeg_mem_src jMemSrc +#define jpeg_set_defaults jSetDefaults +#define jpeg_set_colorspace jSetColorspace +#define jpeg_default_colorspace jDefColorspace +#define jpeg_set_quality jSetQuality +#define jpeg_set_linear_quality jSetLQuality +#define jpeg_default_qtables jDefQTables +#define jpeg_add_quant_table jAddQuantTable +#define jpeg_quality_scaling jQualityScaling +#define jpeg_simple_progression jSimProgress +#define jpeg_suppress_tables jSuppressTables +#define jpeg_alloc_quant_table jAlcQTable +#define jpeg_alloc_huff_table jAlcHTable +#define jpeg_start_compress jStrtCompress +#define jpeg_write_scanlines jWrtScanlines +#define jpeg_finish_compress jFinCompress +#define jpeg_calc_jpeg_dimensions jCjpegDimensions +#define jpeg_write_raw_data jWrtRawData +#define jpeg_write_marker jWrtMarker +#define jpeg_write_m_header jWrtMHeader +#define jpeg_write_m_byte jWrtMByte +#define jpeg_write_tables jWrtTables +#define jpeg_read_header jReadHeader +#define jpeg_start_decompress jStrtDecompress +#define jpeg_read_scanlines jReadScanlines +#define jpeg_finish_decompress jFinDecompress +#define jpeg_read_raw_data jReadRawData +#define jpeg_has_multiple_scans jHasMultScn +#define jpeg_start_output jStrtOutput +#define jpeg_finish_output jFinOutput +#define jpeg_input_complete jInComplete +#define jpeg_new_colormap jNewCMap +#define jpeg_consume_input jConsumeInput +#define jpeg_core_output_dimensions jCoreDimensions +#define jpeg_calc_output_dimensions jCalcDimensions +#define jpeg_save_markers jSaveMarkers +#define jpeg_set_marker_processor jSetMarker +#define jpeg_read_coefficients jReadCoefs +#define jpeg_write_coefficients jWrtCoefs +#define jpeg_copy_critical_parameters jCopyCrit +#define jpeg_abort_compress jAbrtCompress +#define jpeg_abort_decompress jAbrtDecompress +#define jpeg_abort jAbort +#define jpeg_destroy jDestroy +#define jpeg_resync_to_restart jResyncRestart +#endif /* NEED_SHORT_EXTERNAL_NAMES */ + + +/* Default error-management setup */ +EXTERN(struct jpeg_error_mgr *) jpeg_std_error + JPP((struct jpeg_error_mgr * err)); + +/* Initialization of JPEG compression objects. + * jpeg_create_compress() and jpeg_create_decompress() are the exported + * names that applications should call. These expand to calls on + * jpeg_CreateCompress and jpeg_CreateDecompress with additional information + * passed for version mismatch checking. + * NB: you must set up the error-manager BEFORE calling jpeg_create_xxx. + */ +#define jpeg_create_compress(cinfo) \ + jpeg_CreateCompress((cinfo), JPEG_LIB_VERSION, \ + (size_t) sizeof(struct jpeg_compress_struct)) +#define jpeg_create_decompress(cinfo) \ + jpeg_CreateDecompress((cinfo), JPEG_LIB_VERSION, \ + (size_t) sizeof(struct jpeg_decompress_struct)) +EXTERN(void) jpeg_CreateCompress JPP((j_compress_ptr cinfo, + int version, size_t structsize)); +EXTERN(void) jpeg_CreateDecompress JPP((j_decompress_ptr cinfo, + int version, size_t structsize)); +/* Destruction of JPEG compression objects */ +EXTERN(void) jpeg_destroy_compress JPP((j_compress_ptr cinfo)); +EXTERN(void) jpeg_destroy_decompress JPP((j_decompress_ptr cinfo)); + +/* Standard data source and destination managers: stdio streams. */ +/* Caller is responsible for opening the file before and closing after. */ +EXTERN(void) jpeg_stdio_dest JPP((j_compress_ptr cinfo, FILE * outfile)); +EXTERN(void) jpeg_stdio_src JPP((j_decompress_ptr cinfo, FILE * infile)); + +/* Data source and destination managers: memory buffers. */ +EXTERN(void) jpeg_mem_dest JPP((j_compress_ptr cinfo, + unsigned char ** outbuffer, + unsigned long * outsize)); +EXTERN(void) jpeg_mem_src JPP((j_decompress_ptr cinfo, + unsigned char * inbuffer, + unsigned long insize)); + +/* Default parameter setup for compression */ +EXTERN(void) jpeg_set_defaults JPP((j_compress_ptr cinfo)); +/* Compression parameter setup aids */ +EXTERN(void) jpeg_set_colorspace JPP((j_compress_ptr cinfo, + J_COLOR_SPACE colorspace)); +EXTERN(void) jpeg_default_colorspace JPP((j_compress_ptr cinfo)); +EXTERN(void) jpeg_set_quality JPP((j_compress_ptr cinfo, int quality, + boolean force_baseline)); +EXTERN(void) jpeg_set_linear_quality JPP((j_compress_ptr cinfo, + int scale_factor, + boolean force_baseline)); +EXTERN(void) jpeg_default_qtables JPP((j_compress_ptr cinfo, + boolean force_baseline)); +EXTERN(void) jpeg_add_quant_table JPP((j_compress_ptr cinfo, int which_tbl, + const unsigned int *basic_table, + int scale_factor, + boolean force_baseline)); +EXTERN(int) jpeg_quality_scaling JPP((int quality)); +EXTERN(void) jpeg_simple_progression JPP((j_compress_ptr cinfo)); +EXTERN(void) jpeg_suppress_tables JPP((j_compress_ptr cinfo, + boolean suppress)); +EXTERN(JQUANT_TBL *) jpeg_alloc_quant_table JPP((j_common_ptr cinfo)); +EXTERN(JHUFF_TBL *) jpeg_alloc_huff_table JPP((j_common_ptr cinfo)); + +/* Main entry points for compression */ +EXTERN(void) jpeg_start_compress JPP((j_compress_ptr cinfo, + boolean write_all_tables)); +EXTERN(JDIMENSION) jpeg_write_scanlines JPP((j_compress_ptr cinfo, + JSAMPARRAY scanlines, + JDIMENSION num_lines)); +EXTERN(void) jpeg_finish_compress JPP((j_compress_ptr cinfo)); + +/* Precalculate JPEG dimensions for current compression parameters. */ +EXTERN(void) jpeg_calc_jpeg_dimensions JPP((j_compress_ptr cinfo)); + +/* Replaces jpeg_write_scanlines when writing raw downsampled data. */ +EXTERN(JDIMENSION) jpeg_write_raw_data JPP((j_compress_ptr cinfo, + JSAMPIMAGE data, + JDIMENSION num_lines)); + +/* Write a special marker. See libjpeg.txt concerning safe usage. */ +EXTERN(void) jpeg_write_marker + JPP((j_compress_ptr cinfo, int marker, + const JOCTET * dataptr, unsigned int datalen)); +/* Same, but piecemeal. */ +EXTERN(void) jpeg_write_m_header + JPP((j_compress_ptr cinfo, int marker, unsigned int datalen)); +EXTERN(void) jpeg_write_m_byte + JPP((j_compress_ptr cinfo, int val)); + +/* Alternate compression function: just write an abbreviated table file */ +EXTERN(void) jpeg_write_tables JPP((j_compress_ptr cinfo)); + +/* Decompression startup: read start of JPEG datastream to see what's there */ +EXTERN(int) jpeg_read_header JPP((j_decompress_ptr cinfo, + boolean require_image)); +/* Return value is one of: */ +#define JPEG_SUSPENDED 0 /* Suspended due to lack of input data */ +#define JPEG_HEADER_OK 1 /* Found valid image datastream */ +#define JPEG_HEADER_TABLES_ONLY 2 /* Found valid table-specs-only datastream */ +/* If you pass require_image = TRUE (normal case), you need not check for + * a TABLES_ONLY return code; an abbreviated file will cause an error exit. + * JPEG_SUSPENDED is only possible if you use a data source module that can + * give a suspension return (the stdio source module doesn't). + */ + +/* Main entry points for decompression */ +EXTERN(boolean) jpeg_start_decompress JPP((j_decompress_ptr cinfo)); +EXTERN(JDIMENSION) jpeg_read_scanlines JPP((j_decompress_ptr cinfo, + JSAMPARRAY scanlines, + JDIMENSION max_lines)); +EXTERN(boolean) jpeg_finish_decompress JPP((j_decompress_ptr cinfo)); + +/* Replaces jpeg_read_scanlines when reading raw downsampled data. */ +EXTERN(JDIMENSION) jpeg_read_raw_data JPP((j_decompress_ptr cinfo, + JSAMPIMAGE data, + JDIMENSION max_lines)); + +/* Additional entry points for buffered-image mode. */ +EXTERN(boolean) jpeg_has_multiple_scans JPP((j_decompress_ptr cinfo)); +EXTERN(boolean) jpeg_start_output JPP((j_decompress_ptr cinfo, + int scan_number)); +EXTERN(boolean) jpeg_finish_output JPP((j_decompress_ptr cinfo)); +EXTERN(boolean) jpeg_input_complete JPP((j_decompress_ptr cinfo)); +EXTERN(void) jpeg_new_colormap JPP((j_decompress_ptr cinfo)); +EXTERN(int) jpeg_consume_input JPP((j_decompress_ptr cinfo)); +/* Return value is one of: */ +/* #define JPEG_SUSPENDED 0 Suspended due to lack of input data */ +#define JPEG_REACHED_SOS 1 /* Reached start of new scan */ +#define JPEG_REACHED_EOI 2 /* Reached end of image */ +#define JPEG_ROW_COMPLETED 3 /* Completed one iMCU row */ +#define JPEG_SCAN_COMPLETED 4 /* Completed last iMCU row of a scan */ + +/* Precalculate output dimensions for current decompression parameters. */ +EXTERN(void) jpeg_core_output_dimensions JPP((j_decompress_ptr cinfo)); +EXTERN(void) jpeg_calc_output_dimensions JPP((j_decompress_ptr cinfo)); + +/* Control saving of COM and APPn markers into marker_list. */ +EXTERN(void) jpeg_save_markers + JPP((j_decompress_ptr cinfo, int marker_code, + unsigned int length_limit)); + +/* Install a special processing method for COM or APPn markers. */ +EXTERN(void) jpeg_set_marker_processor + JPP((j_decompress_ptr cinfo, int marker_code, + jpeg_marker_parser_method routine)); + +/* Read or write raw DCT coefficients --- useful for lossless transcoding. */ +EXTERN(jvirt_barray_ptr *) jpeg_read_coefficients JPP((j_decompress_ptr cinfo)); +EXTERN(void) jpeg_write_coefficients JPP((j_compress_ptr cinfo, + jvirt_barray_ptr * coef_arrays)); +EXTERN(void) jpeg_copy_critical_parameters JPP((j_decompress_ptr srcinfo, + j_compress_ptr dstinfo)); + +/* If you choose to abort compression or decompression before completing + * jpeg_finish_(de)compress, then you need to clean up to release memory, + * temporary files, etc. You can just call jpeg_destroy_(de)compress + * if you're done with the JPEG object, but if you want to clean it up and + * reuse it, call this: + */ +EXTERN(void) jpeg_abort_compress JPP((j_compress_ptr cinfo)); +EXTERN(void) jpeg_abort_decompress JPP((j_decompress_ptr cinfo)); + +/* Generic versions of jpeg_abort and jpeg_destroy that work on either + * flavor of JPEG object. These may be more convenient in some places. + */ +EXTERN(void) jpeg_abort JPP((j_common_ptr cinfo)); +EXTERN(void) jpeg_destroy JPP((j_common_ptr cinfo)); + +/* Default restart-marker-resync procedure for use by data source modules */ +EXTERN(boolean) jpeg_resync_to_restart JPP((j_decompress_ptr cinfo, + int desired)); + + +/* These marker codes are exported since applications and data source modules + * are likely to want to use them. + */ + +#define JPEG_RST0 0xD0 /* RST0 marker code */ +#define JPEG_EOI 0xD9 /* EOI marker code */ +#define JPEG_APP0 0xE0 /* APP0 marker code */ +#define JPEG_COM 0xFE /* COM marker code */ + + +/* If we have a brain-damaged compiler that emits warnings (or worse, errors) + * for structure definitions that are never filled in, keep it quiet by + * supplying dummy definitions for the various substructures. + */ + +#ifdef INCOMPLETE_TYPES_BROKEN +#ifndef JPEG_INTERNALS /* will be defined in jpegint.h */ +struct jvirt_sarray_control { long dummy; }; +struct jvirt_barray_control { long dummy; }; +struct jpeg_comp_master { long dummy; }; +struct jpeg_c_main_controller { long dummy; }; +struct jpeg_c_prep_controller { long dummy; }; +struct jpeg_c_coef_controller { long dummy; }; +struct jpeg_marker_writer { long dummy; }; +struct jpeg_color_converter { long dummy; }; +struct jpeg_downsampler { long dummy; }; +struct jpeg_forward_dct { long dummy; }; +struct jpeg_entropy_encoder { long dummy; }; +struct jpeg_decomp_master { long dummy; }; +struct jpeg_d_main_controller { long dummy; }; +struct jpeg_d_coef_controller { long dummy; }; +struct jpeg_d_post_controller { long dummy; }; +struct jpeg_input_controller { long dummy; }; +struct jpeg_marker_reader { long dummy; }; +struct jpeg_entropy_decoder { long dummy; }; +struct jpeg_inverse_dct { long dummy; }; +struct jpeg_upsampler { long dummy; }; +struct jpeg_color_deconverter { long dummy; }; +struct jpeg_color_quantizer { long dummy; }; +#endif /* JPEG_INTERNALS */ +#endif /* INCOMPLETE_TYPES_BROKEN */ + + +/* + * The JPEG library modules define JPEG_INTERNALS before including this file. + * The internal structure declarations are read only when that is true. + * Applications using the library should not include jpegint.h, but may wish + * to include jerror.h. + */ + +#ifdef JPEG_INTERNALS +#include "jpegint.h" /* fetch private declarations */ +#include "jerror.h" /* fetch error codes too */ +#endif + +#ifdef __cplusplus +#ifndef DONT_USE_EXTERN_C +} +#endif +#endif + +#endif /* JPEGLIB_H */ diff --git a/cocos2dx/platform/third_party/linux/libjpeg/jversion.h b/cocos2dx/platform/third_party/linux/libjpeg/jversion.h new file mode 100644 index 0000000000..e868538c88 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/jversion.h @@ -0,0 +1,14 @@ +/* + * jversion.h + * + * Copyright (C) 1991-2011, Thomas G. Lane, Guido Vollbeding. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This file contains software version identification. + */ + + +#define JVERSION "8c 16-Jan-2011" + +#define JCOPYRIGHT "Copyright (C) 2011, Thomas G. Lane, Guido Vollbeding" diff --git a/cocos2dx/platform/third_party/linux/libjpeg/transupp.h b/cocos2dx/platform/third_party/linux/libjpeg/transupp.h new file mode 100644 index 0000000000..7c16c19c44 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libjpeg/transupp.h @@ -0,0 +1,210 @@ +/* + * transupp.h + * + * Copyright (C) 1997-2009, Thomas G. Lane, Guido Vollbeding. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + * + * This file contains declarations for image transformation routines and + * other utility code used by the jpegtran sample application. These are + * NOT part of the core JPEG library. But we keep these routines separate + * from jpegtran.c to ease the task of maintaining jpegtran-like programs + * that have other user interfaces. + * + * NOTE: all the routines declared here have very specific requirements + * about when they are to be executed during the reading and writing of the + * source and destination files. See the comments in transupp.c, or see + * jpegtran.c for an example of correct usage. + */ + +/* If you happen not to want the image transform support, disable it here */ +#ifndef TRANSFORMS_SUPPORTED +#define TRANSFORMS_SUPPORTED 1 /* 0 disables transform code */ +#endif + +/* + * Although rotating and flipping data expressed as DCT coefficients is not + * hard, there is an asymmetry in the JPEG format specification for images + * whose dimensions aren't multiples of the iMCU size. The right and bottom + * image edges are padded out to the next iMCU boundary with junk data; but + * no padding is possible at the top and left edges. If we were to flip + * the whole image including the pad data, then pad garbage would become + * visible at the top and/or left, and real pixels would disappear into the + * pad margins --- perhaps permanently, since encoders & decoders may not + * bother to preserve DCT blocks that appear to be completely outside the + * nominal image area. So, we have to exclude any partial iMCUs from the + * basic transformation. + * + * Transpose is the only transformation that can handle partial iMCUs at the + * right and bottom edges completely cleanly. flip_h can flip partial iMCUs + * at the bottom, but leaves any partial iMCUs at the right edge untouched. + * Similarly flip_v leaves any partial iMCUs at the bottom edge untouched. + * The other transforms are defined as combinations of these basic transforms + * and process edge blocks in a way that preserves the equivalence. + * + * The "trim" option causes untransformable partial iMCUs to be dropped; + * this is not strictly lossless, but it usually gives the best-looking + * result for odd-size images. Note that when this option is active, + * the expected mathematical equivalences between the transforms may not hold. + * (For example, -rot 270 -trim trims only the bottom edge, but -rot 90 -trim + * followed by -rot 180 -trim trims both edges.) + * + * We also offer a lossless-crop option, which discards data outside a given + * image region but losslessly preserves what is inside. Like the rotate and + * flip transforms, lossless crop is restricted by the JPEG format: the upper + * left corner of the selected region must fall on an iMCU boundary. If this + * does not hold for the given crop parameters, we silently move the upper left + * corner up and/or left to make it so, simultaneously increasing the region + * dimensions to keep the lower right crop corner unchanged. (Thus, the + * output image covers at least the requested region, but may cover more.) + * + * We also provide a lossless-resize option, which is kind of a lossless-crop + * operation in the DCT coefficient block domain - it discards higher-order + * coefficients and losslessly preserves lower-order coefficients of a + * sub-block. + * + * Rotate/flip transform, resize, and crop can be requested together in a + * single invocation. The crop is applied last --- that is, the crop region + * is specified in terms of the destination image after transform/resize. + * + * We also offer a "force to grayscale" option, which simply discards the + * chrominance channels of a YCbCr image. This is lossless in the sense that + * the luminance channel is preserved exactly. It's not the same kind of + * thing as the rotate/flip transformations, but it's convenient to handle it + * as part of this package, mainly because the transformation routines have to + * be aware of the option to know how many components to work on. + */ + + +/* Short forms of external names for systems with brain-damaged linkers. */ + +#ifdef NEED_SHORT_EXTERNAL_NAMES +#define jtransform_parse_crop_spec jTrParCrop +#define jtransform_request_workspace jTrRequest +#define jtransform_adjust_parameters jTrAdjust +#define jtransform_execute_transform jTrExec +#define jtransform_perfect_transform jTrPerfect +#define jcopy_markers_setup jCMrkSetup +#define jcopy_markers_execute jCMrkExec +#endif /* NEED_SHORT_EXTERNAL_NAMES */ + + +/* + * Codes for supported types of image transformations. + */ + +typedef enum { + JXFORM_NONE, /* no transformation */ + JXFORM_FLIP_H, /* horizontal flip */ + JXFORM_FLIP_V, /* vertical flip */ + JXFORM_TRANSPOSE, /* transpose across UL-to-LR axis */ + JXFORM_TRANSVERSE, /* transpose across UR-to-LL axis */ + JXFORM_ROT_90, /* 90-degree clockwise rotation */ + JXFORM_ROT_180, /* 180-degree rotation */ + JXFORM_ROT_270 /* 270-degree clockwise (or 90 ccw) */ +} JXFORM_CODE; + +/* + * Codes for crop parameters, which can individually be unspecified, + * positive, or negative. (Negative width or height makes no sense, though.) + */ + +typedef enum { + JCROP_UNSET, + JCROP_POS, + JCROP_NEG +} JCROP_CODE; + +/* + * Transform parameters struct. + * NB: application must not change any elements of this struct after + * calling jtransform_request_workspace. + */ + +typedef struct { + /* Options: set by caller */ + JXFORM_CODE transform; /* image transform operator */ + boolean perfect; /* if TRUE, fail if partial MCUs are requested */ + boolean trim; /* if TRUE, trim partial MCUs as needed */ + boolean force_grayscale; /* if TRUE, convert color image to grayscale */ + boolean crop; /* if TRUE, crop source image */ + + /* Crop parameters: application need not set these unless crop is TRUE. + * These can be filled in by jtransform_parse_crop_spec(). + */ + JDIMENSION crop_width; /* Width of selected region */ + JCROP_CODE crop_width_set; + JDIMENSION crop_height; /* Height of selected region */ + JCROP_CODE crop_height_set; + JDIMENSION crop_xoffset; /* X offset of selected region */ + JCROP_CODE crop_xoffset_set; /* (negative measures from right edge) */ + JDIMENSION crop_yoffset; /* Y offset of selected region */ + JCROP_CODE crop_yoffset_set; /* (negative measures from bottom edge) */ + + /* Internal workspace: caller should not touch these */ + int num_components; /* # of components in workspace */ + jvirt_barray_ptr * workspace_coef_arrays; /* workspace for transformations */ + JDIMENSION output_width; /* cropped destination dimensions */ + JDIMENSION output_height; + JDIMENSION x_crop_offset; /* destination crop offsets measured in iMCUs */ + JDIMENSION y_crop_offset; + int iMCU_sample_width; /* destination iMCU size */ + int iMCU_sample_height; +} jpeg_transform_info; + + +#if TRANSFORMS_SUPPORTED + +/* Parse a crop specification (written in X11 geometry style) */ +EXTERN(boolean) jtransform_parse_crop_spec + JPP((jpeg_transform_info *info, const char *spec)); +/* Request any required workspace */ +EXTERN(boolean) jtransform_request_workspace + JPP((j_decompress_ptr srcinfo, jpeg_transform_info *info)); +/* Adjust output image parameters */ +EXTERN(jvirt_barray_ptr *) jtransform_adjust_parameters + JPP((j_decompress_ptr srcinfo, j_compress_ptr dstinfo, + jvirt_barray_ptr *src_coef_arrays, + jpeg_transform_info *info)); +/* Execute the actual transformation, if any */ +EXTERN(void) jtransform_execute_transform + JPP((j_decompress_ptr srcinfo, j_compress_ptr dstinfo, + jvirt_barray_ptr *src_coef_arrays, + jpeg_transform_info *info)); +/* Determine whether lossless transformation is perfectly + * possible for a specified image and transformation. + */ +EXTERN(boolean) jtransform_perfect_transform + JPP((JDIMENSION image_width, JDIMENSION image_height, + int MCU_width, int MCU_height, + JXFORM_CODE transform)); + +/* jtransform_execute_transform used to be called + * jtransform_execute_transformation, but some compilers complain about + * routine names that long. This macro is here to avoid breaking any + * old source code that uses the original name... + */ +#define jtransform_execute_transformation jtransform_execute_transform + +#endif /* TRANSFORMS_SUPPORTED */ + + +/* + * Support for copying optional markers from source to destination file. + */ + +typedef enum { + JCOPYOPT_NONE, /* copy no optional markers */ + JCOPYOPT_COMMENTS, /* copy only comment (COM) markers */ + JCOPYOPT_ALL /* copy all optional markers */ +} JCOPY_OPTION; + +#define JCOPYOPT_DEFAULT JCOPYOPT_COMMENTS /* recommended default */ + +/* Setup decompression object to save desired markers in memory */ +EXTERN(void) jcopy_markers_setup + JPP((j_decompress_ptr srcinfo, JCOPY_OPTION option)); +/* Copy markers saved in the given source object to the destination object */ +EXTERN(void) jcopy_markers_execute + JPP((j_decompress_ptr srcinfo, j_compress_ptr dstinfo, + JCOPY_OPTION option)); diff --git a/cocos2dx/platform/third_party/linux/libpng/PngFile.h b/cocos2dx/platform/third_party/linux/libpng/PngFile.h new file mode 100644 index 0000000000..dc6bbb409f --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/PngFile.h @@ -0,0 +1,30 @@ +//------------------------------------------ +// PNGFILE.H -- Header File for pngfile.c +//------------------------------------------ + +// Copyright 2000, Willem van Schaik. + +// This code is released under the libpng license. +// For conditions of distribution and use, see the disclaimer +// and license in png.h + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <windows.h> + +void PngFileInitialize (HWND hwnd) ; +BOOL PngFileOpenDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; +BOOL PngFileSaveDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; + +BOOL PngLoadImage (PTSTR pstrFileName, png_byte **ppbImageData, + int *piWidth, int *piHeight, int *piChannels, png_color *pBkgColor); +BOOL PngSaveImage (PTSTR pstrFileName, png_byte *pDiData, + int iWidth, int iHeight, png_color BkgColor); + +#ifndef PNG_STDIO_SUPPORTED +static void png_read_data(png_structp png_ptr, png_bytep data, png_size_t length); +static void png_write_data(png_structp png_ptr, png_bytep data, png_size_t length); +static void png_flush(png_structp png_ptr); +#endif + diff --git a/cocos2dx/platform/third_party/linux/libpng/cexcept.h b/cocos2dx/platform/third_party/linux/libpng/cexcept.h new file mode 100644 index 0000000000..5f45d76975 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/cexcept.h @@ -0,0 +1,248 @@ +/*=== +cexcept.h 2.0.1 (2008-Jul-19-Sat) +http://www.nicemice.net/cexcept/ +Adam M. Costello +http://www.nicemice.net/amc/ + +An interface for exception-handling in ANSI C (C89 and subsequent ISO +standards), developed jointly with Cosmin Truta. + + Copyright (c) 2000-2008 Adam M. Costello and Cosmin Truta. + This software may be modified only if its author and version + information is updated accurately, and may be redistributed + only if accompanied by this unaltered notice. Subject to those + restrictions, permission is granted to anyone to do anything + with this software. The copyright holders make no guarantees + regarding this software, and are not responsible for any damage + resulting from its use. + +The cexcept interface is not compatible with and cannot interact +with system exceptions (like division by zero or memory segmentation +violation), compiler-generated exceptions (like C++ exceptions), or +other exception-handling interfaces. + +When using this interface across multiple .c files, do not include +this header file directly. Instead, create a wrapper header file that +includes this header file and then invokes the define_exception_type +macro (see below). The .c files should then include that header file. + +The interface consists of one type, one well-known name, and six macros. + + +define_exception_type(type_name); + + This macro is used like an external declaration. It specifies + the type of object that gets copied from the exception thrower to + the exception catcher. The type_name can be any type that can be + assigned to, that is, a non-constant arithmetic type, struct, union, + or pointer. Examples: + + define_exception_type(int); + + enum exception { out_of_memory, bad_arguments, disk_full }; + define_exception_type(enum exception); + + struct exception { int code; const char *msg; }; + define_exception_type(struct exception); + + Because throwing an exception causes the object to be copied (not + just once, but twice), programmers may wish to consider size when + choosing the exception type. + + +struct exception_context; + + This type may be used after the define_exception_type() macro has + been invoked. A struct exception_context must be known to both + the thrower and the catcher. It is expected that there be one + context for each thread that uses exceptions. It would certainly + be dangerous for multiple threads to access the same context. + One thread can use multiple contexts, but that is likely to be + confusing and not typically useful. The application can allocate + this structure in any way it pleases--automatic, static, or dynamic. + The application programmer should pretend not to know the structure + members, which are subject to change. + + +struct exception_context *the_exception_context; + + The Try/Catch and Throw statements (described below) implicitly + refer to a context, using the name the_exception_context. It is + the application's responsibility to make sure that this name yields + the address of a mutable (non-constant) struct exception_context + wherever those statements are used. Subject to that constraint, the + application may declare a variable of this name anywhere it likes + (inside a function, in a parameter list, or externally), and may + use whatever storage class specifiers (static, extern, etc) or type + qualifiers (const, volatile, etc) it likes. Examples: + + static struct exception_context + * const the_exception_context = &foo; + + { struct exception_context *the_exception_context = bar; ... } + + int blah(struct exception_context *the_exception_context, ...); + + extern struct exception_context the_exception_context[1]; + + The last example illustrates a trick that avoids creating a pointer + object separate from the structure object. + + The name could even be a macro, for example: + + struct exception_context ec_array[numthreads]; + #define the_exception_context (ec_array + thread_id) + + Be aware that the_exception_context is used several times by the + Try/Catch/Throw macros, so it shouldn't be expensive or have side + effects. The expansion must be a drop-in replacement for an + identifier, so it's safest to put parentheses around it. + + +void init_exception_context(struct exception_context *ec); + + For context structures allocated statically (by an external + definition or using the "static" keyword), the implicit + initialization to all zeros is sufficient, but contexts allocated + by other means must be initialized using this macro before they + are used by a Try/Catch statement. It does no harm to initialize + a context more than once (by using this macro on a statically + allocated context, or using this macro twice on the same context), + but a context must not be re-initialized after it has been used by a + Try/Catch statement. + + +Try statement +Catch (expression) statement + + The Try/Catch/Throw macros are capitalized in order to avoid + confusion with the C++ keywords, which have subtly different + semantics. + + A Try/Catch statement has a syntax similar to an if/else statement, + except that the parenthesized expression goes after the second + keyword rather than the first. As with if/else, there are two + clauses, each of which may be a simple statement ending with a + semicolon or a brace-enclosed compound statement. But whereas + the else clause is optional, the Catch clause is required. The + expression must be a modifiable lvalue (something capable of being + assigned to) of the same type (disregarding type qualifiers) that + was passed to define_exception_type(). + + If a Throw that uses the same exception context as the Try/Catch is + executed within the Try clause (typically within a function called + by the Try clause), and the exception is not caught by a nested + Try/Catch statement, then a copy of the exception will be assigned + to the expression, and control will jump to the Catch clause. If no + such Throw is executed, then the assignment is not performed, and + the Catch clause is not executed. + + The expression is not evaluated unless and until the exception is + caught, which is significant if it has side effects, for example: + + Try foo(); + Catch (p[++i].e) { ... } + + IMPORTANT: Jumping into or out of a Try clause (for example via + return, break, continue, goto, longjmp) is forbidden--the compiler + will not complain, but bad things will happen at run-time. Jumping + into or out of a Catch clause is okay, and so is jumping around + inside a Try clause. In many cases where one is tempted to return + from a Try clause, it will suffice to use Throw, and then return + from the Catch clause. Another option is to set a flag variable and + use goto to jump to the end of the Try clause, then check the flag + after the Try/Catch statement. + + IMPORTANT: The values of any non-volatile automatic variables + changed within the Try clause are undefined after an exception is + caught. Therefore, variables modified inside the Try block whose + values are needed later outside the Try block must either use static + storage or be declared with the "volatile" type qualifier. + + +Throw expression; + + A Throw statement is very much like a return statement, except that + the expression is required. Whereas return jumps back to the place + where the current function was called, Throw jumps back to the Catch + clause of the innermost enclosing Try clause. The expression must + be compatible with the type passed to define_exception_type(). The + exception must be caught, otherwise the program may crash. + + Slight limitation: If the expression is a comma-expression, it must + be enclosed in parentheses. + + +Try statement +Catch_anonymous statement + + When the value of the exception is not needed, a Try/Catch statement + can use Catch_anonymous instead of Catch (expression). + + +Everything below this point is for the benefit of the compiler. The +application programmer should pretend not to know any of it, because it +is subject to change. + +===*/ + + +#ifndef CEXCEPT_H +#define CEXCEPT_H + + +#include <setjmp.h> + +#define define_exception_type(etype) \ +struct exception_context { \ + jmp_buf *penv; \ + int caught; \ + volatile struct { etype etmp; } v; \ +} + +/* etmp must be volatile because the application might use automatic */ +/* storage for the_exception_context, and etmp is modified between */ +/* the calls to setjmp() and longjmp(). A wrapper struct is used to */ +/* avoid warnings about a duplicate volatile qualifier in case etype */ +/* already includes it. */ + +#define init_exception_context(ec) ((void)((ec)->penv = 0)) + +#define Try \ + { \ + jmp_buf *exception__prev, exception__env; \ + exception__prev = the_exception_context->penv; \ + the_exception_context->penv = &exception__env; \ + if (setjmp(exception__env) == 0) { \ + do + +#define exception__catch(action) \ + while (the_exception_context->caught = 0, \ + the_exception_context->caught); \ + } \ + else { \ + the_exception_context->caught = 1; \ + } \ + the_exception_context->penv = exception__prev; \ + } \ + if (!the_exception_context->caught || action) { } \ + else + +#define Catch(e) exception__catch(((e) = the_exception_context->v.etmp, 0)) +#define Catch_anonymous exception__catch(0) + +/* Try ends with do, and Catch begins with while(0) and ends with */ +/* else, to ensure that Try/Catch syntax is similar to if/else */ +/* syntax. */ +/* */ +/* The 0 in while(0) is expressed as x=0,x in order to appease */ +/* compilers that warn about constant expressions inside while(). */ +/* Most compilers should still recognize that the condition is always */ +/* false and avoid generating code for it. */ + +#define Throw \ + for (;; longjmp(*the_exception_context->penv, 1)) \ + the_exception_context->v.etmp = + + +#endif /* CEXCEPT_H */ diff --git a/cocos2dx/platform/third_party/linux/libpng/config.h b/cocos2dx/platform/third_party/linux/libpng/config.h new file mode 100644 index 0000000000..1651f7a5ab --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/config.h @@ -0,0 +1,87 @@ +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the <dlfcn.h> header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the <inttypes.h> header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `m' library (-lm). */ +#define HAVE_LIBM 1 + +/* Define to 1 if you have the `z' library (-lz). */ +#define HAVE_LIBZ 1 + +/* Define to 1 if you have the <malloc.h> header file. */ +#define HAVE_MALLOC_H 1 + +/* Define to 1 if you have the <memory.h> header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the `memset' function. */ +#define HAVE_MEMSET 1 + +/* Define to 1 if you have the `pow' function. */ +/* #undef HAVE_POW */ + +/* Define to 1 if you have the <stdint.h> header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the <stdlib.h> header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the <strings.h> header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the <string.h> header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the <sys/types.h> header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the <unistd.h> header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#define LT_OBJDIR ".libs/" + +/* Name of package */ +#define PACKAGE "libpng" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "png-mng-implement@lists.sourceforge.net" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "libpng" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "libpng 1.4.8" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "libpng" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.4.8" + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define to 1 if your <sys/time.h> declares `struct tm'. */ +/* #undef TM_IN_SYS_TIME */ + +/* Version number of package */ +#define VERSION "1.4.8" + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to `unsigned int' if <sys/types.h> does not define. */ +/* #undef size_t */ diff --git a/cocos2dx/platform/third_party/linux/libpng/png.h.REMOVED.git-id b/cocos2dx/platform/third_party/linux/libpng/png.h.REMOVED.git-id new file mode 100644 index 0000000000..cc27b03812 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/png.h.REMOVED.git-id @@ -0,0 +1 @@ +bb7f85fa08c6f988ed3ee571530ced66cb95cd0a \ No newline at end of file diff --git a/cocos2dx/platform/third_party/linux/libpng/pngconf.h b/cocos2dx/platform/third_party/linux/libpng/pngconf.h new file mode 100644 index 0000000000..cff27729c3 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/pngconf.h @@ -0,0 +1,1552 @@ + +/* pngconf.h - machine configurable file for libpng + * + * libpng version 1.4.8 - July 7, 2011 + * For conditions of distribution and use, see copyright notice in png.h + * Copyright (c) 1998-2011 Glenn Randers-Pehrson + * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) + * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) + * + * This code is released under the libpng license. + * For conditions of distribution and use, see the disclaimer + * and license in png.h + * + */ + +/* Any machine specific code is near the front of this file, so if you + * are configuring libpng for a machine, you may want to read the section + * starting here down to where it starts to typedef png_color, png_text, + * and png_info. + */ + +#ifndef PNGCONF_H +#define PNGCONF_H + +#ifndef PNG_NO_LIMITS_H +# include <limits.h> +#endif + +/* Added at libpng-1.2.9 */ + +/* config.h is created by and PNG_CONFIGURE_LIBPNG is set by the "configure" + * script. + */ +#ifdef PNG_CONFIGURE_LIBPNG +# ifdef HAVE_CONFIG_H +# include "config.h" +# endif +#endif + +/* + * Added at libpng-1.2.8 + * + * PNG_USER_CONFIG has to be defined on the compiler command line. This + * includes the resource compiler for Windows DLL configurations. + */ +#ifdef PNG_USER_CONFIG +# include "pngusr.h" +# ifndef PNG_USER_PRIVATEBUILD +# define PNG_USER_PRIVATEBUILD +# endif +#endif + +/* + * If you create a private DLL you should define in "pngusr.h" the following: + * #define PNG_USER_PRIVATEBUILD <Describes by whom and why this version of + * the DLL was built> + * e.g. #define PNG_USER_PRIVATEBUILD "Build by MyCompany for xyz reasons." + * #define PNG_USER_DLLFNAME_POSTFIX <two-letter postfix that serve to + * distinguish your DLL from those of the official release. These + * correspond to the trailing letters that come after the version + * number and must match your private DLL name> + * e.g. // private DLL "libpng14gx.dll" + * #define PNG_USER_DLLFNAME_POSTFIX "gx" + * + * The following macros are also at your disposal if you want to complete the + * DLL VERSIONINFO structure. + * - PNG_USER_VERSIONINFO_COMMENTS + * - PNG_USER_VERSIONINFO_COMPANYNAME + * - PNG_USER_VERSIONINFO_LEGALTRADEMARKS + */ + +#ifdef __STDC__ +# ifdef SPECIALBUILD +# pragma message("PNG_LIBPNG_SPECIALBUILD (and deprecated SPECIALBUILD)\ + are now LIBPNG reserved macros. Use PNG_USER_PRIVATEBUILD instead.") +# endif + +# ifdef PRIVATEBUILD +# pragma message("PRIVATEBUILD is deprecated.\ + Use PNG_USER_PRIVATEBUILD instead.") +# define PNG_USER_PRIVATEBUILD PRIVATEBUILD +# endif +#endif /* __STDC__ */ + +/* End of material added to libpng-1.2.8 */ + +/* Added at libpng-1.4.6 */ +#ifndef PNG_UNUSED +/* Unused formal parameter warnings are silenced using the following macro + * which is expected to have no bad effects on performance (optimizing + * compilers will probably remove it entirely). Note that if you replace + * it with something other than whitespace, you must include the terminating + * semicolon. + */ +# define PNG_UNUSED(param) (void)param; +#endif +/* End of material added to libpng-1.4.6 */ + +#ifndef PNG_VERSION_INFO_ONLY + +/* This is the size of the compression buffer, and thus the size of + * an IDAT chunk. Make this whatever size you feel is best for your + * machine. One of these will be allocated per png_struct. When this + * is full, it writes the data to the disk, and does some other + * calculations. Making this an extremely small size will slow + * the library down, but you may want to experiment to determine + * where it becomes significant, if you are concerned with memory + * usage. Note that zlib allocates at least 32Kb also. For readers, + * this describes the size of the buffer available to read the data in. + * Unless this gets smaller than the size of a row (compressed), + * it should not make much difference how big this is. + */ + +#ifndef PNG_ZBUF_SIZE +# define PNG_ZBUF_SIZE 8192 +#endif + +/* Enable if you want a write-only libpng */ + +#ifndef PNG_NO_READ_SUPPORTED +# define PNG_READ_SUPPORTED +#endif + +/* Enable if you want a read-only libpng */ + +#ifndef PNG_NO_WRITE_SUPPORTED +# define PNG_WRITE_SUPPORTED +#endif + +/* Enabled in 1.4.0. */ +#ifdef PNG_ALLOW_BENIGN_ERRORS +# define png_benign_error png_warning +# define png_chunk_benign_error png_chunk_warning +#else +# ifndef PNG_BENIGN_ERRORS_SUPPORTED +# define png_benign_error png_error +# define png_chunk_benign_error png_chunk_error +# endif +#endif + +/* Added at libpng version 1.4.0 */ +#if !defined(PNG_NO_WARNINGS) && !defined(PNG_WARNINGS_SUPPORTED) +# define PNG_WARNINGS_SUPPORTED +#endif + +/* Added at libpng version 1.4.0 */ +#if !defined(PNG_NO_ERROR_TEXT) && !defined(PNG_ERROR_TEXT_SUPPORTED) +# define PNG_ERROR_TEXT_SUPPORTED +#endif + +/* Added at libpng version 1.4.0 */ +#if !defined(PNG_NO_CHECK_cHRM) && !defined(PNG_CHECK_cHRM_SUPPORTED) +# define PNG_CHECK_cHRM_SUPPORTED +#endif + +/* Added at libpng version 1.4.0 */ +#if !defined(PNG_NO_ALIGNED_MEMORY) && !defined(PNG_ALIGNED_MEMORY_SUPPORTED) +# define PNG_ALIGNED_MEMORY_SUPPORTED +#endif + +/* Enabled by default in 1.2.0. You can disable this if you don't need to + support PNGs that are embedded in MNG datastreams */ +#ifndef PNG_NO_MNG_FEATURES +# ifndef PNG_MNG_FEATURES_SUPPORTED +# define PNG_MNG_FEATURES_SUPPORTED +# endif +#endif + +/* Added at libpng version 1.4.0 */ +#ifndef PNG_NO_FLOATING_POINT_SUPPORTED +# ifndef PNG_FLOATING_POINT_SUPPORTED +# define PNG_FLOATING_POINT_SUPPORTED +# endif +#endif + +/* Added at libpng-1.4.0beta49 for testing (this test is no longer used + in libpng and png_calloc() is always present) + */ +#define PNG_CALLOC_SUPPORTED + +/* If you are running on a machine where you cannot allocate more + * than 64K of memory at once, uncomment this. While libpng will not + * normally need that much memory in a chunk (unless you load up a very + * large file), zlib needs to know how big of a chunk it can use, and + * libpng thus makes sure to check any memory allocation to verify it + * will fit into memory. +#define PNG_MAX_MALLOC_64K + */ +#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K) +# define PNG_MAX_MALLOC_64K +#endif + +/* Special munging to support doing things the 'cygwin' way: + * 'Normal' png-on-win32 defines/defaults: + * PNG_BUILD_DLL -- building dll + * PNG_USE_DLL -- building an application, linking to dll + * (no define) -- building static library, or building an + * application and linking to the static lib + * 'Cygwin' defines/defaults: + * PNG_BUILD_DLL -- (ignored) building the dll + * (no define) -- (ignored) building an application, linking to the dll + * PNG_STATIC -- (ignored) building the static lib, or building an + * application that links to the static lib. + * ALL_STATIC -- (ignored) building various static libs, or building an + * application that links to the static libs. + * Thus, + * a cygwin user should define either PNG_BUILD_DLL or PNG_STATIC, and + * this bit of #ifdefs will define the 'correct' config variables based on + * that. If a cygwin user *wants* to define 'PNG_USE_DLL' that's okay, but + * unnecessary. + * + * Also, the precedence order is: + * ALL_STATIC (since we can't #undef something outside our namespace) + * PNG_BUILD_DLL + * PNG_STATIC + * (nothing) == PNG_USE_DLL + * + * CYGWIN (2002-01-20): The preceding is now obsolete. With the advent + * of auto-import in binutils, we no longer need to worry about + * __declspec(dllexport) / __declspec(dllimport) and friends. Therefore, + * we don't need to worry about PNG_STATIC or ALL_STATIC when it comes + * to __declspec() stuff. However, we DO need to worry about + * PNG_BUILD_DLL and PNG_STATIC because those change some defaults + * such as CONSOLE_IO. + */ +#ifdef __CYGWIN__ +# ifdef ALL_STATIC +# ifdef PNG_BUILD_DLL +# undef PNG_BUILD_DLL +# endif +# ifdef PNG_USE_DLL +# undef PNG_USE_DLL +# endif +# ifdef PNG_DLL +# undef PNG_DLL +# endif +# ifndef PNG_STATIC +# define PNG_STATIC +# endif +# else +# ifdef PNG_BUILD_DLL +# ifdef PNG_STATIC +# undef PNG_STATIC +# endif +# ifdef PNG_USE_DLL +# undef PNG_USE_DLL +# endif +# ifndef PNG_DLL +# define PNG_DLL +# endif +# else +# ifdef PNG_STATIC +# ifdef PNG_USE_DLL +# undef PNG_USE_DLL +# endif +# ifdef PNG_DLL +# undef PNG_DLL +# endif +# else +# ifndef PNG_USE_DLL +# define PNG_USE_DLL +# endif +# ifndef PNG_DLL +# define PNG_DLL +# endif +# endif +# endif +# endif +#endif + +/* This protects us against compilers that run on a windowing system + * and thus don't have or would rather us not use the stdio types: + * stdin, stdout, and stderr. The only one currently used is stderr + * in png_error() and png_warning(). #defining PNG_NO_CONSOLE_IO will + * prevent these from being compiled and used. #defining PNG_NO_STDIO + * will also prevent these, plus will prevent the entire set of stdio + * macros and functions (FILE *, printf, etc.) from being compiled and used, + * unless (PNG_DEBUG > 0) has been #defined. + * + * #define PNG_NO_CONSOLE_IO + * #define PNG_NO_STDIO + */ + +#ifdef _WIN32_WCE +# define PNG_NO_CONSOLE_IO +# define PNG_NO_STDIO +# define PNG_NO_TIME_RFC1123 +# ifdef PNG_DEBUG +# undef PNG_DEBUG +# endif +#endif + +#if !defined(PNG_NO_STDIO) && !defined(PNG_STDIO_SUPPORTED) +# define PNG_STDIO_SUPPORTED +#endif + +#ifdef PNG_BUILD_DLL +# if !defined(PNG_CONSOLE_IO_SUPPORTED) && !defined(PNG_NO_CONSOLE_IO) +# define PNG_NO_CONSOLE_IO +# endif +#endif + +# ifdef PNG_NO_STDIO +# ifndef PNG_NO_CONSOLE_IO +# define PNG_NO_CONSOLE_IO +# endif +# ifdef PNG_DEBUG +# if (PNG_DEBUG > 0) +# include <stdio.h> +# endif +# endif +# else +# include <stdio.h> +# endif + +#if !(defined PNG_NO_CONSOLE_IO) && !defined(PNG_CONSOLE_IO_SUPPORTED) +# define PNG_CONSOLE_IO_SUPPORTED +#endif + +/* This macro protects us against machines that don't have function + * prototypes (ie K&R style headers). If your compiler does not handle + * function prototypes, define this macro and use the included ansi2knr. + * I've always been able to use _NO_PROTO as the indicator, but you may + * need to drag the empty declaration out in front of here, or change the + * ifdef to suit your own needs. + */ +#ifndef PNGARG + +#ifdef OF /* zlib prototype munger */ +# define PNGARG(arglist) OF(arglist) +#else + +#ifdef _NO_PROTO +# define PNGARG(arglist) () +#else +# define PNGARG(arglist) arglist +#endif /* _NO_PROTO */ + +#endif /* OF */ + +#endif /* PNGARG */ + +/* Try to determine if we are compiling on a Mac. Note that testing for + * just __MWERKS__ is not good enough, because the Codewarrior is now used + * on non-Mac platforms. + */ +#ifndef MACOS +# if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \ + defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC) +# define MACOS +# endif +#endif + +/* Enough people need this for various reasons to include it here */ +#if !defined(MACOS) && !defined(RISCOS) +# include <sys/types.h> +#endif + +/* PNG_SETJMP_NOT_SUPPORTED and PNG_NO_SETJMP_SUPPORTED are deprecated. */ +#if !defined(PNG_NO_SETJMP) && \ + !defined(PNG_SETJMP_NOT_SUPPORTED) && !defined(PNG_NO_SETJMP_SUPPORTED) +# define PNG_SETJMP_SUPPORTED +#endif + +#ifdef PNG_SETJMP_SUPPORTED +/* This is an attempt to force a single setjmp behaviour on Linux. If + * the X config stuff didn't define _BSD_SOURCE we wouldn't need this. + * + * You can bypass this test if you know that your application uses exactly + * the same setjmp.h that was included when libpng was built. Only define + * PNG_SKIP_SETJMP_CHECK while building your application, prior to the + * application's '#include "png.h"'. Don't define PNG_SKIP_SETJMP_CHECK + * while building a separate libpng library for general use. + */ + +# ifndef PNG_SKIP_SETJMP_CHECK +# ifdef __linux__ +# ifdef _BSD_SOURCE +# define PNG_SAVE_BSD_SOURCE +# undef _BSD_SOURCE +# endif +# ifdef _SETJMP_H + /* If you encounter a compiler error here, see the explanation + * near the end of INSTALL. + */ + __pngconf.h__ in libpng already includes setjmp.h; + __dont__ include it again.; +# endif +# endif /* __linux__ */ +# endif /* PNG_SKIP_SETJMP_CHECK */ + + /* Include setjmp.h for error handling */ +# include <setjmp.h> + +# ifdef __linux__ +# ifdef PNG_SAVE_BSD_SOURCE +# ifdef _BSD_SOURCE +# undef _BSD_SOURCE +# endif +# define _BSD_SOURCE +# undef PNG_SAVE_BSD_SOURCE +# endif +# endif /* __linux__ */ +#endif /* PNG_SETJMP_SUPPORTED */ + +#ifdef BSD +# include <strings.h> +#else +# include <string.h> +#endif + +/* Other defines for things like memory and the like can go here. */ + +/* This controls how fine the quantizing gets. As this allocates + * a largish chunk of memory (32K), those who are not as concerned + * with quantizing quality can decrease some or all of these. + */ + +/* Prior to libpng-1.4.2, these were PNG_DITHER_*_BITS + * These migration aids will be removed from libpng-1.5.0. + */ +#ifdef PNG_DITHER_RED_BITS +# define PNG_QUANTIZE_RED_BITS PNG_DITHER_RED_BITS +#endif +#ifdef PNG_DITHER_GREEN_BITS +# define PNG_QUANTIZE_GREEN_BITS PNG_DITHER_GREEN_BITS +#endif +#ifdef PNG_DITHER_BLUE_BITS +# define PNG_QUANTIZE_BLUE_BITS PNG_DITHER_BLUE_BITS +#endif + +#ifndef PNG_QUANTIZE_RED_BITS +# define PNG_QUANTIZE_RED_BITS 5 +#endif +#ifndef PNG_QUANTIZE_GREEN_BITS +# define PNG_QUANTIZE_GREEN_BITS 5 +#endif +#ifndef PNG_QUANTIZE_BLUE_BITS +# define PNG_QUANTIZE_BLUE_BITS 5 +#endif + +/* This controls how fine the gamma correction becomes when you + * are only interested in 8 bits anyway. Increasing this value + * results in more memory being used, and more pow() functions + * being called to fill in the gamma tables. Don't set this value + * less then 8, and even that may not work (I haven't tested it). + */ + +#ifndef PNG_MAX_GAMMA_8 +# define PNG_MAX_GAMMA_8 11 +#endif + +/* This controls how much a difference in gamma we can tolerate before + * we actually start doing gamma conversion. + */ +#ifndef PNG_GAMMA_THRESHOLD +# define PNG_GAMMA_THRESHOLD 0.05 +#endif + +/* The following uses const char * instead of char * for error + * and warning message functions, so some compilers won't complain. + * If you do not want to use const, define PNG_NO_CONST. + */ + +#ifndef PNG_CONST +# ifndef PNG_NO_CONST +# define PNG_CONST const +# else +# define PNG_CONST +# endif +#endif + +/* The following defines give you the ability to remove code from the + * library that you will not be using. I wish I could figure out how to + * automate this, but I can't do that without making it seriously hard + * on the users. So if you are not using an ability, change the #define + * to an #undef, or pass in PNG_NO_feature and that part of the library + * will not be compiled. + + * If your linker can't find a function, you may want to make sure the + * ability is defined here. Some of these depend upon some others being + * defined. I haven't figured out all the interactions here, so you may + * have to experiment awhile to get everything to compile. If you are + * creating or using a shared library, you probably shouldn't touch this, + * as it will affect the size of the structures, and this will cause bad + * things to happen if the library and/or application ever change. + */ + +/* Any features you will not be using can be undef'ed here */ + +/* GR-P, 0.96a: Set "*TRANSFORMS_SUPPORTED as default but allow user + * to turn it off with PNG_NO_READ|WRITE_TRANSFORMS on the compile line, + * then pick and choose which ones to define without having to edit this + * file. It is safe to use the PNG_NO_READ|WRITE_TRANSFORMS + * if you only want to have a png-compliant reader/writer but don't need + * any of the extra transformations. This saves about 80 kbytes in a + * typical installation of the library. (PNG_NO_* form added in version + * 1.0.1c, for consistency; PNG_*_TRANSFORMS_NOT_SUPPORTED deprecated in + * 1.4.0) + */ + +/* Ignore attempt to turn off both floating and fixed point support */ +#if !defined(PNG_FLOATING_POINT_SUPPORTED) || \ + !defined(PNG_NO_FIXED_POINT_SUPPORTED) +# define PNG_FIXED_POINT_SUPPORTED +#endif + +#ifdef PNG_READ_SUPPORTED + +/* PNG_READ_TRANSFORMS_NOT_SUPPORTED is deprecated. */ +#if !defined(PNG_READ_TRANSFORMS_NOT_SUPPORTED) && \ + !defined(PNG_NO_READ_TRANSFORMS) +# define PNG_READ_TRANSFORMS_SUPPORTED +#endif + +#ifdef PNG_READ_TRANSFORMS_SUPPORTED +# ifndef PNG_NO_READ_EXPAND +# define PNG_READ_EXPAND_SUPPORTED +# endif +# ifndef PNG_NO_READ_SHIFT +# define PNG_READ_SHIFT_SUPPORTED +# endif +# ifndef PNG_NO_READ_PACK +# define PNG_READ_PACK_SUPPORTED +# endif +# ifndef PNG_NO_READ_BGR +# define PNG_READ_BGR_SUPPORTED +# endif +# ifndef PNG_NO_READ_SWAP +# define PNG_READ_SWAP_SUPPORTED +# endif +# ifndef PNG_NO_READ_PACKSWAP +# define PNG_READ_PACKSWAP_SUPPORTED +# endif +# ifndef PNG_NO_READ_INVERT +# define PNG_READ_INVERT_SUPPORTED +# endif +# ifndef PNG_NO_READ_QUANTIZE + /* Prior to libpng-1.4.0 this was PNG_READ_DITHER_SUPPORTED */ +# ifndef PNG_NO_READ_DITHER /* This migration aid will be removed */ +# define PNG_READ_QUANTIZE_SUPPORTED +# endif +# endif +# ifndef PNG_NO_READ_BACKGROUND +# define PNG_READ_BACKGROUND_SUPPORTED +# endif +# ifndef PNG_NO_READ_16_TO_8 +# define PNG_READ_16_TO_8_SUPPORTED +# endif +# ifndef PNG_NO_READ_FILLER +# define PNG_READ_FILLER_SUPPORTED +# endif +# ifndef PNG_NO_READ_GAMMA +# define PNG_READ_GAMMA_SUPPORTED +# endif +# ifndef PNG_NO_READ_GRAY_TO_RGB +# define PNG_READ_GRAY_TO_RGB_SUPPORTED +# endif +# ifndef PNG_NO_READ_SWAP_ALPHA +# define PNG_READ_SWAP_ALPHA_SUPPORTED +# endif +# ifndef PNG_NO_READ_INVERT_ALPHA +# define PNG_READ_INVERT_ALPHA_SUPPORTED +# endif +# ifndef PNG_NO_READ_STRIP_ALPHA +# define PNG_READ_STRIP_ALPHA_SUPPORTED +# endif +# ifndef PNG_NO_READ_USER_TRANSFORM +# define PNG_READ_USER_TRANSFORM_SUPPORTED +# endif +# ifndef PNG_NO_READ_RGB_TO_GRAY +# define PNG_READ_RGB_TO_GRAY_SUPPORTED +# endif +#endif /* PNG_READ_TRANSFORMS_SUPPORTED */ + +/* PNG_PROGRESSIVE_READ_NOT_SUPPORTED is deprecated. */ +#if !defined(PNG_NO_PROGRESSIVE_READ) && \ + !defined(PNG_PROGRESSIVE_READ_NOT_SUPPORTED) /* if you don't do progressive */ +# define PNG_PROGRESSIVE_READ_SUPPORTED /* reading. This is not talking */ +#endif /* about interlacing capability! You'll */ + /* still have interlacing unless you change the following define: */ + +#define PNG_READ_INTERLACING_SUPPORTED /* required for PNG-compliant decoders */ + +/* PNG_NO_SEQUENTIAL_READ_SUPPORTED is deprecated. */ +#if !defined(PNG_NO_SEQUENTIAL_READ) && \ + !defined(PNG_SEQUENTIAL_READ_SUPPORTED) && \ + !defined(PNG_NO_SEQUENTIAL_READ_SUPPORTED) +# define PNG_SEQUENTIAL_READ_SUPPORTED +#endif + +#ifndef PNG_NO_READ_COMPOSITE_NODIV +# ifndef PNG_NO_READ_COMPOSITED_NODIV /* libpng-1.0.x misspelling */ +# define PNG_READ_COMPOSITE_NODIV_SUPPORTED /* well tested on Intel, SGI */ +# endif +#endif + +#if !defined(PNG_NO_GET_INT_32) || defined(PNG_READ_oFFS_SUPPORTED) || \ + defined(PNG_READ_pCAL_SUPPORTED) +# ifndef PNG_GET_INT_32_SUPPORTED +# define PNG_GET_INT_32_SUPPORTED +# endif +#endif + +#endif /* PNG_READ_SUPPORTED */ + +#ifdef PNG_WRITE_SUPPORTED + +/* PNG_WRITE_TRANSFORMS_NOT_SUPPORTED is deprecated. */ +#if !defined(PNG_WRITE_TRANSFORMS_NOT_SUPPORTED) && \ + !defined(PNG_NO_WRITE_TRANSFORMS) +# define PNG_WRITE_TRANSFORMS_SUPPORTED +#endif + +#ifdef PNG_WRITE_TRANSFORMS_SUPPORTED +# ifndef PNG_NO_WRITE_SHIFT +# define PNG_WRITE_SHIFT_SUPPORTED +# endif +# ifndef PNG_NO_WRITE_PACK +# define PNG_WRITE_PACK_SUPPORTED +# endif +# ifndef PNG_NO_WRITE_BGR +# define PNG_WRITE_BGR_SUPPORTED +# endif +# ifndef PNG_NO_WRITE_SWAP +# define PNG_WRITE_SWAP_SUPPORTED +# endif +# ifndef PNG_NO_WRITE_PACKSWAP +# define PNG_WRITE_PACKSWAP_SUPPORTED +# endif +# ifndef PNG_NO_WRITE_INVERT +# define PNG_WRITE_INVERT_SUPPORTED +# endif +# ifndef PNG_NO_WRITE_FILLER +# define PNG_WRITE_FILLER_SUPPORTED /* same as WRITE_STRIP_ALPHA */ +# endif +# ifndef PNG_NO_WRITE_SWAP_ALPHA +# define PNG_WRITE_SWAP_ALPHA_SUPPORTED +# endif +# ifndef PNG_NO_WRITE_INVERT_ALPHA +# define PNG_WRITE_INVERT_ALPHA_SUPPORTED +# endif +# ifndef PNG_NO_WRITE_USER_TRANSFORM +# define PNG_WRITE_USER_TRANSFORM_SUPPORTED +# endif +#endif /* PNG_WRITE_TRANSFORMS_SUPPORTED */ + +#if !defined(PNG_NO_WRITE_INTERLACING_SUPPORTED) && \ + !defined(PNG_WRITE_INTERLACING_SUPPORTED) + /* This is not required for PNG-compliant encoders, but can cause + * trouble if left undefined + */ +# define PNG_WRITE_INTERLACING_SUPPORTED +#endif + +#if !defined(PNG_NO_WRITE_WEIGHTED_FILTER) && \ + !defined(PNG_WRITE_WEIGHTED_FILTER) && \ + defined(PNG_FLOATING_POINT_SUPPORTED) +# define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED +#endif + +#ifndef PNG_NO_WRITE_FLUSH +# define PNG_WRITE_FLUSH_SUPPORTED +#endif + +#if !defined(PNG_NO_SAVE_INT_32) || defined(PNG_WRITE_oFFS_SUPPORTED) || \ + defined(PNG_WRITE_pCAL_SUPPORTED) +# ifndef PNG_SAVE_INT_32_SUPPORTED +# define PNG_SAVE_INT_32_SUPPORTED +# endif +#endif + +#endif /* PNG_WRITE_SUPPORTED */ + +#define PNG_NO_ERROR_NUMBERS + +#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \ + defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) +# ifndef PNG_NO_USER_TRANSFORM_PTR +# define PNG_USER_TRANSFORM_PTR_SUPPORTED +# endif +#endif + +#if defined(PNG_STDIO_SUPPORTED) && !defined(PNG_TIME_RFC1123_SUPPORTED) +# define PNG_TIME_RFC1123_SUPPORTED +#endif + +/* This adds extra functions in pngget.c for accessing data from the + * info pointer (added in version 0.99) + * png_get_image_width() + * png_get_image_height() + * png_get_bit_depth() + * png_get_color_type() + * png_get_compression_type() + * png_get_filter_type() + * png_get_interlace_type() + * png_get_pixel_aspect_ratio() + * png_get_pixels_per_meter() + * png_get_x_offset_pixels() + * png_get_y_offset_pixels() + * png_get_x_offset_microns() + * png_get_y_offset_microns() + */ +#if !defined(PNG_NO_EASY_ACCESS) && !defined(PNG_EASY_ACCESS_SUPPORTED) +# define PNG_EASY_ACCESS_SUPPORTED +#endif + +/* Added at libpng-1.2.0 */ +#if !defined(PNG_NO_USER_MEM) && !defined(PNG_USER_MEM_SUPPORTED) +# define PNG_USER_MEM_SUPPORTED +#endif + +/* Added at libpng-1.2.6 */ +#ifndef PNG_NO_SET_USER_LIMITS +# ifndef PNG_SET_USER_LIMITS_SUPPORTED +# define PNG_SET_USER_LIMITS_SUPPORTED +# endif + /* Feature added at libpng-1.4.0, this flag added at 1.4.1 */ +# ifndef PNG_SET_CHUNK_CACHE_LIMIT_SUPPORTED +# define PNG_SET_CHUNK_CACHE_LIMIT_SUPPORTED +# endif + /* Feature added at libpng-1.4.1, this flag added at 1.4.1 */ +# ifndef PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED +# define PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED +# endif +#endif + +/* Added at libpng-1.2.43 */ +#ifndef PNG_USER_LIMITS_SUPPORTED +# ifndef PNG_NO_USER_LIMITS +# define PNG_USER_LIMITS_SUPPORTED +# endif +#endif + +/* Added at libpng-1.0.16 and 1.2.6. To accept all valid PNGs no matter + * how large, set these two limits to 0x7fffffffL + */ +#ifndef PNG_USER_WIDTH_MAX +# define PNG_USER_WIDTH_MAX 1000000L +#endif +#ifndef PNG_USER_HEIGHT_MAX +# define PNG_USER_HEIGHT_MAX 1000000L +#endif + +/* Added at libpng-1.2.43. To accept all valid PNGs no matter + * how large, set these two limits to 0. + */ +#ifndef PNG_USER_CHUNK_CACHE_MAX +# define PNG_USER_CHUNK_CACHE_MAX 0 +#endif + +/* Added at libpng-1.2.43 */ +#ifndef PNG_USER_CHUNK_MALLOC_MAX +# define PNG_USER_CHUNK_MALLOC_MAX 0 +#endif + +/* Added at libpng-1.4.0 */ +#if !defined(PNG_NO_IO_STATE) && !defined(PNG_IO_STATE_SUPPORTED) +# define PNG_IO_STATE_SUPPORTED +#endif + +#ifndef PNG_LITERAL_SHARP +# define PNG_LITERAL_SHARP 0x23 +#endif +#ifndef PNG_LITERAL_LEFT_SQUARE_BRACKET +# define PNG_LITERAL_LEFT_SQUARE_BRACKET 0x5b +#endif +#ifndef PNG_LITERAL_RIGHT_SQUARE_BRACKET +# define PNG_LITERAL_RIGHT_SQUARE_BRACKET 0x5d +#endif +#ifndef PNG_STRING_NEWLINE +#define PNG_STRING_NEWLINE "\n" +#endif + +/* These are currently experimental features, define them if you want */ + +/* Very little testing */ +/* +#ifdef PNG_READ_SUPPORTED +# ifndef PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED +# define PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED +# endif +#endif +*/ + +/* This is only for PowerPC big-endian and 680x0 systems */ +/* some testing */ +/* +#ifndef PNG_READ_BIG_ENDIAN_SUPPORTED +# define PNG_READ_BIG_ENDIAN_SUPPORTED +#endif +*/ + +#if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS) +# define PNG_USE_READ_MACROS +#endif + +/* Buggy compilers (e.g., gcc 2.7.2.2) need PNG_NO_POINTER_INDEXING */ + +#if !defined(PNG_NO_POINTER_INDEXING) && \ + !defined(PNG_POINTER_INDEXING_SUPPORTED) +# define PNG_POINTER_INDEXING_SUPPORTED +#endif + + +/* Any chunks you are not interested in, you can undef here. The + * ones that allocate memory may be expecially important (hIST, + * tEXt, zTXt, tRNS, pCAL). Others will just save time and make png_info + * a bit smaller. + */ + +/* The size of the png_text structure changed in libpng-1.0.6 when + * iTXt support was added. iTXt support was turned off by default through + * libpng-1.2.x, to support old apps that malloc the png_text structure + * instead of calling png_set_text() and letting libpng malloc it. It + * was turned on by default in libpng-1.4.0. + */ + +/* PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED is deprecated. */ +#if defined(PNG_READ_SUPPORTED) && \ + !defined(PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED) && \ + !defined(PNG_NO_READ_ANCILLARY_CHUNKS) +# define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED +#endif + +/* PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED is deprecated. */ +#if defined(PNG_WRITE_SUPPORTED) && \ + !defined(PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED) && \ + !defined(PNG_NO_WRITE_ANCILLARY_CHUNKS) +# define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED +#endif + +#ifdef PNG_READ_ANCILLARY_CHUNKS_SUPPORTED + +#ifdef PNG_NO_READ_TEXT +# define PNG_NO_READ_iTXt +# define PNG_NO_READ_tEXt +# define PNG_NO_READ_zTXt +#endif + +#ifndef PNG_NO_READ_bKGD +# define PNG_READ_bKGD_SUPPORTED +# define PNG_bKGD_SUPPORTED +#endif +#ifndef PNG_NO_READ_cHRM +# define PNG_READ_cHRM_SUPPORTED +# define PNG_cHRM_SUPPORTED +#endif +#ifndef PNG_NO_READ_gAMA +# define PNG_READ_gAMA_SUPPORTED +# define PNG_gAMA_SUPPORTED +#endif +#ifndef PNG_NO_READ_hIST +# define PNG_READ_hIST_SUPPORTED +# define PNG_hIST_SUPPORTED +#endif +#ifndef PNG_NO_READ_iCCP +# define PNG_READ_iCCP_SUPPORTED +# define PNG_iCCP_SUPPORTED +#endif +#ifndef PNG_NO_READ_iTXt +# ifndef PNG_READ_iTXt_SUPPORTED +# define PNG_READ_iTXt_SUPPORTED +# endif +# ifndef PNG_iTXt_SUPPORTED +# define PNG_iTXt_SUPPORTED +# endif +#endif +#ifndef PNG_NO_READ_oFFs +# define PNG_READ_oFFs_SUPPORTED +# define PNG_oFFs_SUPPORTED +#endif +#ifndef PNG_NO_READ_pCAL +# define PNG_READ_pCAL_SUPPORTED +# define PNG_pCAL_SUPPORTED +#endif +#ifndef PNG_NO_READ_sCAL +# define PNG_READ_sCAL_SUPPORTED +# define PNG_sCAL_SUPPORTED +#endif +#ifndef PNG_NO_READ_pHYs +# define PNG_READ_pHYs_SUPPORTED +# define PNG_pHYs_SUPPORTED +#endif +#ifndef PNG_NO_READ_sBIT +# define PNG_READ_sBIT_SUPPORTED +# define PNG_sBIT_SUPPORTED +#endif +#ifndef PNG_NO_READ_sPLT +# define PNG_READ_sPLT_SUPPORTED +# define PNG_sPLT_SUPPORTED +#endif +#ifndef PNG_NO_READ_sRGB +# define PNG_READ_sRGB_SUPPORTED +# define PNG_sRGB_SUPPORTED +#endif +#ifndef PNG_NO_READ_tEXt +# define PNG_READ_tEXt_SUPPORTED +# define PNG_tEXt_SUPPORTED +#endif +#ifndef PNG_NO_READ_tIME +# define PNG_READ_tIME_SUPPORTED +# define PNG_tIME_SUPPORTED +#endif +#ifndef PNG_NO_READ_tRNS +# define PNG_READ_tRNS_SUPPORTED +# define PNG_tRNS_SUPPORTED +#endif +#ifndef PNG_NO_READ_zTXt +# define PNG_READ_zTXt_SUPPORTED +# define PNG_zTXt_SUPPORTED +#endif +#ifndef PNG_NO_READ_OPT_PLTE +# define PNG_READ_OPT_PLTE_SUPPORTED /* only affects support of the */ +#endif /* optional PLTE chunk in RGB and RGBA images */ +#if defined(PNG_READ_iTXt_SUPPORTED) || defined(PNG_READ_tEXt_SUPPORTED) || \ + defined(PNG_READ_zTXt_SUPPORTED) +# define PNG_READ_TEXT_SUPPORTED +# define PNG_TEXT_SUPPORTED +#endif + +#endif /* PNG_READ_ANCILLARY_CHUNKS_SUPPORTED */ + +#ifndef PNG_NO_READ_UNKNOWN_CHUNKS +# ifndef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED +# define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED +# endif +# ifndef PNG_UNKNOWN_CHUNKS_SUPPORTED +# define PNG_UNKNOWN_CHUNKS_SUPPORTED +# endif +# ifndef PNG_READ_USER_CHUNKS_SUPPORTED +# define PNG_READ_USER_CHUNKS_SUPPORTED +# endif +#endif +#ifndef PNG_NO_READ_USER_CHUNKS +# ifndef PNG_READ_USER_CHUNKS_SUPPORTED +# define PNG_READ_USER_CHUNKS_SUPPORTED +# endif +# ifndef PNG_USER_CHUNKS_SUPPORTED +# define PNG_USER_CHUNKS_SUPPORTED +# endif +#endif +#ifndef PNG_NO_HANDLE_AS_UNKNOWN +# ifndef PNG_HANDLE_AS_UNKNOWN_SUPPORTED +# define PNG_HANDLE_AS_UNKNOWN_SUPPORTED +# endif +#endif + +#ifdef PNG_WRITE_SUPPORTED +#ifdef PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED + +#ifdef PNG_NO_WRITE_TEXT +# define PNG_NO_WRITE_iTXt +# define PNG_NO_WRITE_tEXt +# define PNG_NO_WRITE_zTXt +#endif +#ifndef PNG_NO_WRITE_bKGD +# define PNG_WRITE_bKGD_SUPPORTED +# ifndef PNG_bKGD_SUPPORTED +# define PNG_bKGD_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_cHRM +# define PNG_WRITE_cHRM_SUPPORTED +# ifndef PNG_cHRM_SUPPORTED +# define PNG_cHRM_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_gAMA +# define PNG_WRITE_gAMA_SUPPORTED +# ifndef PNG_gAMA_SUPPORTED +# define PNG_gAMA_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_hIST +# define PNG_WRITE_hIST_SUPPORTED +# ifndef PNG_hIST_SUPPORTED +# define PNG_hIST_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_iCCP +# define PNG_WRITE_iCCP_SUPPORTED +# ifndef PNG_iCCP_SUPPORTED +# define PNG_iCCP_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_iTXt +# ifndef PNG_WRITE_iTXt_SUPPORTED +# define PNG_WRITE_iTXt_SUPPORTED +# endif +# ifndef PNG_iTXt_SUPPORTED +# define PNG_iTXt_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_oFFs +# define PNG_WRITE_oFFs_SUPPORTED +# ifndef PNG_oFFs_SUPPORTED +# define PNG_oFFs_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_pCAL +# define PNG_WRITE_pCAL_SUPPORTED +# ifndef PNG_pCAL_SUPPORTED +# define PNG_pCAL_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_sCAL +# define PNG_WRITE_sCAL_SUPPORTED +# ifndef PNG_sCAL_SUPPORTED +# define PNG_sCAL_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_pHYs +# define PNG_WRITE_pHYs_SUPPORTED +# ifndef PNG_pHYs_SUPPORTED +# define PNG_pHYs_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_sBIT +# define PNG_WRITE_sBIT_SUPPORTED +# ifndef PNG_sBIT_SUPPORTED +# define PNG_sBIT_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_sPLT +# define PNG_WRITE_sPLT_SUPPORTED +# ifndef PNG_sPLT_SUPPORTED +# define PNG_sPLT_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_sRGB +# define PNG_WRITE_sRGB_SUPPORTED +# ifndef PNG_sRGB_SUPPORTED +# define PNG_sRGB_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_tEXt +# define PNG_WRITE_tEXt_SUPPORTED +# ifndef PNG_tEXt_SUPPORTED +# define PNG_tEXt_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_tIME +# define PNG_WRITE_tIME_SUPPORTED +# ifndef PNG_tIME_SUPPORTED +# define PNG_tIME_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_tRNS +# define PNG_WRITE_tRNS_SUPPORTED +# ifndef PNG_tRNS_SUPPORTED +# define PNG_tRNS_SUPPORTED +# endif +#endif +#ifndef PNG_NO_WRITE_zTXt +# define PNG_WRITE_zTXt_SUPPORTED +# ifndef PNG_zTXt_SUPPORTED +# define PNG_zTXt_SUPPORTED +# endif +#endif +#if defined(PNG_WRITE_iTXt_SUPPORTED) || defined(PNG_WRITE_tEXt_SUPPORTED) || \ + defined(PNG_WRITE_zTXt_SUPPORTED) +# define PNG_WRITE_TEXT_SUPPORTED +# ifndef PNG_TEXT_SUPPORTED +# define PNG_TEXT_SUPPORTED +# endif +#endif + +#ifdef PNG_WRITE_tIME_SUPPORTED +# ifndef PNG_NO_CONVERT_tIME +# ifndef _WIN32_WCE +/* The "tm" structure is not supported on WindowsCE */ +# ifndef PNG_CONVERT_tIME_SUPPORTED +# define PNG_CONVERT_tIME_SUPPORTED +# endif +# endif +# endif +#endif + +#endif /* PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED */ + +#ifndef PNG_NO_WRITE_FILTER +# ifndef PNG_WRITE_FILTER_SUPPORTED +# define PNG_WRITE_FILTER_SUPPORTED +# endif +#endif + +#ifndef PNG_NO_WRITE_UNKNOWN_CHUNKS +# define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED +# ifndef PNG_UNKNOWN_CHUNKS_SUPPORTED +# define PNG_UNKNOWN_CHUNKS_SUPPORTED +# endif +#endif +#ifndef PNG_NO_HANDLE_AS_UNKNOWN +# ifndef PNG_HANDLE_AS_UNKNOWN_SUPPORTED +# define PNG_HANDLE_AS_UNKNOWN_SUPPORTED +# endif +#endif +#endif /* PNG_WRITE_SUPPORTED */ + +/* Turn this off to disable png_read_png() and + * png_write_png() and leave the row_pointers member + * out of the info structure. + */ +#ifndef PNG_NO_INFO_IMAGE +# define PNG_INFO_IMAGE_SUPPORTED +#endif + +/* Need the time information for converting tIME chunks */ +#ifdef PNG_CONVERT_tIME_SUPPORTED + /* "time.h" functions are not supported on WindowsCE */ +# include <time.h> +#endif + +/* Some typedefs to get us started. These should be safe on most of the + * common platforms. The typedefs should be at least as large as the + * numbers suggest (a png_uint_32 must be at least 32 bits long), but they + * don't have to be exactly that size. Some compilers dislike passing + * unsigned shorts as function parameters, so you may be better off using + * unsigned int for png_uint_16. + */ + +#if defined(INT_MAX) && (INT_MAX > 0x7ffffffeL) +typedef unsigned int png_uint_32; +typedef int png_int_32; +#else +typedef unsigned long png_uint_32; +typedef long png_int_32; +#endif +typedef unsigned short png_uint_16; +typedef short png_int_16; +typedef unsigned char png_byte; + +#ifdef PNG_NO_SIZE_T + typedef unsigned int png_size_t; +#else + typedef size_t png_size_t; +#endif +#define png_sizeof(x) (sizeof (x)) + +/* The following is needed for medium model support. It cannot be in the + * pngpriv.h header. Needs modification for other compilers besides + * MSC. Model independent support declares all arrays and pointers to be + * large using the far keyword. The zlib version used must also support + * model independent data. As of version zlib 1.0.4, the necessary changes + * have been made in zlib. The USE_FAR_KEYWORD define triggers other + * changes that are needed. (Tim Wegner) + */ + +/* Separate compiler dependencies (problem here is that zlib.h always + * defines FAR. (SJT) + */ +#ifdef __BORLANDC__ +# if defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__) +# define LDATA 1 +# else +# define LDATA 0 +# endif + /* GRR: why is Cygwin in here? Cygwin is not Borland C... */ +# if !defined(__WIN32__) && !defined(__FLAT__) && !defined(__CYGWIN__) +# define PNG_MAX_MALLOC_64K +# if (LDATA != 1) +# ifndef FAR +# define FAR __far +# endif +# define USE_FAR_KEYWORD +# endif /* LDATA != 1 */ + /* Possibly useful for moving data out of default segment. + * Uncomment it if you want. Could also define FARDATA as + * const if your compiler supports it. (SJT) +# define FARDATA FAR + */ +# endif /* __WIN32__, __FLAT__, __CYGWIN__ */ +#endif /* __BORLANDC__ */ + + +/* Suggest testing for specific compiler first before testing for + * FAR. The Watcom compiler defines both __MEDIUM__ and M_I86MM, + * making reliance oncertain keywords suspect. (SJT) + */ + +/* MSC Medium model */ +#ifdef FAR +# ifdef M_I86MM +# define USE_FAR_KEYWORD +# define FARDATA FAR +# include <dos.h> +# endif +#endif + +/* SJT: default case */ +#ifndef FAR +# define FAR +#endif + +/* At this point FAR is always defined */ +#ifndef FARDATA +# define FARDATA +#endif + +/* Typedef for floating-point numbers that are converted + to fixed-point with a multiple of 100,000, e.g., int_gamma */ +typedef png_int_32 png_fixed_point; + +/* Add typedefs for pointers */ +typedef void FAR * png_voidp; +typedef png_byte FAR * png_bytep; +typedef png_uint_32 FAR * png_uint_32p; +typedef png_int_32 FAR * png_int_32p; +typedef png_uint_16 FAR * png_uint_16p; +typedef png_int_16 FAR * png_int_16p; +typedef PNG_CONST char FAR * png_const_charp; +typedef char FAR * png_charp; +typedef png_fixed_point FAR * png_fixed_point_p; + +#ifndef PNG_NO_STDIO +typedef FILE * png_FILE_p; +#endif + +#ifdef PNG_FLOATING_POINT_SUPPORTED +typedef double FAR * png_doublep; +#endif + +/* Pointers to pointers; i.e. arrays */ +typedef png_byte FAR * FAR * png_bytepp; +typedef png_uint_32 FAR * FAR * png_uint_32pp; +typedef png_int_32 FAR * FAR * png_int_32pp; +typedef png_uint_16 FAR * FAR * png_uint_16pp; +typedef png_int_16 FAR * FAR * png_int_16pp; +typedef PNG_CONST char FAR * FAR * png_const_charpp; +typedef char FAR * FAR * png_charpp; +typedef png_fixed_point FAR * FAR * png_fixed_point_pp; +#ifdef PNG_FLOATING_POINT_SUPPORTED +typedef double FAR * FAR * png_doublepp; +#endif + +/* Pointers to pointers to pointers; i.e., pointer to array */ +typedef char FAR * FAR * FAR * png_charppp; + +/* Define PNG_BUILD_DLL if the module being built is a Windows + * LIBPNG DLL. + * + * Define PNG_USE_DLL if you want to *link* to the Windows LIBPNG DLL. + * It is equivalent to Microsoft predefined macro _DLL that is + * automatically defined when you compile using the share + * version of the CRT (C Run-Time library) + * + * The cygwin mods make this behavior a little different: + * Define PNG_BUILD_DLL if you are building a dll for use with cygwin + * Define PNG_STATIC if you are building a static library for use with cygwin, + * -or- if you are building an application that you want to link to the + * static library. + * PNG_USE_DLL is defined by default (no user action needed) unless one of + * the other flags is defined. + */ + +#if !defined(PNG_DLL) && (defined(PNG_BUILD_DLL) || defined(PNG_USE_DLL)) +# define PNG_DLL +#endif + +/* If you define PNGAPI, e.g., with compiler option "-DPNGAPI=__stdcall", + * you may get warnings regarding the linkage of png_zalloc and png_zfree. + * Don't ignore those warnings; you must also reset the default calling + * convention in your compiler to match your PNGAPI, and you must build + * zlib and your applications the same way you build libpng. + */ + +#ifdef __CYGWIN__ +# undef PNGAPI +# define PNGAPI __cdecl +# undef PNG_IMPEXP +# define PNG_IMPEXP +#endif + +#ifdef __WATCOMC__ +# ifndef PNGAPI +# define PNGAPI +# endif +#endif + +#if defined(__MINGW32__) && !defined(PNG_MODULEDEF) +# ifndef PNG_NO_MODULEDEF +# define PNG_NO_MODULEDEF +# endif +#endif + +#if !defined(PNG_IMPEXP) && defined(PNG_BUILD_DLL) && !defined(PNG_NO_MODULEDEF) +# define PNG_IMPEXP +#endif + +#if defined(PNG_DLL) || defined(_DLL) || defined(__DLL__ ) || \ + (( defined(_Windows) || defined(_WINDOWS) || \ + defined(WIN32) || defined(_WIN32) || defined(__WIN32__) )) + +# ifndef PNGAPI +# if defined(__GNUC__) || (defined (_MSC_VER) && (_MSC_VER >= 800)) +# define PNGAPI __cdecl +# else +# define PNGAPI _cdecl +# endif +# endif + +# if !defined(PNG_IMPEXP) && (!defined(PNG_DLL) || \ + 0 /* WINCOMPILER_WITH_NO_SUPPORT_FOR_DECLIMPEXP */) +# define PNG_IMPEXP +# endif + +# ifndef PNG_IMPEXP + +# define PNG_EXPORT_TYPE1(type,symbol) PNG_IMPEXP type PNGAPI symbol +# define PNG_EXPORT_TYPE2(type,symbol) type PNG_IMPEXP PNGAPI symbol + + /* Borland/Microsoft */ +# if defined(_MSC_VER) || defined(__BORLANDC__) +# if (_MSC_VER >= 800) || (__BORLANDC__ >= 0x500) +# define PNG_EXPORT PNG_EXPORT_TYPE1 +# else +# define PNG_EXPORT PNG_EXPORT_TYPE2 +# ifdef PNG_BUILD_DLL +# define PNG_IMPEXP __export +# else +# define PNG_IMPEXP /*__import */ /* doesn't exist AFAIK in VC++ */ +# endif /* Exists in Borland C++ for + C++ classes (== huge) */ +# endif +# endif + +# ifndef PNG_IMPEXP +# ifdef PNG_BUILD_DLL +# define PNG_IMPEXP __declspec(dllexport) +# else +# define PNG_IMPEXP __declspec(dllimport) +# endif +# endif +# endif /* PNG_IMPEXP */ +#else /* !(DLL || non-cygwin WINDOWS) */ +# if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__) +# ifndef PNGAPI +# define PNGAPI _System +# endif +# else +# if 0 /* ... other platforms, with other meanings */ +# endif +# endif +#endif + +#ifndef PNGAPI +# define PNGAPI +#endif +#ifndef PNG_IMPEXP +# define PNG_IMPEXP +#endif + +#ifdef PNG_BUILDSYMS +# ifndef PNG_EXPORT +# define PNG_EXPORT(type,symbol) PNG_FUNCTION_EXPORT symbol END +# endif +#endif + +#ifndef PNG_EXPORT +# define PNG_EXPORT(type,symbol) PNG_IMPEXP type PNGAPI symbol +#endif + +#define PNG_USE_LOCAL_ARRAYS /* Not used in libpng, defined for legacy apps */ + +/* Support for compiler specific function attributes. These are used + * so that where compiler support is available incorrect use of API + * functions in png.h will generate compiler warnings. + * + * Added at libpng-1.2.41. + */ + +#ifndef PNG_NO_PEDANTIC_WARNINGS +# ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED +# define PNG_PEDANTIC_WARNINGS_SUPPORTED +# endif +#endif + +#ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED +/* Support for compiler specific function attributes. These are used + * so that where compiler support is available incorrect use of API + * functions in png.h will generate compiler warnings. Added at libpng + * version 1.2.41. + */ +# ifdef __GNUC__ +# ifndef PNG_USE_RESULT +# define PNG_USE_RESULT __attribute__((__warn_unused_result__)) +# endif +# ifndef PNG_NORETURN +# define PNG_NORETURN __attribute__((__noreturn__)) +# endif +# ifndef PNG_ALLOCATED +# define PNG_ALLOCATED __attribute__((__malloc__)) +# endif +# ifndef PNG_DEPRECATED +# define PNG_DEPRECATED __attribute__((__deprecated__)) +# endif + + /* This specifically protects structure members that should only be + * accessed from within the library, therefore should be empty during + * a library build. + */ +# ifndef PNG_DEPSTRUCT +# define PNG_DEPSTRUCT __attribute__((__deprecated__)) +# endif +# ifndef PNG_PRIVATE +# if 0 /* Doesn't work so we use deprecated instead*/ +# define PNG_PRIVATE \ + __attribute__((warning("This function is not exported by libpng."))) +# else +# define PNG_PRIVATE \ + __attribute__((__deprecated__)) +# endif +# endif /* PNG_PRIVATE */ +# endif /* __GNUC__ */ +#endif /* PNG_PEDANTIC_WARNINGS */ + +#ifndef PNG_DEPRECATED +# define PNG_DEPRECATED /* Use of this function is deprecated */ +#endif +#ifndef PNG_USE_RESULT +# define PNG_USE_RESULT /* The result of this function must be checked */ +#endif +#ifndef PNG_NORETURN +# define PNG_NORETURN /* This function does not return */ +#endif +#ifndef PNG_ALLOCATED +# define PNG_ALLOCATED /* The result of the function is new memory */ +#endif +#ifndef PNG_DEPSTRUCT +# define PNG_DEPSTRUCT /* Access to this struct member is deprecated */ +#endif +#ifndef PNG_PRIVATE +# define PNG_PRIVATE /* This is a private libpng function */ +#endif + +/* Users may want to use these so they are not private. Any library + * functions that are passed far data must be model-independent. + */ + +/* memory model/platform independent fns */ +#ifndef PNG_ABORT +# if (defined(_Windows) || defined(_WINDOWS) || defined(_WINDOWS_)) +# define PNG_ABORT() ExitProcess(0) +# else +# define PNG_ABORT() abort() +# endif +#endif + +#ifdef USE_FAR_KEYWORD +/* Use this to make far-to-near assignments */ +# define CHECK 1 +# define NOCHECK 0 +# define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK)) +# define CVT_PTR_NOCHECK(ptr) (png_far_to_near(png_ptr,ptr,NOCHECK)) +# define png_strcpy _fstrcpy +# define png_strncpy _fstrncpy /* Added to v 1.2.6 */ +# define png_strlen _fstrlen +# define png_memcmp _fmemcmp /* SJT: added */ +# define png_memcpy _fmemcpy +# define png_memset _fmemset +# define png_sprintf sprintf +#else +# if (defined(_Windows) || defined(_WINDOWS) || defined(_WINDOWS_)) +# /* Favor Windows over C runtime fns */ +# define CVT_PTR(ptr) (ptr) +# define CVT_PTR_NOCHECK(ptr) (ptr) +# define png_strcpy lstrcpyA +# define png_strncpy lstrcpynA +# define png_strlen lstrlenA +# define png_memcmp memcmp +# define png_memcpy CopyMemory +# define png_memset memset +# define png_sprintf wsprintfA +# else +# define CVT_PTR(ptr) (ptr) +# define CVT_PTR_NOCHECK(ptr) (ptr) +# define png_strcpy strcpy +# define png_strncpy strncpy /* Added to v 1.2.6 */ +# define png_strlen strlen +# define png_memcmp memcmp /* SJT: added */ +# define png_memcpy memcpy +# define png_memset memset +# define png_sprintf sprintf +# endif +#endif + +#ifndef PNG_NO_SNPRINTF +# ifdef _MSC_VER +# define png_snprintf _snprintf /* Added to v 1.2.19 */ +# define png_snprintf2 _snprintf +# define png_snprintf6 _snprintf +# else +# define png_snprintf snprintf /* Added to v 1.2.19 */ +# define png_snprintf2 snprintf +# define png_snprintf6 snprintf +# endif +#else + /* You don't have or don't want to use snprintf(). Caution: Using + * sprintf instead of snprintf exposes your application to accidental + * or malevolent buffer overflows. If you don't have snprintf() + * as a general rule you should provide one (you can get one from + * Portable OpenSSH). + */ +# define png_snprintf(s1,n,fmt,x1) png_sprintf(s1,fmt,x1) +# define png_snprintf2(s1,n,fmt,x1,x2) png_sprintf(s1,fmt,x1,x2) +# define png_snprintf6(s1,n,fmt,x1,x2,x3,x4,x5,x6) \ + png_sprintf(s1,fmt,x1,x2,x3,x4,x5,x6) +#endif + +/* png_alloc_size_t is guaranteed to be no smaller than png_size_t, + * and no smaller than png_uint_32. Casts from png_size_t or png_uint_32 + * to png_alloc_size_t are not necessary; in fact, it is recommended + * not to use them at all so that the compiler can complain when something + * turns out to be problematic. + * Casts in the other direction (from png_alloc_size_t to png_size_t or + * png_uint_32) should be explicitly applied; however, we do not expect + * to encounter practical situations that require such conversions. + */ +#if defined(__TURBOC__) && !defined(__FLAT__) + typedef unsigned long png_alloc_size_t; +#else +# if defined(_MSC_VER) && defined(MAXSEG_64K) + typedef unsigned long png_alloc_size_t; +# else + /* This is an attempt to detect an old Windows system where (int) is + * actually 16 bits, in that case png_malloc must have an argument with a + * bigger size to accomodate the requirements of the library. + */ +# if (defined(_Windows) || defined(_WINDOWS) || defined(_WINDOWS_)) && \ + (!defined(INT_MAX) || INT_MAX <= 0x7ffffffeL) + typedef DWORD png_alloc_size_t; +# else + typedef png_size_t png_alloc_size_t; +# endif +# endif +#endif +/* End of memory model/platform independent support */ + +/* Just a little check that someone hasn't tried to define something + * contradictory. + */ +#if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K) +# undef PNG_ZBUF_SIZE +# define PNG_ZBUF_SIZE 65536L +#endif + + +/* Added at libpng-1.2.8 */ +#endif /* PNG_VERSION_INFO_ONLY */ + +#endif /* PNGCONF_H */ diff --git a/cocos2dx/platform/third_party/linux/libpng/pngpriv.h b/cocos2dx/platform/third_party/linux/libpng/pngpriv.h new file mode 100644 index 0000000000..18793e90fd --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/pngpriv.h @@ -0,0 +1,966 @@ + +/* pngpriv.h - private declarations for use inside libpng + * + * libpng version 1.4.8 - July 7, 2011 + * For conditions of distribution and use, see copyright notice in png.h + * Copyright (c) 1998-2011 Glenn Randers-Pehrson + * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) + * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) + * + * This code is released under the libpng license. + * For conditions of distribution and use, see the disclaimer + * and license in png.h + */ + +/* The symbols declared in this file (including the functions declared + * as PNG_EXTERN) are PRIVATE. They are not part of the libpng public + * interface, and are not recommended for use by regular applications. + * Some of them may become public in the future; others may stay private, + * change in an incompatible way, or even disappear. + * Although the libpng users are not forbidden to include this header, + * they should be well aware of the issues that may arise from doing so. + */ + +#ifndef PNGPRIV_H +#define PNGPRIV_H + +#ifndef PNG_VERSION_INFO_ONLY + +#if defined(_AIX) && defined(_ALL_SOURCE) + /* On AIX if _ALL_SOURCE is defined standard header files (including + * stdlib.h) define identifiers that are not permitted by the ANSI and + * POSIX standards. In particular 'jmpbuf' is #defined and this will + * prevent compilation of libpng. The following prevents this: + */ +# undef _ALL_SOURCE +#endif + +#include <stdlib.h> + +#ifndef PNG_EXTERN +/* The functions exported by PNG_EXTERN are internal functions, which + * aren't usually used outside the library (as far as I know), so it is + * debatable if they should be exported at all. In the future, when it + * is possible to have run-time registry of chunk-handling functions, + * some of these will be made available again. +# define PNG_EXTERN extern + */ +# define PNG_EXTERN +#endif + +/* Other defines specific to compilers can go here. Try to keep + * them inside an appropriate ifdef/endif pair for portability. + */ + +#ifdef PNG_FLOATING_POINT_SUPPORTED +# ifdef MACOS + /* We need to check that <math.h> hasn't already been included earlier + * as it seems it doesn't agree with <fp.h>, yet we should really use + * <fp.h> if possible. + */ +# if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__) +# include <fp.h> +# endif +# else +# include <math.h> +# endif +# if defined(_AMIGA) && defined(__SASC) && defined(_M68881) + /* Amiga SAS/C: We must include builtin FPU functions when compiling using + * MATH=68881 + */ +# include <m68881.h> +# endif +#endif + +/* Codewarrior on NT has linking problems without this. */ +#if (defined(__MWERKS__) && defined(WIN32)) || defined(__STDC__) +# define PNG_ALWAYS_EXTERN +#endif + +/* This provides the non-ANSI (far) memory allocation routines. */ +#if defined(__TURBOC__) && defined(__MSDOS__) +# include <mem.h> +# include <alloc.h> +#endif + +#if defined(WIN32) || defined(_Windows) || defined(_WINDOWS) || \ + defined(_WIN32) || defined(__WIN32__) +# include <windows.h> /* defines _WINDOWS_ macro */ +#endif + +/* Various modes of operation. Note that after an init, mode is set to + * zero automatically when the structure is created. + */ +#define PNG_HAVE_IHDR 0x01 +#define PNG_HAVE_PLTE 0x02 +#define PNG_HAVE_IDAT 0x04 +#define PNG_AFTER_IDAT 0x08 /* Have complete zlib datastream */ +#define PNG_HAVE_IEND 0x10 +#define PNG_HAVE_gAMA 0x20 +#define PNG_HAVE_cHRM 0x40 +#define PNG_HAVE_sRGB 0x80 +#define PNG_HAVE_CHUNK_HEADER 0x100 +#define PNG_WROTE_tIME 0x200 +#define PNG_WROTE_INFO_BEFORE_PLTE 0x400 +#define PNG_BACKGROUND_IS_GRAY 0x800 +#define PNG_HAVE_PNG_SIGNATURE 0x1000 +#define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000 /* Have another chunk after IDAT */ + +/* Flags for the transformations the PNG library does on the image data */ +#define PNG_BGR 0x0001 +#define PNG_INTERLACE 0x0002 +#define PNG_PACK 0x0004 +#define PNG_SHIFT 0x0008 +#define PNG_SWAP_BYTES 0x0010 +#define PNG_INVERT_MONO 0x0020 +#define PNG_QUANTIZE 0x0040 /* formerly PNG_DITHER */ +#define PNG_BACKGROUND 0x0080 +#define PNG_BACKGROUND_EXPAND 0x0100 + /* 0x0200 unused */ +#define PNG_16_TO_8 0x0400 +#define PNG_RGBA 0x0800 +#define PNG_EXPAND 0x1000 +#define PNG_GAMMA 0x2000 +#define PNG_GRAY_TO_RGB 0x4000 +#define PNG_FILLER 0x8000L +#define PNG_PACKSWAP 0x10000L +#define PNG_SWAP_ALPHA 0x20000L +#define PNG_STRIP_ALPHA 0x40000L +#define PNG_INVERT_ALPHA 0x80000L +#define PNG_USER_TRANSFORM 0x100000L +#define PNG_RGB_TO_GRAY_ERR 0x200000L +#define PNG_RGB_TO_GRAY_WARN 0x400000L +#define PNG_RGB_TO_GRAY 0x600000L /* two bits, RGB_TO_GRAY_ERR|WARN */ + /* 0x800000L Unused */ +#define PNG_ADD_ALPHA 0x1000000L /* Added to libpng-1.2.7 */ +#define PNG_EXPAND_tRNS 0x2000000L /* Added to libpng-1.2.9 */ + /* 0x4000000L unused */ + /* 0x8000000L unused */ + /* 0x10000000L unused */ + /* 0x20000000L unused */ + /* 0x40000000L unused */ + +/* Flags for png_create_struct */ +#define PNG_STRUCT_PNG 0x0001 +#define PNG_STRUCT_INFO 0x0002 + +/* Scaling factor for filter heuristic weighting calculations */ +#define PNG_WEIGHT_SHIFT 8 +#define PNG_WEIGHT_FACTOR (1<<(PNG_WEIGHT_SHIFT)) +#define PNG_COST_SHIFT 3 +#define PNG_COST_FACTOR (1<<(PNG_COST_SHIFT)) + +/* Flags for the png_ptr->flags rather than declaring a byte for each one */ +#define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001 +#define PNG_FLAG_ZLIB_CUSTOM_LEVEL 0x0002 +#define PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL 0x0004 +#define PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS 0x0008 +#define PNG_FLAG_ZLIB_CUSTOM_METHOD 0x0010 +#define PNG_FLAG_ZLIB_FINISHED 0x0020 +#define PNG_FLAG_ROW_INIT 0x0040 +#define PNG_FLAG_FILLER_AFTER 0x0080 +#define PNG_FLAG_CRC_ANCILLARY_USE 0x0100 +#define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200 +#define PNG_FLAG_CRC_CRITICAL_USE 0x0400 +#define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800 + /* 0x1000 unused */ + /* 0x2000 unused */ + /* 0x4000 unused */ +#define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000L +#define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000L +#define PNG_FLAG_LIBRARY_MISMATCH 0x20000L +#define PNG_FLAG_STRIP_ERROR_NUMBERS 0x40000L +#define PNG_FLAG_STRIP_ERROR_TEXT 0x80000L +#define PNG_FLAG_MALLOC_NULL_MEM_OK 0x100000L +#define PNG_FLAG_ADD_ALPHA 0x200000L /* Added to libpng-1.2.8 */ +#define PNG_FLAG_STRIP_ALPHA 0x400000L /* Added to libpng-1.2.8 */ +#define PNG_FLAG_BENIGN_ERRORS_WARN 0x800000L /* Added to libpng-1.4.0 */ + /* 0x1000000L unused */ + /* 0x2000000L unused */ + /* 0x4000000L unused */ + /* 0x8000000L unused */ + /* 0x10000000L unused */ + /* 0x20000000L unused */ + /* 0x40000000L unused */ + +#define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | \ + PNG_FLAG_CRC_ANCILLARY_NOWARN) + +#define PNG_FLAG_CRC_CRITICAL_MASK (PNG_FLAG_CRC_CRITICAL_USE | \ + PNG_FLAG_CRC_CRITICAL_IGNORE) + +#define PNG_FLAG_CRC_MASK (PNG_FLAG_CRC_ANCILLARY_MASK | \ + PNG_FLAG_CRC_CRITICAL_MASK) + +/* Save typing and make code easier to understand */ + +#define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \ + abs((int)((c1).green) - (int)((c2).green)) + \ + abs((int)((c1).blue) - (int)((c2).blue))) + +/* Added to libpng-1.2.6 JB */ +#define PNG_ROWBYTES(pixel_bits, width) \ + ((pixel_bits) >= 8 ? \ + ((png_size_t)(width) * (((png_size_t)(pixel_bits)) >> 3)) : \ + (( ((png_size_t)(width) * ((png_size_t)(pixel_bits))) + 7) >> 3) ) + +/* PNG_OUT_OF_RANGE returns true if value is outside the range + * ideal-delta..ideal+delta. Each argument is evaluated twice. + * "ideal" and "delta" should be constants, normally simple + * integers, "value" a variable. Added to libpng-1.2.6 JB + */ +#define PNG_OUT_OF_RANGE(value, ideal, delta) \ + ( (value) < (ideal)-(delta) || (value) > (ideal)+(delta) ) + +/* Constant strings for known chunk types. If you need to add a chunk, + * define the name here, and add an invocation of the macro wherever it's + * needed. + */ +#define PNG_IHDR PNG_CONST png_byte png_IHDR[5] = { 73, 72, 68, 82, '\0'} +#define PNG_IDAT PNG_CONST png_byte png_IDAT[5] = { 73, 68, 65, 84, '\0'} +#define PNG_IEND PNG_CONST png_byte png_IEND[5] = { 73, 69, 78, 68, '\0'} +#define PNG_PLTE PNG_CONST png_byte png_PLTE[5] = { 80, 76, 84, 69, '\0'} +#define PNG_bKGD PNG_CONST png_byte png_bKGD[5] = { 98, 75, 71, 68, '\0'} +#define PNG_cHRM PNG_CONST png_byte png_cHRM[5] = { 99, 72, 82, 77, '\0'} +#define PNG_gAMA PNG_CONST png_byte png_gAMA[5] = {103, 65, 77, 65, '\0'} +#define PNG_hIST PNG_CONST png_byte png_hIST[5] = {104, 73, 83, 84, '\0'} +#define PNG_iCCP PNG_CONST png_byte png_iCCP[5] = {105, 67, 67, 80, '\0'} +#define PNG_iTXt PNG_CONST png_byte png_iTXt[5] = {105, 84, 88, 116, '\0'} +#define PNG_oFFs PNG_CONST png_byte png_oFFs[5] = {111, 70, 70, 115, '\0'} +#define PNG_pCAL PNG_CONST png_byte png_pCAL[5] = {112, 67, 65, 76, '\0'} +#define PNG_sCAL PNG_CONST png_byte png_sCAL[5] = {115, 67, 65, 76, '\0'} +#define PNG_pHYs PNG_CONST png_byte png_pHYs[5] = {112, 72, 89, 115, '\0'} +#define PNG_sBIT PNG_CONST png_byte png_sBIT[5] = {115, 66, 73, 84, '\0'} +#define PNG_sPLT PNG_CONST png_byte png_sPLT[5] = {115, 80, 76, 84, '\0'} +#define PNG_sRGB PNG_CONST png_byte png_sRGB[5] = {115, 82, 71, 66, '\0'} +#define PNG_sTER PNG_CONST png_byte png_sTER[5] = {115, 84, 69, 82, '\0'} +#define PNG_tEXt PNG_CONST png_byte png_tEXt[5] = {116, 69, 88, 116, '\0'} +#define PNG_tIME PNG_CONST png_byte png_tIME[5] = {116, 73, 77, 69, '\0'} +#define PNG_tRNS PNG_CONST png_byte png_tRNS[5] = {116, 82, 78, 83, '\0'} +#define PNG_zTXt PNG_CONST png_byte png_zTXt[5] = {122, 84, 88, 116, '\0'} + + +/* Inhibit C++ name-mangling for libpng functions but not for system calls. */ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* These functions are used internally in the code. They generally + * shouldn't be used unless you are writing code to add or replace some + * functionality in libpng. More information about most functions can + * be found in the files where the functions are located. + */ + +/* Allocate memory for an internal libpng struct */ +PNG_EXTERN png_voidp png_create_struct PNGARG((int type)); + +/* Free memory from internal libpng struct */ +PNG_EXTERN void png_destroy_struct PNGARG((png_voidp struct_ptr)); + +PNG_EXTERN png_voidp png_create_struct_2 PNGARG((int type, png_malloc_ptr + malloc_fn, png_voidp mem_ptr)); +PNG_EXTERN void png_destroy_struct_2 PNGARG((png_voidp struct_ptr, + png_free_ptr free_fn, png_voidp mem_ptr)); + +/* Free any memory that info_ptr points to and reset struct. */ +PNG_EXTERN void png_info_destroy PNGARG((png_structp png_ptr, + png_infop info_ptr)); + +/* Function to allocate memory for zlib. PNGAPI is disallowed. */ +PNG_EXTERN voidpf png_zalloc PNGARG((voidpf png_ptr, uInt items, uInt size)); + +/* Function to free memory for zlib. PNGAPI is disallowed. */ +PNG_EXTERN void png_zfree PNGARG((voidpf png_ptr, voidpf ptr)); + +/* Next four functions are used internally as callbacks. PNGAPI is required + * but not PNG_EXPORT. PNGAPI added at libpng version 1.2.3. */ + +PNG_EXTERN void PNGAPI png_default_read_data PNGARG((png_structp png_ptr, + png_bytep data, png_size_t length)); + +#ifdef PNG_PROGRESSIVE_READ_SUPPORTED +PNG_EXTERN void PNGAPI png_push_fill_buffer PNGARG((png_structp png_ptr, + png_bytep buffer, png_size_t length)); +#endif + +PNG_EXTERN void PNGAPI png_default_write_data PNGARG((png_structp png_ptr, + png_bytep data, png_size_t length)); + +#ifdef PNG_WRITE_FLUSH_SUPPORTED +#ifdef PNG_STDIO_SUPPORTED +PNG_EXTERN void PNGAPI png_default_flush PNGARG((png_structp png_ptr)); +#endif +#endif + +/* Reset the CRC variable */ +PNG_EXTERN void png_reset_crc PNGARG((png_structp png_ptr)); + +/* Write the "data" buffer to whatever output you are using */ +PNG_EXTERN void png_write_data PNGARG((png_structp png_ptr, png_bytep data, + png_size_t length)); + +/* Read and check the PNG file signature */ +PNG_EXTERN void png_read_sig PNGARG((png_structp png_ptr, png_infop info_ptr)); + +/* Read the chunk header (length + type name) */ +PNG_EXTERN png_uint_32 png_read_chunk_header PNGARG((png_structp png_ptr)); + +/* Read data from whatever input you are using into the "data" buffer */ +PNG_EXTERN void png_read_data PNGARG((png_structp png_ptr, png_bytep data, + png_size_t length)); + +/* Read bytes into buf, and update png_ptr->crc */ +PNG_EXTERN void png_crc_read PNGARG((png_structp png_ptr, png_bytep buf, + png_size_t length)); + +/* Decompress data in a chunk that uses compression */ +#if defined(PNG_zTXt_SUPPORTED) || defined(PNG_iTXt_SUPPORTED) || \ + defined(PNG_iCCP_SUPPORTED) || defined(PNG_sPLT_SUPPORTED) +PNG_EXTERN void png_decompress_chunk PNGARG((png_structp png_ptr, + int comp_type, png_size_t chunklength, png_size_t prefix_length, + png_size_t *data_length)); +#endif + +/* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */ +PNG_EXTERN int png_crc_finish PNGARG((png_structp png_ptr, png_uint_32 skip)); + +/* Read the CRC from the file and compare it to the libpng calculated CRC */ +PNG_EXTERN int png_crc_error PNGARG((png_structp png_ptr)); + +/* Calculate the CRC over a section of data. Note that we are only + * passing a maximum of 64K on systems that have this as a memory limit, + * since this is the maximum buffer size we can specify. + */ +PNG_EXTERN void png_calculate_crc PNGARG((png_structp png_ptr, png_bytep ptr, + png_size_t length)); + +#ifdef PNG_WRITE_FLUSH_SUPPORTED +PNG_EXTERN void png_flush PNGARG((png_structp png_ptr)); +#endif + +/* Write various chunks */ + +/* Write the IHDR chunk, and update the png_struct with the necessary + * information. + */ +PNG_EXTERN void png_write_IHDR PNGARG((png_structp png_ptr, png_uint_32 width, + png_uint_32 height, + int bit_depth, int color_type, int compression_method, int filter_method, + int interlace_method)); + +PNG_EXTERN void png_write_PLTE PNGARG((png_structp png_ptr, png_colorp palette, + png_uint_32 num_pal)); + +PNG_EXTERN void png_write_IDAT PNGARG((png_structp png_ptr, png_bytep data, + png_size_t length)); + +PNG_EXTERN void png_write_IEND PNGARG((png_structp png_ptr)); + +#ifdef PNG_WRITE_gAMA_SUPPORTED +#ifdef PNG_FLOATING_POINT_SUPPORTED +PNG_EXTERN void png_write_gAMA PNGARG((png_structp png_ptr, double file_gamma)); +#endif +#ifdef PNG_FIXED_POINT_SUPPORTED +PNG_EXTERN void png_write_gAMA_fixed PNGARG((png_structp png_ptr, + png_fixed_point file_gamma)); +#endif +#endif + +#ifdef PNG_WRITE_sBIT_SUPPORTED +PNG_EXTERN void png_write_sBIT PNGARG((png_structp png_ptr, png_color_8p sbit, + int color_type)); +#endif + +#ifdef PNG_WRITE_cHRM_SUPPORTED +#ifdef PNG_FLOATING_POINT_SUPPORTED +PNG_EXTERN void png_write_cHRM PNGARG((png_structp png_ptr, + double white_x, double white_y, + double red_x, double red_y, double green_x, double green_y, + double blue_x, double blue_y)); +#endif +PNG_EXTERN void png_write_cHRM_fixed PNGARG((png_structp png_ptr, + png_fixed_point int_white_x, png_fixed_point int_white_y, + png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point + int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x, + png_fixed_point int_blue_y)); +#endif + +#ifdef PNG_WRITE_sRGB_SUPPORTED +PNG_EXTERN void png_write_sRGB PNGARG((png_structp png_ptr, + int intent)); +#endif + +#ifdef PNG_WRITE_iCCP_SUPPORTED +PNG_EXTERN void png_write_iCCP PNGARG((png_structp png_ptr, + png_charp name, int compression_type, + png_charp profile, int proflen)); + /* Note to maintainer: profile should be png_bytep */ +#endif + +#ifdef PNG_WRITE_sPLT_SUPPORTED +PNG_EXTERN void png_write_sPLT PNGARG((png_structp png_ptr, + png_sPLT_tp palette)); +#endif + +#ifdef PNG_WRITE_tRNS_SUPPORTED +PNG_EXTERN void png_write_tRNS PNGARG((png_structp png_ptr, png_bytep trans, + png_color_16p values, int number, int color_type)); +#endif + +#ifdef PNG_WRITE_bKGD_SUPPORTED +PNG_EXTERN void png_write_bKGD PNGARG((png_structp png_ptr, + png_color_16p values, int color_type)); +#endif + +#ifdef PNG_WRITE_hIST_SUPPORTED +PNG_EXTERN void png_write_hIST PNGARG((png_structp png_ptr, png_uint_16p hist, + int num_hist)); +#endif + +#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \ + defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED) +PNG_EXTERN png_size_t png_check_keyword PNGARG((png_structp png_ptr, + png_charp key, png_charpp new_key)); +#endif + +#ifdef PNG_WRITE_tEXt_SUPPORTED +PNG_EXTERN void png_write_tEXt PNGARG((png_structp png_ptr, png_charp key, + png_charp text, png_size_t text_len)); +#endif + +#ifdef PNG_WRITE_zTXt_SUPPORTED +PNG_EXTERN void png_write_zTXt PNGARG((png_structp png_ptr, png_charp key, + png_charp text, png_size_t text_len, int compression)); +#endif + +#ifdef PNG_WRITE_iTXt_SUPPORTED +PNG_EXTERN void png_write_iTXt PNGARG((png_structp png_ptr, + int compression, png_charp key, png_charp lang, png_charp lang_key, + png_charp text)); +#endif + +#ifdef PNG_TEXT_SUPPORTED /* Added at version 1.0.14 and 1.2.4 */ +PNG_EXTERN int png_set_text_2 PNGARG((png_structp png_ptr, + png_infop info_ptr, png_textp text_ptr, int num_text)); +#endif + +#ifdef PNG_WRITE_oFFs_SUPPORTED +PNG_EXTERN void png_write_oFFs PNGARG((png_structp png_ptr, + png_int_32 x_offset, png_int_32 y_offset, int unit_type)); +#endif + +#ifdef PNG_WRITE_pCAL_SUPPORTED +PNG_EXTERN void png_write_pCAL PNGARG((png_structp png_ptr, png_charp purpose, + png_int_32 X0, png_int_32 X1, int type, int nparams, + png_charp units, png_charpp params)); +#endif + +#ifdef PNG_WRITE_pHYs_SUPPORTED +PNG_EXTERN void png_write_pHYs PNGARG((png_structp png_ptr, + png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit, + int unit_type)); +#endif + +#ifdef PNG_WRITE_tIME_SUPPORTED +PNG_EXTERN void png_write_tIME PNGARG((png_structp png_ptr, + png_timep mod_time)); +#endif + +#ifdef PNG_WRITE_sCAL_SUPPORTED +#if defined(PNG_FLOATING_POINT_SUPPORTED) && defined(PNG_STDIO_SUPPORTED) +PNG_EXTERN void png_write_sCAL PNGARG((png_structp png_ptr, + int unit, double width, double height)); +#else +#ifdef PNG_FIXED_POINT_SUPPORTED +PNG_EXTERN void png_write_sCAL_s PNGARG((png_structp png_ptr, + int unit, png_charp width, png_charp height)); +#endif +#endif +#endif + +/* Called when finished processing a row of data */ +PNG_EXTERN void png_write_finish_row PNGARG((png_structp png_ptr)); + +/* Internal use only. Called before first row of data */ +PNG_EXTERN void png_write_start_row PNGARG((png_structp png_ptr)); + +#ifdef PNG_READ_GAMMA_SUPPORTED +PNG_EXTERN void png_build_gamma_table PNGARG((png_structp png_ptr, + png_byte bit_depth)); +#endif + +/* Combine a row of data, dealing with alpha, etc. if requested */ +PNG_EXTERN void png_combine_row PNGARG((png_structp png_ptr, png_bytep row, + int mask)); + +#ifdef PNG_READ_INTERLACING_SUPPORTED +/* Expand an interlaced row */ +/* OLD pre-1.0.9 interface: +PNG_EXTERN void png_do_read_interlace PNGARG((png_row_infop row_info, + png_bytep row, int pass, png_uint_32 transformations)); + */ +PNG_EXTERN void png_do_read_interlace PNGARG((png_structp png_ptr)); +#endif + +/* GRR TO DO (2.0 or whenever): simplify other internal calling interfaces */ + +#ifdef PNG_WRITE_INTERLACING_SUPPORTED +/* Grab pixels out of a row for an interlaced pass */ +PNG_EXTERN void png_do_write_interlace PNGARG((png_row_infop row_info, + png_bytep row, int pass)); +#endif + +/* Unfilter a row */ +PNG_EXTERN void png_read_filter_row PNGARG((png_structp png_ptr, + png_row_infop row_info, png_bytep row, png_bytep prev_row, int filter)); + +/* Choose the best filter to use and filter the row data */ +PNG_EXTERN void png_write_find_filter PNGARG((png_structp png_ptr, + png_row_infop row_info)); + +/* Write out the filtered row. */ +PNG_EXTERN void png_write_filtered_row PNGARG((png_structp png_ptr, + png_bytep filtered_row)); +/* Finish a row while reading, dealing with interlacing passes, etc. */ +PNG_EXTERN void png_read_finish_row PNGARG((png_structp png_ptr)); + +/* Initialize the row buffers, etc. */ +PNG_EXTERN void png_read_start_row PNGARG((png_structp png_ptr)); +/* Optional call to update the users info structure */ +PNG_EXTERN void png_read_transform_info PNGARG((png_structp png_ptr, + png_infop info_ptr)); + +/* These are the functions that do the transformations */ +#ifdef PNG_READ_FILLER_SUPPORTED +PNG_EXTERN void png_do_read_filler PNGARG((png_row_infop row_info, + png_bytep row, png_uint_32 filler, png_uint_32 flags)); +#endif + +#ifdef PNG_READ_SWAP_ALPHA_SUPPORTED +PNG_EXTERN void png_do_read_swap_alpha PNGARG((png_row_infop row_info, + png_bytep row)); +#endif + +#ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED +PNG_EXTERN void png_do_write_swap_alpha PNGARG((png_row_infop row_info, + png_bytep row)); +#endif + +#ifdef PNG_READ_INVERT_ALPHA_SUPPORTED +PNG_EXTERN void png_do_read_invert_alpha PNGARG((png_row_infop row_info, + png_bytep row)); +#endif + +#ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED +PNG_EXTERN void png_do_write_invert_alpha PNGARG((png_row_infop row_info, + png_bytep row)); +#endif + +#if defined(PNG_WRITE_FILLER_SUPPORTED) || \ + defined(PNG_READ_STRIP_ALPHA_SUPPORTED) +PNG_EXTERN void png_do_strip_filler PNGARG((png_row_infop row_info, + png_bytep row, png_uint_32 flags)); +#endif + +#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED) +PNG_EXTERN void png_do_swap PNGARG((png_row_infop row_info, png_bytep row)); +#endif + +#if defined(PNG_READ_PACKSWAP_SUPPORTED) || \ + defined(PNG_WRITE_PACKSWAP_SUPPORTED) +PNG_EXTERN void png_do_packswap PNGARG((png_row_infop row_info, png_bytep row)); +#endif + +#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED +PNG_EXTERN int png_do_rgb_to_gray PNGARG((png_structp png_ptr, png_row_infop + row_info, png_bytep row)); +#endif + +#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED +PNG_EXTERN void png_do_gray_to_rgb PNGARG((png_row_infop row_info, + png_bytep row)); +#endif + +#ifdef PNG_READ_PACK_SUPPORTED +PNG_EXTERN void png_do_unpack PNGARG((png_row_infop row_info, png_bytep row)); +#endif + +#ifdef PNG_READ_SHIFT_SUPPORTED +PNG_EXTERN void png_do_unshift PNGARG((png_row_infop row_info, png_bytep row, + png_color_8p sig_bits)); +#endif + +#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED) +PNG_EXTERN void png_do_invert PNGARG((png_row_infop row_info, png_bytep row)); +#endif + +#ifdef PNG_READ_16_TO_8_SUPPORTED +PNG_EXTERN void png_do_chop PNGARG((png_row_infop row_info, png_bytep row)); +#endif + +#ifdef PNG_READ_QUANTIZE_SUPPORTED +PNG_EXTERN void png_do_quantize PNGARG((png_row_infop row_info, + png_bytep row, png_bytep palette_lookup, png_bytep quantize_lookup)); + +# ifdef PNG_CORRECT_PALETTE_SUPPORTED +PNG_EXTERN void png_correct_palette PNGARG((png_structp png_ptr, + png_colorp palette, int num_palette)); +# endif +#endif + +#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED) +PNG_EXTERN void png_do_bgr PNGARG((png_row_infop row_info, png_bytep row)); +#endif + +#ifdef PNG_WRITE_PACK_SUPPORTED +PNG_EXTERN void png_do_pack PNGARG((png_row_infop row_info, + png_bytep row, png_uint_32 bit_depth)); +#endif + +#ifdef PNG_WRITE_SHIFT_SUPPORTED +PNG_EXTERN void png_do_shift PNGARG((png_row_infop row_info, png_bytep row, + png_color_8p bit_depth)); +#endif + +#ifdef PNG_READ_BACKGROUND_SUPPORTED +#ifdef PNG_READ_GAMMA_SUPPORTED +PNG_EXTERN void png_do_background PNGARG((png_row_infop row_info, png_bytep row, + png_color_16p trans_color, png_color_16p background, + png_color_16p background_1, + png_bytep gamma_table, png_bytep gamma_from_1, png_bytep gamma_to_1, + png_uint_16pp gamma_16, png_uint_16pp gamma_16_from_1, + png_uint_16pp gamma_16_to_1, int gamma_shift)); +#else +PNG_EXTERN void png_do_background PNGARG((png_row_infop row_info, png_bytep row, + png_color_16p trans_color, png_color_16p background)); +#endif +#endif + +#ifdef PNG_READ_GAMMA_SUPPORTED +PNG_EXTERN void png_do_gamma PNGARG((png_row_infop row_info, png_bytep row, + png_bytep gamma_table, png_uint_16pp gamma_16_table, + int gamma_shift)); +#endif + +#ifdef PNG_READ_EXPAND_SUPPORTED +PNG_EXTERN void png_do_expand_palette PNGARG((png_row_infop row_info, + png_bytep row, png_colorp palette, png_bytep trans, int num_trans)); +PNG_EXTERN void png_do_expand PNGARG((png_row_infop row_info, + png_bytep row, png_color_16p trans_value)); +#endif + +/* The following decodes the appropriate chunks, and does error correction, + * then calls the appropriate callback for the chunk if it is valid. + */ + +/* Decode the IHDR chunk */ +PNG_EXTERN void png_handle_IHDR PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +PNG_EXTERN void png_handle_PLTE PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +PNG_EXTERN void png_handle_IEND PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); + +#ifdef PNG_READ_bKGD_SUPPORTED +PNG_EXTERN void png_handle_bKGD PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_cHRM_SUPPORTED +PNG_EXTERN void png_handle_cHRM PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_gAMA_SUPPORTED +PNG_EXTERN void png_handle_gAMA PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_hIST_SUPPORTED +PNG_EXTERN void png_handle_hIST PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_iCCP_SUPPORTED +PNG_EXTERN void png_handle_iCCP PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif /* PNG_READ_iCCP_SUPPORTED */ + +#ifdef PNG_READ_iTXt_SUPPORTED +PNG_EXTERN void png_handle_iTXt PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_oFFs_SUPPORTED +PNG_EXTERN void png_handle_oFFs PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_pCAL_SUPPORTED +PNG_EXTERN void png_handle_pCAL PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_pHYs_SUPPORTED +PNG_EXTERN void png_handle_pHYs PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_sBIT_SUPPORTED +PNG_EXTERN void png_handle_sBIT PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_sCAL_SUPPORTED +PNG_EXTERN void png_handle_sCAL PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_sPLT_SUPPORTED +PNG_EXTERN void png_handle_sPLT PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif /* PNG_READ_sPLT_SUPPORTED */ + +#ifdef PNG_READ_sRGB_SUPPORTED +PNG_EXTERN void png_handle_sRGB PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_tEXt_SUPPORTED +PNG_EXTERN void png_handle_tEXt PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_tIME_SUPPORTED +PNG_EXTERN void png_handle_tIME PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_tRNS_SUPPORTED +PNG_EXTERN void png_handle_tRNS PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +#ifdef PNG_READ_zTXt_SUPPORTED +PNG_EXTERN void png_handle_zTXt PNGARG((png_structp png_ptr, png_infop info_ptr, + png_uint_32 length)); +#endif + +PNG_EXTERN void png_handle_unknown PNGARG((png_structp png_ptr, + png_infop info_ptr, png_uint_32 length)); + +PNG_EXTERN void png_check_chunk_name PNGARG((png_structp png_ptr, + png_bytep chunk_name)); + +/* Handle the transformations for reading and writing */ +PNG_EXTERN void png_do_read_transformations PNGARG((png_structp png_ptr)); +PNG_EXTERN void png_do_write_transformations PNGARG((png_structp png_ptr)); + +PNG_EXTERN void png_init_read_transformations PNGARG((png_structp png_ptr)); + +#ifdef PNG_PROGRESSIVE_READ_SUPPORTED +PNG_EXTERN void png_push_read_chunk PNGARG((png_structp png_ptr, + png_infop info_ptr)); +PNG_EXTERN void png_push_read_sig PNGARG((png_structp png_ptr, + png_infop info_ptr)); +PNG_EXTERN void png_push_check_crc PNGARG((png_structp png_ptr)); +PNG_EXTERN void png_push_crc_skip PNGARG((png_structp png_ptr, + png_uint_32 length)); +PNG_EXTERN void png_push_crc_finish PNGARG((png_structp png_ptr)); +PNG_EXTERN void png_push_save_buffer PNGARG((png_structp png_ptr)); +PNG_EXTERN void png_push_restore_buffer PNGARG((png_structp png_ptr, + png_bytep buffer, png_size_t buffer_length)); +PNG_EXTERN void png_push_read_IDAT PNGARG((png_structp png_ptr)); +PNG_EXTERN void png_process_IDAT_data PNGARG((png_structp png_ptr, + png_bytep buffer, png_size_t buffer_length)); +PNG_EXTERN void png_push_process_row PNGARG((png_structp png_ptr)); +PNG_EXTERN void png_push_handle_unknown PNGARG((png_structp png_ptr, + png_infop info_ptr, png_uint_32 length)); +PNG_EXTERN void png_push_have_info PNGARG((png_structp png_ptr, + png_infop info_ptr)); +PNG_EXTERN void png_push_have_end PNGARG((png_structp png_ptr, + png_infop info_ptr)); +PNG_EXTERN void png_push_have_row PNGARG((png_structp png_ptr, png_bytep row)); +PNG_EXTERN void png_push_read_end PNGARG((png_structp png_ptr, + png_infop info_ptr)); +PNG_EXTERN void png_process_some_data PNGARG((png_structp png_ptr, + png_infop info_ptr)); +PNG_EXTERN void png_read_push_finish_row PNGARG((png_structp png_ptr)); +#ifdef PNG_READ_tEXt_SUPPORTED +PNG_EXTERN void png_push_handle_tEXt PNGARG((png_structp png_ptr, + png_infop info_ptr, png_uint_32 length)); +PNG_EXTERN void png_push_read_tEXt PNGARG((png_structp png_ptr, + png_infop info_ptr)); +#endif +#ifdef PNG_READ_zTXt_SUPPORTED +PNG_EXTERN void png_push_handle_zTXt PNGARG((png_structp png_ptr, + png_infop info_ptr, png_uint_32 length)); +PNG_EXTERN void png_push_read_zTXt PNGARG((png_structp png_ptr, + png_infop info_ptr)); +#endif +#ifdef PNG_READ_iTXt_SUPPORTED +PNG_EXTERN void png_push_handle_iTXt PNGARG((png_structp png_ptr, + png_infop info_ptr, png_uint_32 length)); +PNG_EXTERN void png_push_read_iTXt PNGARG((png_structp png_ptr, + png_infop info_ptr)); +#endif + +#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */ + +#ifdef PNG_MNG_FEATURES_SUPPORTED +PNG_EXTERN void png_do_read_intrapixel PNGARG((png_row_infop row_info, + png_bytep row)); +PNG_EXTERN void png_do_write_intrapixel PNGARG((png_row_infop row_info, + png_bytep row)); +#endif + +/* Added at libpng version 1.4.0 */ +#ifdef PNG_cHRM_SUPPORTED +PNG_EXTERN int png_check_cHRM_fixed PNGARG((png_structp png_ptr, + png_fixed_point int_white_x, png_fixed_point int_white_y, + png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point + int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x, + png_fixed_point int_blue_y)); +#endif + +#ifdef PNG_cHRM_SUPPORTED +#ifdef PNG_CHECK_cHRM_SUPPORTED +/* Added at libpng version 1.2.34 and 1.4.0 */ +PNG_EXTERN void png_64bit_product PNGARG((long v1, long v2, + unsigned long *hi_product, unsigned long *lo_product)); +#endif +#endif + +/* Added at libpng version 1.4.0 */ +PNG_EXTERN void png_check_IHDR PNGARG((png_structp png_ptr, + png_uint_32 width, png_uint_32 height, int bit_depth, + int color_type, int interlace_type, int compression_type, + int filter_type)); + +/* Free all memory used by the read (old method - NOT DLL EXPORTED) */ +PNG_EXTERN void png_read_destroy PNGARG((png_structp png_ptr, png_infop info_ptr, + png_infop end_info_ptr)); + +/* Free any memory used in png_ptr struct (old method - NOT DLL EXPORTED) */ +PNG_EXTERN void png_write_destroy PNGARG((png_structp png_ptr)); + +#ifdef USE_FAR_KEYWORD /* memory model conversion function */ +PNG_EXTERN void *png_far_to_near PNGARG((png_structp png_ptr,png_voidp ptr, + int check)); +#endif /* USE_FAR_KEYWORD */ + +/* Define PNG_DEBUG at compile time for debugging information. Higher + * numbers for PNG_DEBUG mean more debugging information. This has + * only been added since version 0.95 so it is not implemented throughout + * libpng yet, but more support will be added as needed. + */ +#ifdef PNG_DEBUG +#if (PNG_DEBUG > 0) +#if !defined(PNG_DEBUG_FILE) && defined(_MSC_VER) +#include <crtdbg.h> +#if (PNG_DEBUG > 1) +#ifndef _DEBUG +# define _DEBUG +#endif +#ifndef png_debug +#define png_debug(l,m) _RPT0(_CRT_WARN,m PNG_STRING_NEWLINE) +#endif +#ifndef png_debug1 +#define png_debug1(l,m,p1) _RPT1(_CRT_WARN,m PNG_STRING_NEWLINE,p1) +#endif +#ifndef png_debug2 +#define png_debug2(l,m,p1,p2) _RPT2(_CRT_WARN,m PNG_STRING_NEWLINE,p1,p2) +#endif +#endif +#else /* PNG_DEBUG_FILE || !_MSC_VER */ +#ifndef PNG_DEBUG_FILE +#define PNG_DEBUG_FILE stderr +#endif /* PNG_DEBUG_FILE */ + +#if (PNG_DEBUG > 1) +/* Note: ["%s"m PNG_STRING_NEWLINE] probably does not work on + * non-ISO compilers + */ +# ifdef __STDC__ +# ifndef png_debug +# define png_debug(l,m) \ + { \ + int num_tabs=l; \ + fprintf(PNG_DEBUG_FILE,"%s"m PNG_STRING_NEWLINE,(num_tabs==1 ? "\t" : \ + (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":"")))); \ + } +# endif +# ifndef png_debug1 +# define png_debug1(l,m,p1) \ + { \ + int num_tabs=l; \ + fprintf(PNG_DEBUG_FILE,"%s"m PNG_STRING_NEWLINE,(num_tabs==1 ? "\t" : \ + (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))),p1); \ + } +# endif +# ifndef png_debug2 +# define png_debug2(l,m,p1,p2) \ + { \ + int num_tabs=l; \ + fprintf(PNG_DEBUG_FILE,"%s"m PNG_STRING_NEWLINE,(num_tabs==1 ? "\t" : \ + (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))),p1,p2); \ + } +# endif +# else /* __STDC __ */ +# ifndef png_debug +# define png_debug(l,m) \ + { \ + int num_tabs=l; \ + char format[256]; \ + snprintf(format,256,"%s%s%s",(num_tabs==1 ? "\t" : \ + (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))), \ + m,PNG_STRING_NEWLINE); \ + fprintf(PNG_DEBUG_FILE,format); \ + } +# endif +# ifndef png_debug1 +# define png_debug1(l,m,p1) \ + { \ + int num_tabs=l; \ + char format[256]; \ + snprintf(format,256,"%s%s%s",(num_tabs==1 ? "\t" : \ + (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))), \ + m,PNG_STRING_NEWLINE); \ + fprintf(PNG_DEBUG_FILE,format,p1); \ + } +# endif +# ifndef png_debug2 +# define png_debug2(l,m,p1,p2) \ + { \ + int num_tabs=l; \ + char format[256]; \ + snprintf(format,256,"%s%s%s",(num_tabs==1 ? "\t" : \ + (num_tabs==2 ? "\t\t":(num_tabs>2 ? "\t\t\t":""))), \ + m,PNG_STRING_NEWLINE); \ + fprintf(PNG_DEBUG_FILE,format,p1,p2); \ + } +# endif +# endif /* __STDC __ */ +#endif /* (PNG_DEBUG > 1) */ + +#endif /* _MSC_VER */ +#endif /* (PNG_DEBUG > 0) */ +#endif /* PNG_DEBUG */ +#ifndef png_debug +#define png_debug(l, m) +#endif +#ifndef png_debug1 +#define png_debug1(l, m, p1) +#endif +#ifndef png_debug2 +#define png_debug2(l, m, p1, p2) +#endif + +/* Maintainer: Put new private prototypes here ^ and in libpngpf.3 */ + +#ifdef __cplusplus +} +#endif + +#endif /* PNG_VERSION_INFO_ONLY */ +#endif /* PNGPRIV_H */ diff --git a/cocos2dx/platform/third_party/linux/libpng/readpng.h b/cocos2dx/platform/third_party/linux/libpng/readpng.h new file mode 100644 index 0000000000..fad9fe3b4c --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/readpng.h @@ -0,0 +1,88 @@ +/*--------------------------------------------------------------------------- + + rpng - simple PNG display program readpng.h + + --------------------------------------------------------------------------- + + Copyright (c) 1998-2007 Greg Roelofs. All rights reserved. + + This software is provided "as is," without warranty of any kind, + express or implied. In no event shall the author or contributors + be held liable for any damages arising in any way from the use of + this software. + + The contents of this file are DUAL-LICENSED. You may modify and/or + redistribute this software according to the terms of one of the + following two licenses (at your option): + + + LICENSE 1 ("BSD-like with advertising clause"): + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute + it freely, subject to the following restrictions: + + 1. Redistributions of source code must retain the above copyright + notice, disclaimer, and this list of conditions. + 2. Redistributions in binary form must reproduce the above copyright + notice, disclaimer, and this list of conditions in the documenta- + tion and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + + This product includes software developed by Greg Roelofs + and contributors for the book, "PNG: The Definitive Guide," + published by O'Reilly and Associates. + + + LICENSE 2 (GNU GPL v2 or later): + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + ---------------------------------------------------------------------------*/ + +#ifndef TRUE +# define TRUE 1 +# define FALSE 0 +#endif + +#ifndef MAX +# define MAX(a,b) ((a) > (b)? (a) : (b)) +# define MIN(a,b) ((a) < (b)? (a) : (b)) +#endif + +#ifdef DEBUG +# define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} +#else +# define Trace(x) ; +#endif + +typedef unsigned char uch; +typedef unsigned short ush; +typedef unsigned long ulg; + + +/* prototypes for public functions in readpng.c */ + +void readpng_version_info(void); + +int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight); + +int readpng_get_bgcolor(uch *bg_red, uch *bg_green, uch *bg_blue); + +uch *readpng_get_image(double display_exponent, int *pChannels, + ulg *pRowbytes); + +void readpng_cleanup(int free_image_data); diff --git a/cocos2dx/platform/third_party/linux/libpng/readpng2.h b/cocos2dx/platform/third_party/linux/libpng/readpng2.h new file mode 100644 index 0000000000..6b3660d7c1 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/readpng2.h @@ -0,0 +1,116 @@ +/*--------------------------------------------------------------------------- + + rpng2 - progressive-model PNG display program readpng2.h + + --------------------------------------------------------------------------- + + Copyright (c) 1998-2008 Greg Roelofs. All rights reserved. + + This software is provided "as is," without warranty of any kind, + express or implied. In no event shall the author or contributors + be held liable for any damages arising in any way from the use of + this software. + + The contents of this file are DUAL-LICENSED. You may modify and/or + redistribute this software according to the terms of one of the + following two licenses (at your option): + + + LICENSE 1 ("BSD-like with advertising clause"): + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute + it freely, subject to the following restrictions: + + 1. Redistributions of source code must retain the above copyright + notice, disclaimer, and this list of conditions. + 2. Redistributions in binary form must reproduce the above copyright + notice, disclaimer, and this list of conditions in the documenta- + tion and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + + This product includes software developed by Greg Roelofs + and contributors for the book, "PNG: The Definitive Guide," + published by O'Reilly and Associates. + + + LICENSE 2 (GNU GPL v2 or later): + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + ---------------------------------------------------------------------------*/ + +#ifndef TRUE +# define TRUE 1 +# define FALSE 0 +#endif + +#ifndef MAX +# define MAX(a,b) ((a) > (b)? (a) : (b)) +# define MIN(a,b) ((a) < (b)? (a) : (b)) +#endif + +#ifdef DEBUG +# define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} +#else +# define Trace(x) ; +#endif + +enum rpng2_states { + kPreInit = 0, + kWindowInit, + kDone +}; + +typedef unsigned char uch; +typedef unsigned short ush; +typedef unsigned long ulg; + +typedef struct _mainprog_info { + double display_exponent; + ulg width; + ulg height; + void *png_ptr; + void *info_ptr; + void (*mainprog_init)(void); + void (*mainprog_display_row)(ulg row_num); + void (*mainprog_finish_display)(void); + uch *image_data; + uch **row_pointers; + jmp_buf jmpbuf; + int passes; /* not used */ + int pass; + int rowbytes; + int channels; + int need_bgcolor; + int state; + uch bg_red; + uch bg_green; + uch bg_blue; +} mainprog_info; + + +/* prototypes for public functions in readpng2.c */ + +void readpng2_version_info(void); + +int readpng2_check_sig(uch *sig, int num); + +int readpng2_init(mainprog_info *mainprog_ptr); + +int readpng2_decode_data(mainprog_info *mainprog_ptr, uch *rawbuf, ulg length); + +void readpng2_cleanup(mainprog_info *mainprog_ptr); diff --git a/cocos2dx/platform/third_party/linux/libpng/resource.h b/cocos2dx/platform/third_party/linux/libpng/resource.h new file mode 100644 index 0000000000..611dd035f0 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/resource.h @@ -0,0 +1,23 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Developer Studio generated include file. +// Used by VisualPng.rc +// +#define IDM_FILE_OPEN 40001 +#define IDM_FILE_SAVE 40002 +#define IDM_FILE_NEXT 40003 +#define IDM_FILE_PREVIOUS 40004 +#define IDM_FILE_EXIT 40005 +#define IDM_OPTIONS_BACKGROUND 40006 +#define IDM_OPTIONS_STRETCH 40007 +#define IDM_HELP_ABOUT 40008 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 113 +#define _APS_NEXT_COMMAND_VALUE 40009 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/cocos2dx/platform/third_party/linux/libpng/writepng.h b/cocos2dx/platform/third_party/linux/libpng/writepng.h new file mode 100644 index 0000000000..78b966b587 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libpng/writepng.h @@ -0,0 +1,133 @@ +/*--------------------------------------------------------------------------- + + wpng - simple PNG-writing program writepng.h + + --------------------------------------------------------------------------- + + Copyright (c) 1998-2007 Greg Roelofs. All rights reserved. + + This software is provided "as is," without warranty of any kind, + express or implied. In no event shall the author or contributors + be held liable for any damages arising in any way from the use of + this software. + + The contents of this file are DUAL-LICENSED. You may modify and/or + redistribute this software according to the terms of one of the + following two licenses (at your option): + + + LICENSE 1 ("BSD-like with advertising clause"): + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute + it freely, subject to the following restrictions: + + 1. Redistributions of source code must retain the above copyright + notice, disclaimer, and this list of conditions. + 2. Redistributions in binary form must reproduce the above copyright + notice, disclaimer, and this list of conditions in the documenta- + tion and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + + This product includes software developed by Greg Roelofs + and contributors for the book, "PNG: The Definitive Guide," + published by O'Reilly and Associates. + + + LICENSE 2 (GNU GPL v2 or later): + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + ---------------------------------------------------------------------------*/ + +#ifndef TRUE +# define TRUE 1 +# define FALSE 0 +#endif + +#ifndef MAX +# define MAX(a,b) ((a) > (b)? (a) : (b)) +# define MIN(a,b) ((a) < (b)? (a) : (b)) +#endif + +#ifdef DEBUG +# define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} +#else +# define Trace(x) ; +#endif + +#define TEXT_TITLE 0x01 +#define TEXT_AUTHOR 0x02 +#define TEXT_DESC 0x04 +#define TEXT_COPY 0x08 +#define TEXT_EMAIL 0x10 +#define TEXT_URL 0x20 + +#define TEXT_TITLE_OFFSET 0 +#define TEXT_AUTHOR_OFFSET 72 +#define TEXT_COPY_OFFSET (2*72) +#define TEXT_EMAIL_OFFSET (3*72) +#define TEXT_URL_OFFSET (4*72) +#define TEXT_DESC_OFFSET (5*72) + +typedef unsigned char uch; +typedef unsigned short ush; +typedef unsigned long ulg; + +typedef struct _mainprog_info { + double gamma; + long width; + long height; + time_t modtime; + FILE *infile; + FILE *outfile; + void *png_ptr; + void *info_ptr; + uch *image_data; + uch **row_pointers; + char *title; + char *author; + char *desc; + char *copyright; + char *email; + char *url; + int filter; /* command-line-filter flag, not PNG row filter! */ + int pnmtype; + int sample_depth; + int interlaced; + int have_bg; + int have_time; + int have_text; + jmp_buf jmpbuf; + uch bg_red; + uch bg_green; + uch bg_blue; +} mainprog_info; + + +/* prototypes for public functions in writepng.c */ + +void writepng_version_info(void); + +int writepng_init(mainprog_info *mainprog_ptr); + +int writepng_encode_image(mainprog_info *mainprog_ptr); + +int writepng_encode_row(mainprog_info *mainprog_ptr); + +int writepng_encode_finish(mainprog_info *mainprog_ptr); + +void writepng_cleanup(mainprog_info *mainprog_ptr); diff --git a/cocos2dx/platform/third_party/linux/libraries/libfreetype.a.REMOVED.git-id b/cocos2dx/platform/third_party/linux/libraries/libfreetype.a.REMOVED.git-id new file mode 100644 index 0000000000..2009063fc2 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libraries/libfreetype.a.REMOVED.git-id @@ -0,0 +1 @@ +d93d3233665073e77a9d0317369f53e89be3b642 \ No newline at end of file diff --git a/cocos2dx/platform/third_party/linux/libraries/libjpeg.a.REMOVED.git-id b/cocos2dx/platform/third_party/linux/libraries/libjpeg.a.REMOVED.git-id new file mode 100644 index 0000000000..25eae837f9 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libraries/libjpeg.a.REMOVED.git-id @@ -0,0 +1 @@ +37d0b7101cea5dff8e28a57fe552d2301d6acd23 \ No newline at end of file diff --git a/cocos2dx/platform/third_party/linux/libraries/libpng.a.REMOVED.git-id b/cocos2dx/platform/third_party/linux/libraries/libpng.a.REMOVED.git-id new file mode 100644 index 0000000000..35bc138cea --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libraries/libpng.a.REMOVED.git-id @@ -0,0 +1 @@ +9d5ef2f5aa3f54e67af7add2d3ac278cc8199545 \ No newline at end of file diff --git a/cocos2dx/platform/third_party/linux/libraries/libpng15.a.REMOVED.git-id b/cocos2dx/platform/third_party/linux/libraries/libpng15.a.REMOVED.git-id new file mode 100644 index 0000000000..c38444e1ea --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libraries/libpng15.a.REMOVED.git-id @@ -0,0 +1 @@ +ba732a1c08a59975bbb5bd74c3b708fbf742c109 \ No newline at end of file diff --git a/cocos2dx/platform/third_party/linux/libraries/libxml2.a.REMOVED.git-id b/cocos2dx/platform/third_party/linux/libraries/libxml2.a.REMOVED.git-id new file mode 100644 index 0000000000..86bce72972 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libraries/libxml2.a.REMOVED.git-id @@ -0,0 +1 @@ +b9a6f83bf492025195f7bea57d25a1e45bff9d5e \ No newline at end of file diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/DOCBparser.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/DOCBparser.h new file mode 100644 index 0000000000..461d4ee802 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/DOCBparser.h @@ -0,0 +1,96 @@ +/* + * Summary: old DocBook SGML parser + * Description: interface for a DocBook SGML non-verifying parser + * This code is DEPRECATED, and should not be used anymore. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __DOCB_PARSER_H__ +#define __DOCB_PARSER_H__ +#include <libxml/xmlversion.h> + +#ifdef LIBXML_DOCB_ENABLED + +#include <libxml/parser.h> +#include <libxml/parserInternals.h> + +#ifndef IN_LIBXML +#ifdef __GNUC__ +#warning "The DOCBparser module has been deprecated in libxml2-2.6.0" +#endif +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Most of the back-end structures from XML and SGML are shared. + */ +typedef xmlParserCtxt docbParserCtxt; +typedef xmlParserCtxtPtr docbParserCtxtPtr; +typedef xmlSAXHandler docbSAXHandler; +typedef xmlSAXHandlerPtr docbSAXHandlerPtr; +typedef xmlParserInput docbParserInput; +typedef xmlParserInputPtr docbParserInputPtr; +typedef xmlDocPtr docbDocPtr; + +/* + * There is only few public functions. + */ +XMLPUBFUN int XMLCALL + docbEncodeEntities(unsigned char *out, + int *outlen, + const unsigned char *in, + int *inlen, int quoteChar); + +XMLPUBFUN docbDocPtr XMLCALL + docbSAXParseDoc (xmlChar *cur, + const char *encoding, + docbSAXHandlerPtr sax, + void *userData); +XMLPUBFUN docbDocPtr XMLCALL + docbParseDoc (xmlChar *cur, + const char *encoding); +XMLPUBFUN docbDocPtr XMLCALL + docbSAXParseFile (const char *filename, + const char *encoding, + docbSAXHandlerPtr sax, + void *userData); +XMLPUBFUN docbDocPtr XMLCALL + docbParseFile (const char *filename, + const char *encoding); + +/** + * Interfaces for the Push mode. + */ +XMLPUBFUN void XMLCALL + docbFreeParserCtxt (docbParserCtxtPtr ctxt); +XMLPUBFUN docbParserCtxtPtr XMLCALL + docbCreatePushParserCtxt(docbSAXHandlerPtr sax, + void *user_data, + const char *chunk, + int size, + const char *filename, + xmlCharEncoding enc); +XMLPUBFUN int XMLCALL + docbParseChunk (docbParserCtxtPtr ctxt, + const char *chunk, + int size, + int terminate); +XMLPUBFUN docbParserCtxtPtr XMLCALL + docbCreateFileParserCtxt(const char *filename, + const char *encoding); +XMLPUBFUN int XMLCALL + docbParseDocument (docbParserCtxtPtr ctxt); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_DOCB_ENABLED */ + +#endif /* __DOCB_PARSER_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/HTMLparser.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/HTMLparser.h new file mode 100644 index 0000000000..fbcc811e0e --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/HTMLparser.h @@ -0,0 +1,305 @@ +/* + * Summary: interface for an HTML 4.0 non-verifying parser + * Description: this module implements an HTML 4.0 non-verifying parser + * with API compatible with the XML parser ones. It should + * be able to parse "real world" HTML, even if severely + * broken from a specification point of view. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __HTML_PARSER_H__ +#define __HTML_PARSER_H__ +#include <libxml/xmlversion.h> +#include <libxml/parser.h> + +#ifdef LIBXML_HTML_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Most of the back-end structures from XML and HTML are shared. + */ +typedef xmlParserCtxt htmlParserCtxt; +typedef xmlParserCtxtPtr htmlParserCtxtPtr; +typedef xmlParserNodeInfo htmlParserNodeInfo; +typedef xmlSAXHandler htmlSAXHandler; +typedef xmlSAXHandlerPtr htmlSAXHandlerPtr; +typedef xmlParserInput htmlParserInput; +typedef xmlParserInputPtr htmlParserInputPtr; +typedef xmlDocPtr htmlDocPtr; +typedef xmlNodePtr htmlNodePtr; + +/* + * Internal description of an HTML element, representing HTML 4.01 + * and XHTML 1.0 (which share the same structure). + */ +typedef struct _htmlElemDesc htmlElemDesc; +typedef htmlElemDesc *htmlElemDescPtr; +struct _htmlElemDesc { + const char *name; /* The tag name */ + char startTag; /* Whether the start tag can be implied */ + char endTag; /* Whether the end tag can be implied */ + char saveEndTag; /* Whether the end tag should be saved */ + char empty; /* Is this an empty element ? */ + char depr; /* Is this a deprecated element ? */ + char dtd; /* 1: only in Loose DTD, 2: only Frameset one */ + char isinline; /* is this a block 0 or inline 1 element */ + const char *desc; /* the description */ + +/* NRK Jan.2003 + * New fields encapsulating HTML structure + * + * Bugs: + * This is a very limited representation. It fails to tell us when + * an element *requires* subelements (we only have whether they're + * allowed or not), and it doesn't tell us where CDATA and PCDATA + * are allowed. Some element relationships are not fully represented: + * these are flagged with the word MODIFIER + */ + const char** subelts; /* allowed sub-elements of this element */ + const char* defaultsubelt; /* subelement for suggested auto-repair + if necessary or NULL */ + const char** attrs_opt; /* Optional Attributes */ + const char** attrs_depr; /* Additional deprecated attributes */ + const char** attrs_req; /* Required attributes */ +}; + +/* + * Internal description of an HTML entity. + */ +typedef struct _htmlEntityDesc htmlEntityDesc; +typedef htmlEntityDesc *htmlEntityDescPtr; +struct _htmlEntityDesc { + unsigned int value; /* the UNICODE value for the character */ + const char *name; /* The entity name */ + const char *desc; /* the description */ +}; + +/* + * There is only few public functions. + */ +XMLPUBFUN const htmlElemDesc * XMLCALL + htmlTagLookup (const xmlChar *tag); +XMLPUBFUN const htmlEntityDesc * XMLCALL + htmlEntityLookup(const xmlChar *name); +XMLPUBFUN const htmlEntityDesc * XMLCALL + htmlEntityValueLookup(unsigned int value); + +XMLPUBFUN int XMLCALL + htmlIsAutoClosed(htmlDocPtr doc, + htmlNodePtr elem); +XMLPUBFUN int XMLCALL + htmlAutoCloseTag(htmlDocPtr doc, + const xmlChar *name, + htmlNodePtr elem); +XMLPUBFUN const htmlEntityDesc * XMLCALL + htmlParseEntityRef(htmlParserCtxtPtr ctxt, + const xmlChar **str); +XMLPUBFUN int XMLCALL + htmlParseCharRef(htmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + htmlParseElement(htmlParserCtxtPtr ctxt); + +XMLPUBFUN htmlParserCtxtPtr XMLCALL + htmlNewParserCtxt(void); + +XMLPUBFUN htmlParserCtxtPtr XMLCALL + htmlCreateMemoryParserCtxt(const char *buffer, + int size); + +XMLPUBFUN int XMLCALL + htmlParseDocument(htmlParserCtxtPtr ctxt); +XMLPUBFUN htmlDocPtr XMLCALL + htmlSAXParseDoc (xmlChar *cur, + const char *encoding, + htmlSAXHandlerPtr sax, + void *userData); +XMLPUBFUN htmlDocPtr XMLCALL + htmlParseDoc (xmlChar *cur, + const char *encoding); +XMLPUBFUN htmlDocPtr XMLCALL + htmlSAXParseFile(const char *filename, + const char *encoding, + htmlSAXHandlerPtr sax, + void *userData); +XMLPUBFUN htmlDocPtr XMLCALL + htmlParseFile (const char *filename, + const char *encoding); +XMLPUBFUN int XMLCALL + UTF8ToHtml (unsigned char *out, + int *outlen, + const unsigned char *in, + int *inlen); +XMLPUBFUN int XMLCALL + htmlEncodeEntities(unsigned char *out, + int *outlen, + const unsigned char *in, + int *inlen, int quoteChar); +XMLPUBFUN int XMLCALL + htmlIsScriptAttribute(const xmlChar *name); +XMLPUBFUN int XMLCALL + htmlHandleOmittedElem(int val); + +#ifdef LIBXML_PUSH_ENABLED +/** + * Interfaces for the Push mode. + */ +XMLPUBFUN htmlParserCtxtPtr XMLCALL + htmlCreatePushParserCtxt(htmlSAXHandlerPtr sax, + void *user_data, + const char *chunk, + int size, + const char *filename, + xmlCharEncoding enc); +XMLPUBFUN int XMLCALL + htmlParseChunk (htmlParserCtxtPtr ctxt, + const char *chunk, + int size, + int terminate); +#endif /* LIBXML_PUSH_ENABLED */ + +XMLPUBFUN void XMLCALL + htmlFreeParserCtxt (htmlParserCtxtPtr ctxt); + +/* + * New set of simpler/more flexible APIs + */ +/** + * xmlParserOption: + * + * This is the set of XML parser options that can be passed down + * to the xmlReadDoc() and similar calls. + */ +typedef enum { + HTML_PARSE_RECOVER = 1<<0, /* Relaxed parsing */ + HTML_PARSE_NODEFDTD = 1<<2, /* do not default a doctype if not found */ + HTML_PARSE_NOERROR = 1<<5, /* suppress error reports */ + HTML_PARSE_NOWARNING= 1<<6, /* suppress warning reports */ + HTML_PARSE_PEDANTIC = 1<<7, /* pedantic error reporting */ + HTML_PARSE_NOBLANKS = 1<<8, /* remove blank nodes */ + HTML_PARSE_NONET = 1<<11,/* Forbid network access */ + HTML_PARSE_NOIMPLIED= 1<<13,/* Do not add implied html/body... elements */ + HTML_PARSE_COMPACT = 1<<16 /* compact small text nodes */ +} htmlParserOption; + +XMLPUBFUN void XMLCALL + htmlCtxtReset (htmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + htmlCtxtUseOptions (htmlParserCtxtPtr ctxt, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlReadDoc (const xmlChar *cur, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlReadFile (const char *URL, + const char *encoding, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlReadMemory (const char *buffer, + int size, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlReadFd (int fd, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlReadIO (xmlInputReadCallback ioread, + xmlInputCloseCallback ioclose, + void *ioctx, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlCtxtReadDoc (xmlParserCtxtPtr ctxt, + const xmlChar *cur, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlCtxtReadFile (xmlParserCtxtPtr ctxt, + const char *filename, + const char *encoding, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlCtxtReadMemory (xmlParserCtxtPtr ctxt, + const char *buffer, + int size, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlCtxtReadFd (xmlParserCtxtPtr ctxt, + int fd, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN htmlDocPtr XMLCALL + htmlCtxtReadIO (xmlParserCtxtPtr ctxt, + xmlInputReadCallback ioread, + xmlInputCloseCallback ioclose, + void *ioctx, + const char *URL, + const char *encoding, + int options); + +/* NRK/Jan2003: further knowledge of HTML structure + */ +typedef enum { + HTML_NA = 0 , /* something we don't check at all */ + HTML_INVALID = 0x1 , + HTML_DEPRECATED = 0x2 , + HTML_VALID = 0x4 , + HTML_REQUIRED = 0xc /* VALID bit set so ( & HTML_VALID ) is TRUE */ +} htmlStatus ; + +/* Using htmlElemDesc rather than name here, to emphasise the fact + that otherwise there's a lookup overhead +*/ +XMLPUBFUN htmlStatus XMLCALL htmlAttrAllowed(const htmlElemDesc*, const xmlChar*, int) ; +XMLPUBFUN int XMLCALL htmlElementAllowedHere(const htmlElemDesc*, const xmlChar*) ; +XMLPUBFUN htmlStatus XMLCALL htmlElementStatusHere(const htmlElemDesc*, const htmlElemDesc*) ; +XMLPUBFUN htmlStatus XMLCALL htmlNodeStatus(const htmlNodePtr, int) ; +/** + * htmlDefaultSubelement: + * @elt: HTML element + * + * Returns the default subelement for this element + */ +#define htmlDefaultSubelement(elt) elt->defaultsubelt +/** + * htmlElementAllowedHereDesc: + * @parent: HTML parent element + * @elt: HTML element + * + * Checks whether an HTML element description may be a + * direct child of the specified element. + * + * Returns 1 if allowed; 0 otherwise. + */ +#define htmlElementAllowedHereDesc(parent,elt) \ + htmlElementAllowedHere((parent), (elt)->name) +/** + * htmlRequiredAttrs: + * @elt: HTML element + * + * Returns the attributes required for the specified element. + */ +#define htmlRequiredAttrs(elt) (elt)->attrs_req + + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_HTML_ENABLED */ +#endif /* __HTML_PARSER_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/HTMLtree.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/HTMLtree.h new file mode 100644 index 0000000000..6ea8207895 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/HTMLtree.h @@ -0,0 +1,147 @@ +/* + * Summary: specific APIs to process HTML tree, especially serialization + * Description: this module implements a few function needed to process + * tree in an HTML specific way. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __HTML_TREE_H__ +#define __HTML_TREE_H__ + +#include <stdio.h> +#include <libxml/xmlversion.h> +#include <libxml/tree.h> +#include <libxml/HTMLparser.h> + +#ifdef LIBXML_HTML_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + + +/** + * HTML_TEXT_NODE: + * + * Macro. A text node in a HTML document is really implemented + * the same way as a text node in an XML document. + */ +#define HTML_TEXT_NODE XML_TEXT_NODE +/** + * HTML_ENTITY_REF_NODE: + * + * Macro. An entity reference in a HTML document is really implemented + * the same way as an entity reference in an XML document. + */ +#define HTML_ENTITY_REF_NODE XML_ENTITY_REF_NODE +/** + * HTML_COMMENT_NODE: + * + * Macro. A comment in a HTML document is really implemented + * the same way as a comment in an XML document. + */ +#define HTML_COMMENT_NODE XML_COMMENT_NODE +/** + * HTML_PRESERVE_NODE: + * + * Macro. A preserved node in a HTML document is really implemented + * the same way as a CDATA section in an XML document. + */ +#define HTML_PRESERVE_NODE XML_CDATA_SECTION_NODE +/** + * HTML_PI_NODE: + * + * Macro. A processing instruction in a HTML document is really implemented + * the same way as a processing instruction in an XML document. + */ +#define HTML_PI_NODE XML_PI_NODE + +XMLPUBFUN htmlDocPtr XMLCALL + htmlNewDoc (const xmlChar *URI, + const xmlChar *ExternalID); +XMLPUBFUN htmlDocPtr XMLCALL + htmlNewDocNoDtD (const xmlChar *URI, + const xmlChar *ExternalID); +XMLPUBFUN const xmlChar * XMLCALL + htmlGetMetaEncoding (htmlDocPtr doc); +XMLPUBFUN int XMLCALL + htmlSetMetaEncoding (htmlDocPtr doc, + const xmlChar *encoding); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + htmlDocDumpMemory (xmlDocPtr cur, + xmlChar **mem, + int *size); +XMLPUBFUN void XMLCALL + htmlDocDumpMemoryFormat (xmlDocPtr cur, + xmlChar **mem, + int *size, + int format); +XMLPUBFUN int XMLCALL + htmlDocDump (FILE *f, + xmlDocPtr cur); +XMLPUBFUN int XMLCALL + htmlSaveFile (const char *filename, + xmlDocPtr cur); +XMLPUBFUN int XMLCALL + htmlNodeDump (xmlBufferPtr buf, + xmlDocPtr doc, + xmlNodePtr cur); +XMLPUBFUN void XMLCALL + htmlNodeDumpFile (FILE *out, + xmlDocPtr doc, + xmlNodePtr cur); +XMLPUBFUN int XMLCALL + htmlNodeDumpFileFormat (FILE *out, + xmlDocPtr doc, + xmlNodePtr cur, + const char *encoding, + int format); +XMLPUBFUN int XMLCALL + htmlSaveFileEnc (const char *filename, + xmlDocPtr cur, + const char *encoding); +XMLPUBFUN int XMLCALL + htmlSaveFileFormat (const char *filename, + xmlDocPtr cur, + const char *encoding, + int format); + +XMLPUBFUN void XMLCALL + htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, + xmlDocPtr doc, + xmlNodePtr cur, + const char *encoding, + int format); +XMLPUBFUN void XMLCALL + htmlDocContentDumpOutput(xmlOutputBufferPtr buf, + xmlDocPtr cur, + const char *encoding); +XMLPUBFUN void XMLCALL + htmlDocContentDumpFormatOutput(xmlOutputBufferPtr buf, + xmlDocPtr cur, + const char *encoding, + int format); +XMLPUBFUN void XMLCALL + htmlNodeDumpOutput (xmlOutputBufferPtr buf, + xmlDocPtr doc, + xmlNodePtr cur, + const char *encoding); + +#endif /* LIBXML_OUTPUT_ENABLED */ + +XMLPUBFUN int XMLCALL + htmlIsBooleanAttr (const xmlChar *name); + + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_HTML_ENABLED */ + +#endif /* __HTML_TREE_H__ */ + diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/Makefile b/cocos2dx/platform/third_party/linux/libxml2/libxml/Makefile new file mode 100644 index 0000000000..d259852ee1 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/Makefile @@ -0,0 +1,612 @@ +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# include/libxml/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + + +pkgdatadir = $(datadir)/libxml2 +pkgincludedir = $(includedir)/libxml2 +pkglibdir = $(libdir)/libxml2 +pkglibexecdir = $(libexecdir)/libxml2 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = i686-pc-linux-gnu +host_triplet = i686-pc-linux-gnu +subdir = include/libxml +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/xmlversion.h.in $(xmlinc_HEADERS) +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = xmlversion.h +CONFIG_CLEAN_VPATH_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__installdirs = "$(DESTDIR)$(xmlincdir)" +HEADERS = $(xmlinc_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/laschweinski/source/libxml2-2.7.8/missing --run aclocal-1.11 +AMTAR = ${SHELL} /home/laschweinski/source/libxml2-2.7.8/missing --run tar +AR = ar +AS = as +AUTOCONF = ${SHELL} /home/laschweinski/source/libxml2-2.7.8/missing --run autoconf +AUTOHEADER = ${SHELL} /home/laschweinski/source/libxml2-2.7.8/missing --run autoheader +AUTOMAKE = ${SHELL} /home/laschweinski/source/libxml2-2.7.8/missing --run automake-1.11 +AWK = gawk +BASE_THREAD_LIBS = -lpthread +C14N_OBJ = c14n.c +CATALOG_OBJ = catalog.o +CC = gcc +CCDEPMODE = depmode=gcc3 +CFLAGS = -g -O2 -pedantic -W -Wformat -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wredundant-decls +CPP = gcc -E +CPPFLAGS = +CYGPATH_W = echo +CYGWIN_EXTRA_LDFLAGS = +CYGWIN_EXTRA_PYTHON_LIBADD = +DEBUG_OBJ = debugXML.o +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = dlltool +DOCB_OBJ = DOCBparser.o +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /bin/grep -E +EXEEXT = +FGREP = /bin/grep -F +FTP_OBJ = nanoftp.o +GREP = /bin/grep +HAVE_ISINF = +HAVE_ISNAN = +HTML_DIR = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html +HTML_OBJ = HTMLparser.o HTMLtree.o +HTTP_OBJ = nanohttp.o +ICONV_LIBS = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = /usr/bin/ld +LDFLAGS = +LIBOBJS = +LIBS = +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIBXML_MAJOR_VERSION = 2 +LIBXML_MICRO_VERSION = 8 +LIBXML_MINOR_VERSION = 7 +LIBXML_VERSION = 2.7.8 +LIBXML_VERSION_EXTRA = +LIBXML_VERSION_INFO = 9:8:7 +LIBXML_VERSION_NUMBER = 20708 +LIPO = +LN_S = ln -s +LTLIBOBJS = +MAKEINFO = ${SHELL} /home/laschweinski/source/libxml2-2.7.8/missing --run makeinfo +MKDIR_P = /bin/mkdir -p +MODULE_EXTENSION = .so +MODULE_PLATFORM_LIBS = -ldl +MV = /bin/mv +M_LIBS = -lm +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = libxml2 +PACKAGE_BUGREPORT = +PACKAGE_NAME = +PACKAGE_STRING = +PACKAGE_TARNAME = +PACKAGE_URL = +PACKAGE_VERSION = +PATH_SEPARATOR = : +PERL = /usr/bin/perl +PYTHON = /usr/bin/python +PYTHON_INCLUDES = +PYTHON_LIBS = +PYTHON_SITE_PACKAGES = /usr/lib/python2.6/dist-packages +PYTHON_SUBDIR = +PYTHON_TESTS = +PYTHON_VERSION = 2.6 +RANLIB = ranlib +RDL_LIBS = +READER_TEST = Readertests +RELDATE = Thu Aug 25 2011 +RM = /bin/rm +SED = /bin/sed +SET_MAKE = +SHELL = /bin/sh +STATIC_BINARIES = +STRIP = strip +TAR = /bin/tar +TEST_C14N = C14Ntests +TEST_CATALOG = Catatests +TEST_DEBUG = Scripttests +TEST_HTML = HTMLtests +TEST_MODULES = ModuleTests +TEST_PATTERN = Patterntests +TEST_PHTML = HTMLPushtests +TEST_PUSH = XMLPushtests +TEST_REGEXPS = Regexptests Automatatests +TEST_SAX = SAXtests +TEST_SCHEMAS = Schemastests Relaxtests +TEST_SCHEMATRON = Schematrontests +TEST_THREADS = Threadtests +TEST_VALID = Validtests +TEST_VTIME = VTimingtests +TEST_XINCLUDE = XIncludetests +TEST_XPATH = XPathtests +TEST_XPTR = XPtrtests +THREADS_W32 = +THREAD_CFLAGS = -D_REENTRANT +THREAD_LIBS = +U = +VERSION = 2.7.8 +VERSION_SCRIPT_FLAGS = -Wl,--version-script= +WGET = /usr/bin/wget +WIN32_EXTRA_LDFLAGS = +WIN32_EXTRA_LIBADD = +WIN32_EXTRA_PYTHON_LIBADD = +WITH_C14N = 1 +WITH_CATALOG = 1 +WITH_DEBUG = 1 +WITH_DOCB = 1 +WITH_FTP = 1 +WITH_HTML = 1 +WITH_HTTP = 1 +WITH_ICONV = 1 +WITH_ICU = 0 +WITH_ISO8859X = 1 +WITH_LEGACY = 1 +WITH_MEM_DEBUG = 0 +WITH_MODULES = 1 +WITH_OUTPUT = 1 +WITH_PATTERN = 1 +WITH_PUSH = 1 +WITH_READER = 1 +WITH_REGEXPS = 1 +WITH_RUN_DEBUG = 0 +WITH_SAX1 = 1 +WITH_SCHEMAS = 1 +WITH_SCHEMATRON = 1 +WITH_THREADS = 1 +WITH_TREE = 1 +WITH_TRIO = 0 +WITH_VALID = 1 +WITH_WRITER = 1 +WITH_XINCLUDE = 1 +WITH_XPATH = 1 +WITH_XPTR = 1 +WITH_ZLIB = 1 +XINCLUDE_OBJ = xinclude.o +XMLLINT = /usr/bin/xmllint +XML_CFLAGS = +XML_INCLUDEDIR = -I${includedir}/libxml2 +XML_LIBDIR = -L${libdir} +XML_LIBS = -lxml2 -lz -lm +XML_LIBTOOLLIBS = libxml2.la +XPATH_OBJ = xpath.o +XPTR_OBJ = xpointer.o +XSLTPROC = /usr/bin/xsltproc +Z_CFLAGS = +Z_LIBS = -lz +abs_builddir = /home/laschweinski/source/libxml2-2.7.8/include/libxml +abs_srcdir = /home/laschweinski/source/libxml2-2.7.8/include/libxml +abs_top_builddir = /home/laschweinski/source/libxml2-2.7.8 +abs_top_srcdir = /home/laschweinski/source/libxml2-2.7.8 +ac_ct_CC = gcc +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = ${AMTAR} chof - "$$tardir" +am__untar = ${AMTAR} xf - +bindir = ${exec_prefix}/bin +build = i686-pc-linux-gnu +build_alias = +build_cpu = i686 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = i686-pc-linux-gnu +host_alias = +host_cpu = i686 +host_os = linux-gnu +host_vendor = pc +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/laschweinski/source/libxml2-2.7.8/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = /bin/mkdir -p +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +pythondir = $(libdir)/python$(PYTHON_VERSION)/site-packages +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../.. +xmlincdir = $(includedir)/libxml2/libxml +xmlinc_HEADERS = \ + SAX.h \ + entities.h \ + encoding.h \ + parser.h \ + parserInternals.h \ + xmlerror.h \ + HTMLparser.h \ + HTMLtree.h \ + debugXML.h \ + tree.h \ + list.h \ + hash.h \ + xpath.h \ + xpathInternals.h \ + xpointer.h \ + xinclude.h \ + xmlIO.h \ + xmlmemory.h \ + nanohttp.h \ + nanoftp.h \ + uri.h \ + valid.h \ + xlink.h \ + xmlversion.h \ + DOCBparser.h \ + catalog.h \ + threads.h \ + globals.h \ + c14n.h \ + xmlautomata.h \ + xmlregexp.h \ + xmlmodule.h \ + xmlschemas.h \ + schemasInternals.h \ + xmlschemastypes.h \ + xmlstring.h \ + xmlunicode.h \ + xmlreader.h \ + relaxng.h \ + dict.h \ + SAX2.h \ + xmlexports.h \ + xmlwriter.h \ + chvalid.h \ + pattern.h \ + xmlsave.h \ + schematron.h + +EXTRA_DIST = xmlversion.h.in +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/libxml/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu include/libxml/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +xmlversion.h: $(top_builddir)/config.status $(srcdir)/xmlversion.h.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-xmlincHEADERS: $(xmlinc_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(xmlincdir)" || $(MKDIR_P) "$(DESTDIR)$(xmlincdir)" + @list='$(xmlinc_HEADERS)'; test -n "$(xmlincdir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(xmlincdir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(xmlincdir)" || exit $$?; \ + done + +uninstall-xmlincHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(xmlinc_HEADERS)'; test -n "$(xmlincdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(xmlincdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(xmlincdir)" && rm -f $$files + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(xmlincdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-xmlincHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-xmlincHEADERS + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libtool ctags distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip install-xmlincHEADERS \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-xmlincHEADERS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/Makefile.am b/cocos2dx/platform/third_party/linux/libxml2/libxml/Makefile.am new file mode 100644 index 0000000000..cf9297aad6 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/Makefile.am @@ -0,0 +1,54 @@ +## Process this file with automake to produce Makefile.in + +xmlincdir = $(includedir)/libxml2/libxml + +xmlinc_HEADERS = \ + SAX.h \ + entities.h \ + encoding.h \ + parser.h \ + parserInternals.h \ + xmlerror.h \ + HTMLparser.h \ + HTMLtree.h \ + debugXML.h \ + tree.h \ + list.h \ + hash.h \ + xpath.h \ + xpathInternals.h \ + xpointer.h \ + xinclude.h \ + xmlIO.h \ + xmlmemory.h \ + nanohttp.h \ + nanoftp.h \ + uri.h \ + valid.h \ + xlink.h \ + xmlversion.h \ + DOCBparser.h \ + catalog.h \ + threads.h \ + globals.h \ + c14n.h \ + xmlautomata.h \ + xmlregexp.h \ + xmlmodule.h \ + xmlschemas.h \ + schemasInternals.h \ + xmlschemastypes.h \ + xmlstring.h \ + xmlunicode.h \ + xmlreader.h \ + relaxng.h \ + dict.h \ + SAX2.h \ + xmlexports.h \ + xmlwriter.h \ + chvalid.h \ + pattern.h \ + xmlsave.h \ + schematron.h + +EXTRA_DIST = xmlversion.h.in diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/Makefile.in b/cocos2dx/platform/third_party/linux/libxml2/libxml/Makefile.in new file mode 100644 index 0000000000..4ce011c511 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/Makefile.in @@ -0,0 +1,612 @@ +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = include/libxml +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/xmlversion.h.in $(xmlinc_HEADERS) +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = xmlversion.h +CONFIG_CLEAN_VPATH_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__installdirs = "$(DESTDIR)$(xmlincdir)" +HEADERS = $(xmlinc_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BASE_THREAD_LIBS = @BASE_THREAD_LIBS@ +C14N_OBJ = @C14N_OBJ@ +CATALOG_OBJ = @CATALOG_OBJ@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +CYGWIN_EXTRA_LDFLAGS = @CYGWIN_EXTRA_LDFLAGS@ +CYGWIN_EXTRA_PYTHON_LIBADD = @CYGWIN_EXTRA_PYTHON_LIBADD@ +DEBUG_OBJ = @DEBUG_OBJ@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DOCB_OBJ = @DOCB_OBJ@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FTP_OBJ = @FTP_OBJ@ +GREP = @GREP@ +HAVE_ISINF = @HAVE_ISINF@ +HAVE_ISNAN = @HAVE_ISNAN@ +HTML_DIR = @HTML_DIR@ +HTML_OBJ = @HTML_OBJ@ +HTTP_OBJ = @HTTP_OBJ@ +ICONV_LIBS = @ICONV_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_MAJOR_VERSION = @LIBXML_MAJOR_VERSION@ +LIBXML_MICRO_VERSION = @LIBXML_MICRO_VERSION@ +LIBXML_MINOR_VERSION = @LIBXML_MINOR_VERSION@ +LIBXML_VERSION = @LIBXML_VERSION@ +LIBXML_VERSION_EXTRA = @LIBXML_VERSION_EXTRA@ +LIBXML_VERSION_INFO = @LIBXML_VERSION_INFO@ +LIBXML_VERSION_NUMBER = @LIBXML_VERSION_NUMBER@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MODULE_EXTENSION = @MODULE_EXTENSION@ +MODULE_PLATFORM_LIBS = @MODULE_PLATFORM_LIBS@ +MV = @MV@ +M_LIBS = @M_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +PYTHON = @PYTHON@ +PYTHON_INCLUDES = @PYTHON_INCLUDES@ +PYTHON_LIBS = @PYTHON_LIBS@ +PYTHON_SITE_PACKAGES = @PYTHON_SITE_PACKAGES@ +PYTHON_SUBDIR = @PYTHON_SUBDIR@ +PYTHON_TESTS = @PYTHON_TESTS@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RDL_LIBS = @RDL_LIBS@ +READER_TEST = @READER_TEST@ +RELDATE = @RELDATE@ +RM = @RM@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STATIC_BINARIES = @STATIC_BINARIES@ +STRIP = @STRIP@ +TAR = @TAR@ +TEST_C14N = @TEST_C14N@ +TEST_CATALOG = @TEST_CATALOG@ +TEST_DEBUG = @TEST_DEBUG@ +TEST_HTML = @TEST_HTML@ +TEST_MODULES = @TEST_MODULES@ +TEST_PATTERN = @TEST_PATTERN@ +TEST_PHTML = @TEST_PHTML@ +TEST_PUSH = @TEST_PUSH@ +TEST_REGEXPS = @TEST_REGEXPS@ +TEST_SAX = @TEST_SAX@ +TEST_SCHEMAS = @TEST_SCHEMAS@ +TEST_SCHEMATRON = @TEST_SCHEMATRON@ +TEST_THREADS = @TEST_THREADS@ +TEST_VALID = @TEST_VALID@ +TEST_VTIME = @TEST_VTIME@ +TEST_XINCLUDE = @TEST_XINCLUDE@ +TEST_XPATH = @TEST_XPATH@ +TEST_XPTR = @TEST_XPTR@ +THREADS_W32 = @THREADS_W32@ +THREAD_CFLAGS = @THREAD_CFLAGS@ +THREAD_LIBS = @THREAD_LIBS@ +U = @U@ +VERSION = @VERSION@ +VERSION_SCRIPT_FLAGS = @VERSION_SCRIPT_FLAGS@ +WGET = @WGET@ +WIN32_EXTRA_LDFLAGS = @WIN32_EXTRA_LDFLAGS@ +WIN32_EXTRA_LIBADD = @WIN32_EXTRA_LIBADD@ +WIN32_EXTRA_PYTHON_LIBADD = @WIN32_EXTRA_PYTHON_LIBADD@ +WITH_C14N = @WITH_C14N@ +WITH_CATALOG = @WITH_CATALOG@ +WITH_DEBUG = @WITH_DEBUG@ +WITH_DOCB = @WITH_DOCB@ +WITH_FTP = @WITH_FTP@ +WITH_HTML = @WITH_HTML@ +WITH_HTTP = @WITH_HTTP@ +WITH_ICONV = @WITH_ICONV@ +WITH_ICU = @WITH_ICU@ +WITH_ISO8859X = @WITH_ISO8859X@ +WITH_LEGACY = @WITH_LEGACY@ +WITH_MEM_DEBUG = @WITH_MEM_DEBUG@ +WITH_MODULES = @WITH_MODULES@ +WITH_OUTPUT = @WITH_OUTPUT@ +WITH_PATTERN = @WITH_PATTERN@ +WITH_PUSH = @WITH_PUSH@ +WITH_READER = @WITH_READER@ +WITH_REGEXPS = @WITH_REGEXPS@ +WITH_RUN_DEBUG = @WITH_RUN_DEBUG@ +WITH_SAX1 = @WITH_SAX1@ +WITH_SCHEMAS = @WITH_SCHEMAS@ +WITH_SCHEMATRON = @WITH_SCHEMATRON@ +WITH_THREADS = @WITH_THREADS@ +WITH_TREE = @WITH_TREE@ +WITH_TRIO = @WITH_TRIO@ +WITH_VALID = @WITH_VALID@ +WITH_WRITER = @WITH_WRITER@ +WITH_XINCLUDE = @WITH_XINCLUDE@ +WITH_XPATH = @WITH_XPATH@ +WITH_XPTR = @WITH_XPTR@ +WITH_ZLIB = @WITH_ZLIB@ +XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ +XML_CFLAGS = @XML_CFLAGS@ +XML_INCLUDEDIR = @XML_INCLUDEDIR@ +XML_LIBDIR = @XML_LIBDIR@ +XML_LIBS = @XML_LIBS@ +XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ +XPATH_OBJ = @XPATH_OBJ@ +XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ +Z_CFLAGS = @Z_CFLAGS@ +Z_LIBS = @Z_LIBS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +pythondir = @pythondir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xmlincdir = $(includedir)/libxml2/libxml +xmlinc_HEADERS = \ + SAX.h \ + entities.h \ + encoding.h \ + parser.h \ + parserInternals.h \ + xmlerror.h \ + HTMLparser.h \ + HTMLtree.h \ + debugXML.h \ + tree.h \ + list.h \ + hash.h \ + xpath.h \ + xpathInternals.h \ + xpointer.h \ + xinclude.h \ + xmlIO.h \ + xmlmemory.h \ + nanohttp.h \ + nanoftp.h \ + uri.h \ + valid.h \ + xlink.h \ + xmlversion.h \ + DOCBparser.h \ + catalog.h \ + threads.h \ + globals.h \ + c14n.h \ + xmlautomata.h \ + xmlregexp.h \ + xmlmodule.h \ + xmlschemas.h \ + schemasInternals.h \ + xmlschemastypes.h \ + xmlstring.h \ + xmlunicode.h \ + xmlreader.h \ + relaxng.h \ + dict.h \ + SAX2.h \ + xmlexports.h \ + xmlwriter.h \ + chvalid.h \ + pattern.h \ + xmlsave.h \ + schematron.h + +EXTRA_DIST = xmlversion.h.in +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/libxml/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu include/libxml/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +xmlversion.h: $(top_builddir)/config.status $(srcdir)/xmlversion.h.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-xmlincHEADERS: $(xmlinc_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(xmlincdir)" || $(MKDIR_P) "$(DESTDIR)$(xmlincdir)" + @list='$(xmlinc_HEADERS)'; test -n "$(xmlincdir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(xmlincdir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(xmlincdir)" || exit $$?; \ + done + +uninstall-xmlincHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(xmlinc_HEADERS)'; test -n "$(xmlincdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(xmlincdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(xmlincdir)" && rm -f $$files + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(xmlincdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-xmlincHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-xmlincHEADERS + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libtool ctags distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip install-xmlincHEADERS \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-xmlincHEADERS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/SAX.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/SAX.h new file mode 100644 index 0000000000..0ca161b608 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/SAX.h @@ -0,0 +1,173 @@ +/* + * Summary: Old SAX version 1 handler, deprecated + * Description: DEPRECATED set of SAX version 1 interfaces used to + * build the DOM tree. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + + +#ifndef __XML_SAX_H__ +#define __XML_SAX_H__ + +#include <stdio.h> +#include <stdlib.h> +#include <libxml/xmlversion.h> +#include <libxml/parser.h> +#include <libxml/xlink.h> + +#ifdef LIBXML_LEGACY_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif +XMLPUBFUN const xmlChar * XMLCALL + getPublicId (void *ctx); +XMLPUBFUN const xmlChar * XMLCALL + getSystemId (void *ctx); +XMLPUBFUN void XMLCALL + setDocumentLocator (void *ctx, + xmlSAXLocatorPtr loc); + +XMLPUBFUN int XMLCALL + getLineNumber (void *ctx); +XMLPUBFUN int XMLCALL + getColumnNumber (void *ctx); + +XMLPUBFUN int XMLCALL + isStandalone (void *ctx); +XMLPUBFUN int XMLCALL + hasInternalSubset (void *ctx); +XMLPUBFUN int XMLCALL + hasExternalSubset (void *ctx); + +XMLPUBFUN void XMLCALL + internalSubset (void *ctx, + const xmlChar *name, + const xmlChar *ExternalID, + const xmlChar *SystemID); +XMLPUBFUN void XMLCALL + externalSubset (void *ctx, + const xmlChar *name, + const xmlChar *ExternalID, + const xmlChar *SystemID); +XMLPUBFUN xmlEntityPtr XMLCALL + getEntity (void *ctx, + const xmlChar *name); +XMLPUBFUN xmlEntityPtr XMLCALL + getParameterEntity (void *ctx, + const xmlChar *name); +XMLPUBFUN xmlParserInputPtr XMLCALL + resolveEntity (void *ctx, + const xmlChar *publicId, + const xmlChar *systemId); + +XMLPUBFUN void XMLCALL + entityDecl (void *ctx, + const xmlChar *name, + int type, + const xmlChar *publicId, + const xmlChar *systemId, + xmlChar *content); +XMLPUBFUN void XMLCALL + attributeDecl (void *ctx, + const xmlChar *elem, + const xmlChar *fullname, + int type, + int def, + const xmlChar *defaultValue, + xmlEnumerationPtr tree); +XMLPUBFUN void XMLCALL + elementDecl (void *ctx, + const xmlChar *name, + int type, + xmlElementContentPtr content); +XMLPUBFUN void XMLCALL + notationDecl (void *ctx, + const xmlChar *name, + const xmlChar *publicId, + const xmlChar *systemId); +XMLPUBFUN void XMLCALL + unparsedEntityDecl (void *ctx, + const xmlChar *name, + const xmlChar *publicId, + const xmlChar *systemId, + const xmlChar *notationName); + +XMLPUBFUN void XMLCALL + startDocument (void *ctx); +XMLPUBFUN void XMLCALL + endDocument (void *ctx); +XMLPUBFUN void XMLCALL + attribute (void *ctx, + const xmlChar *fullname, + const xmlChar *value); +XMLPUBFUN void XMLCALL + startElement (void *ctx, + const xmlChar *fullname, + const xmlChar **atts); +XMLPUBFUN void XMLCALL + endElement (void *ctx, + const xmlChar *name); +XMLPUBFUN void XMLCALL + reference (void *ctx, + const xmlChar *name); +XMLPUBFUN void XMLCALL + characters (void *ctx, + const xmlChar *ch, + int len); +XMLPUBFUN void XMLCALL + ignorableWhitespace (void *ctx, + const xmlChar *ch, + int len); +XMLPUBFUN void XMLCALL + processingInstruction (void *ctx, + const xmlChar *target, + const xmlChar *data); +XMLPUBFUN void XMLCALL + globalNamespace (void *ctx, + const xmlChar *href, + const xmlChar *prefix); +XMLPUBFUN void XMLCALL + setNamespace (void *ctx, + const xmlChar *name); +XMLPUBFUN xmlNsPtr XMLCALL + getNamespace (void *ctx); +XMLPUBFUN int XMLCALL + checkNamespace (void *ctx, + xmlChar *nameSpace); +XMLPUBFUN void XMLCALL + namespaceDecl (void *ctx, + const xmlChar *href, + const xmlChar *prefix); +XMLPUBFUN void XMLCALL + comment (void *ctx, + const xmlChar *value); +XMLPUBFUN void XMLCALL + cdataBlock (void *ctx, + const xmlChar *value, + int len); + +#ifdef LIBXML_SAX1_ENABLED +XMLPUBFUN void XMLCALL + initxmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr, + int warning); +#ifdef LIBXML_HTML_ENABLED +XMLPUBFUN void XMLCALL + inithtmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr); +#endif +#ifdef LIBXML_DOCB_ENABLED +XMLPUBFUN void XMLCALL + initdocbDefaultSAXHandler (xmlSAXHandlerV1 *hdlr); +#endif +#endif /* LIBXML_SAX1_ENABLED */ + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_LEGACY_ENABLED */ + +#endif /* __XML_SAX_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/SAX2.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/SAX2.h new file mode 100644 index 0000000000..8d2db02d85 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/SAX2.h @@ -0,0 +1,176 @@ +/* + * Summary: SAX2 parser interface used to build the DOM tree + * Description: those are the default SAX2 interfaces used by + * the library when building DOM tree. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + + +#ifndef __XML_SAX2_H__ +#define __XML_SAX2_H__ + +#include <stdio.h> +#include <stdlib.h> +#include <libxml/xmlversion.h> +#include <libxml/parser.h> +#include <libxml/xlink.h> + +#ifdef __cplusplus +extern "C" { +#endif +XMLPUBFUN const xmlChar * XMLCALL + xmlSAX2GetPublicId (void *ctx); +XMLPUBFUN const xmlChar * XMLCALL + xmlSAX2GetSystemId (void *ctx); +XMLPUBFUN void XMLCALL + xmlSAX2SetDocumentLocator (void *ctx, + xmlSAXLocatorPtr loc); + +XMLPUBFUN int XMLCALL + xmlSAX2GetLineNumber (void *ctx); +XMLPUBFUN int XMLCALL + xmlSAX2GetColumnNumber (void *ctx); + +XMLPUBFUN int XMLCALL + xmlSAX2IsStandalone (void *ctx); +XMLPUBFUN int XMLCALL + xmlSAX2HasInternalSubset (void *ctx); +XMLPUBFUN int XMLCALL + xmlSAX2HasExternalSubset (void *ctx); + +XMLPUBFUN void XMLCALL + xmlSAX2InternalSubset (void *ctx, + const xmlChar *name, + const xmlChar *ExternalID, + const xmlChar *SystemID); +XMLPUBFUN void XMLCALL + xmlSAX2ExternalSubset (void *ctx, + const xmlChar *name, + const xmlChar *ExternalID, + const xmlChar *SystemID); +XMLPUBFUN xmlEntityPtr XMLCALL + xmlSAX2GetEntity (void *ctx, + const xmlChar *name); +XMLPUBFUN xmlEntityPtr XMLCALL + xmlSAX2GetParameterEntity (void *ctx, + const xmlChar *name); +XMLPUBFUN xmlParserInputPtr XMLCALL + xmlSAX2ResolveEntity (void *ctx, + const xmlChar *publicId, + const xmlChar *systemId); + +XMLPUBFUN void XMLCALL + xmlSAX2EntityDecl (void *ctx, + const xmlChar *name, + int type, + const xmlChar *publicId, + const xmlChar *systemId, + xmlChar *content); +XMLPUBFUN void XMLCALL + xmlSAX2AttributeDecl (void *ctx, + const xmlChar *elem, + const xmlChar *fullname, + int type, + int def, + const xmlChar *defaultValue, + xmlEnumerationPtr tree); +XMLPUBFUN void XMLCALL + xmlSAX2ElementDecl (void *ctx, + const xmlChar *name, + int type, + xmlElementContentPtr content); +XMLPUBFUN void XMLCALL + xmlSAX2NotationDecl (void *ctx, + const xmlChar *name, + const xmlChar *publicId, + const xmlChar *systemId); +XMLPUBFUN void XMLCALL + xmlSAX2UnparsedEntityDecl (void *ctx, + const xmlChar *name, + const xmlChar *publicId, + const xmlChar *systemId, + const xmlChar *notationName); + +XMLPUBFUN void XMLCALL + xmlSAX2StartDocument (void *ctx); +XMLPUBFUN void XMLCALL + xmlSAX2EndDocument (void *ctx); +#if defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED) +XMLPUBFUN void XMLCALL + xmlSAX2StartElement (void *ctx, + const xmlChar *fullname, + const xmlChar **atts); +XMLPUBFUN void XMLCALL + xmlSAX2EndElement (void *ctx, + const xmlChar *name); +#endif /* LIBXML_SAX1_ENABLED or LIBXML_HTML_ENABLED */ +XMLPUBFUN void XMLCALL + xmlSAX2StartElementNs (void *ctx, + const xmlChar *localname, + const xmlChar *prefix, + const xmlChar *URI, + int nb_namespaces, + const xmlChar **namespaces, + int nb_attributes, + int nb_defaulted, + const xmlChar **attributes); +XMLPUBFUN void XMLCALL + xmlSAX2EndElementNs (void *ctx, + const xmlChar *localname, + const xmlChar *prefix, + const xmlChar *URI); +XMLPUBFUN void XMLCALL + xmlSAX2Reference (void *ctx, + const xmlChar *name); +XMLPUBFUN void XMLCALL + xmlSAX2Characters (void *ctx, + const xmlChar *ch, + int len); +XMLPUBFUN void XMLCALL + xmlSAX2IgnorableWhitespace (void *ctx, + const xmlChar *ch, + int len); +XMLPUBFUN void XMLCALL + xmlSAX2ProcessingInstruction (void *ctx, + const xmlChar *target, + const xmlChar *data); +XMLPUBFUN void XMLCALL + xmlSAX2Comment (void *ctx, + const xmlChar *value); +XMLPUBFUN void XMLCALL + xmlSAX2CDataBlock (void *ctx, + const xmlChar *value, + int len); + +#ifdef LIBXML_SAX1_ENABLED +XMLPUBFUN int XMLCALL + xmlSAXDefaultVersion (int version); +#endif /* LIBXML_SAX1_ENABLED */ + +XMLPUBFUN int XMLCALL + xmlSAXVersion (xmlSAXHandler *hdlr, + int version); +XMLPUBFUN void XMLCALL + xmlSAX2InitDefaultSAXHandler (xmlSAXHandler *hdlr, + int warning); +#ifdef LIBXML_HTML_ENABLED +XMLPUBFUN void XMLCALL + xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr); +XMLPUBFUN void XMLCALL + htmlDefaultSAXHandlerInit (void); +#endif +#ifdef LIBXML_DOCB_ENABLED +XMLPUBFUN void XMLCALL + xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr); +XMLPUBFUN void XMLCALL + docbDefaultSAXHandlerInit (void); +#endif +XMLPUBFUN void XMLCALL + xmlDefaultSAXHandlerInit (void); +#ifdef __cplusplus +} +#endif +#endif /* __XML_SAX2_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/c14n.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/c14n.h new file mode 100644 index 0000000000..3011af79eb --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/c14n.h @@ -0,0 +1,126 @@ +/* + * Summary: Provide Canonical XML and Exclusive XML Canonicalization + * Description: the c14n modules provides a + * + * "Canonical XML" implementation + * http://www.w3.org/TR/xml-c14n + * + * and an + * + * "Exclusive XML Canonicalization" implementation + * http://www.w3.org/TR/xml-exc-c14n + + * Copy: See Copyright for the status of this software. + * + * Author: Aleksey Sanin <aleksey@aleksey.com> + */ +#ifndef __XML_C14N_H__ +#define __XML_C14N_H__ +#ifdef LIBXML_C14N_ENABLED +#ifdef LIBXML_OUTPUT_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> +#include <libxml/xpath.h> + +/* + * XML Canonicazation + * http://www.w3.org/TR/xml-c14n + * + * Exclusive XML Canonicazation + * http://www.w3.org/TR/xml-exc-c14n + * + * Canonical form of an XML document could be created if and only if + * a) default attributes (if any) are added to all nodes + * b) all character and parsed entity references are resolved + * In order to achive this in libxml2 the document MUST be loaded with + * following global setings: + * + * xmlLoadExtDtdDefaultValue = XML_DETECT_IDS | XML_COMPLETE_ATTRS; + * xmlSubstituteEntitiesDefault(1); + * + * or corresponding parser context setting: + * xmlParserCtxtPtr ctxt; + * + * ... + * ctxt->loadsubset = XML_DETECT_IDS | XML_COMPLETE_ATTRS; + * ctxt->replaceEntities = 1; + * ... + */ + +/* + * xmlC14NMode: + * + * Predefined values for C14N modes + * + */ +typedef enum { + XML_C14N_1_0 = 0, /* Origianal C14N 1.0 spec */ + XML_C14N_EXCLUSIVE_1_0 = 1, /* Exclusive C14N 1.0 spec */ + XML_C14N_1_1 = 2 /* C14N 1.1 spec */ +} xmlC14NMode; + +XMLPUBFUN int XMLCALL + xmlC14NDocSaveTo (xmlDocPtr doc, + xmlNodeSetPtr nodes, + int mode, /* a xmlC14NMode */ + xmlChar **inclusive_ns_prefixes, + int with_comments, + xmlOutputBufferPtr buf); + +XMLPUBFUN int XMLCALL + xmlC14NDocDumpMemory (xmlDocPtr doc, + xmlNodeSetPtr nodes, + int mode, /* a xmlC14NMode */ + xmlChar **inclusive_ns_prefixes, + int with_comments, + xmlChar **doc_txt_ptr); + +XMLPUBFUN int XMLCALL + xmlC14NDocSave (xmlDocPtr doc, + xmlNodeSetPtr nodes, + int mode, /* a xmlC14NMode */ + xmlChar **inclusive_ns_prefixes, + int with_comments, + const char* filename, + int compression); + + +/** + * This is the core C14N function + */ +/** + * xmlC14NIsVisibleCallback: + * @user_data: user data + * @node: the curent node + * @parent: the parent node + * + * Signature for a C14N callback on visible nodes + * + * Returns 1 if the node should be included + */ +typedef int (*xmlC14NIsVisibleCallback) (void* user_data, + xmlNodePtr node, + xmlNodePtr parent); + +XMLPUBFUN int XMLCALL + xmlC14NExecute (xmlDocPtr doc, + xmlC14NIsVisibleCallback is_visible_callback, + void* user_data, + int mode, /* a xmlC14NMode */ + xmlChar **inclusive_ns_prefixes, + int with_comments, + xmlOutputBufferPtr buf); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* LIBXML_OUTPUT_ENABLED */ +#endif /* LIBXML_C14N_ENABLED */ +#endif /* __XML_C14N_H__ */ + diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/catalog.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/catalog.h new file mode 100644 index 0000000000..b4441370fc --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/catalog.h @@ -0,0 +1,182 @@ +/** + * Summary: interfaces to the Catalog handling system + * Description: the catalog module implements the support for + * XML Catalogs and SGML catalogs + * + * SGML Open Technical Resolution TR9401:1997. + * http://www.jclark.com/sp/catalog.htm + * + * XML Catalogs Working Draft 06 August 2001 + * http://www.oasis-open.org/committees/entity/spec-2001-08-06.html + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_CATALOG_H__ +#define __XML_CATALOG_H__ + +#include <stdio.h> + +#include <libxml/xmlversion.h> +#include <libxml/xmlstring.h> +#include <libxml/tree.h> + +#ifdef LIBXML_CATALOG_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * XML_CATALOGS_NAMESPACE: + * + * The namespace for the XML Catalogs elements. + */ +#define XML_CATALOGS_NAMESPACE \ + (const xmlChar *) "urn:oasis:names:tc:entity:xmlns:xml:catalog" +/** + * XML_CATALOG_PI: + * + * The specific XML Catalog Processing Instuction name. + */ +#define XML_CATALOG_PI \ + (const xmlChar *) "oasis-xml-catalog" + +/* + * The API is voluntarily limited to general cataloging. + */ +typedef enum { + XML_CATA_PREFER_NONE = 0, + XML_CATA_PREFER_PUBLIC = 1, + XML_CATA_PREFER_SYSTEM +} xmlCatalogPrefer; + +typedef enum { + XML_CATA_ALLOW_NONE = 0, + XML_CATA_ALLOW_GLOBAL = 1, + XML_CATA_ALLOW_DOCUMENT = 2, + XML_CATA_ALLOW_ALL = 3 +} xmlCatalogAllow; + +typedef struct _xmlCatalog xmlCatalog; +typedef xmlCatalog *xmlCatalogPtr; + +/* + * Operations on a given catalog. + */ +XMLPUBFUN xmlCatalogPtr XMLCALL + xmlNewCatalog (int sgml); +XMLPUBFUN xmlCatalogPtr XMLCALL + xmlLoadACatalog (const char *filename); +XMLPUBFUN xmlCatalogPtr XMLCALL + xmlLoadSGMLSuperCatalog (const char *filename); +XMLPUBFUN int XMLCALL + xmlConvertSGMLCatalog (xmlCatalogPtr catal); +XMLPUBFUN int XMLCALL + xmlACatalogAdd (xmlCatalogPtr catal, + const xmlChar *type, + const xmlChar *orig, + const xmlChar *replace); +XMLPUBFUN int XMLCALL + xmlACatalogRemove (xmlCatalogPtr catal, + const xmlChar *value); +XMLPUBFUN xmlChar * XMLCALL + xmlACatalogResolve (xmlCatalogPtr catal, + const xmlChar *pubID, + const xmlChar *sysID); +XMLPUBFUN xmlChar * XMLCALL + xmlACatalogResolveSystem(xmlCatalogPtr catal, + const xmlChar *sysID); +XMLPUBFUN xmlChar * XMLCALL + xmlACatalogResolvePublic(xmlCatalogPtr catal, + const xmlChar *pubID); +XMLPUBFUN xmlChar * XMLCALL + xmlACatalogResolveURI (xmlCatalogPtr catal, + const xmlChar *URI); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + xmlACatalogDump (xmlCatalogPtr catal, + FILE *out); +#endif /* LIBXML_OUTPUT_ENABLED */ +XMLPUBFUN void XMLCALL + xmlFreeCatalog (xmlCatalogPtr catal); +XMLPUBFUN int XMLCALL + xmlCatalogIsEmpty (xmlCatalogPtr catal); + +/* + * Global operations. + */ +XMLPUBFUN void XMLCALL + xmlInitializeCatalog (void); +XMLPUBFUN int XMLCALL + xmlLoadCatalog (const char *filename); +XMLPUBFUN void XMLCALL + xmlLoadCatalogs (const char *paths); +XMLPUBFUN void XMLCALL + xmlCatalogCleanup (void); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + xmlCatalogDump (FILE *out); +#endif /* LIBXML_OUTPUT_ENABLED */ +XMLPUBFUN xmlChar * XMLCALL + xmlCatalogResolve (const xmlChar *pubID, + const xmlChar *sysID); +XMLPUBFUN xmlChar * XMLCALL + xmlCatalogResolveSystem (const xmlChar *sysID); +XMLPUBFUN xmlChar * XMLCALL + xmlCatalogResolvePublic (const xmlChar *pubID); +XMLPUBFUN xmlChar * XMLCALL + xmlCatalogResolveURI (const xmlChar *URI); +XMLPUBFUN int XMLCALL + xmlCatalogAdd (const xmlChar *type, + const xmlChar *orig, + const xmlChar *replace); +XMLPUBFUN int XMLCALL + xmlCatalogRemove (const xmlChar *value); +XMLPUBFUN xmlDocPtr XMLCALL + xmlParseCatalogFile (const char *filename); +XMLPUBFUN int XMLCALL + xmlCatalogConvert (void); + +/* + * Strictly minimal interfaces for per-document catalogs used + * by the parser. + */ +XMLPUBFUN void XMLCALL + xmlCatalogFreeLocal (void *catalogs); +XMLPUBFUN void * XMLCALL + xmlCatalogAddLocal (void *catalogs, + const xmlChar *URL); +XMLPUBFUN xmlChar * XMLCALL + xmlCatalogLocalResolve (void *catalogs, + const xmlChar *pubID, + const xmlChar *sysID); +XMLPUBFUN xmlChar * XMLCALL + xmlCatalogLocalResolveURI(void *catalogs, + const xmlChar *URI); +/* + * Preference settings. + */ +XMLPUBFUN int XMLCALL + xmlCatalogSetDebug (int level); +XMLPUBFUN xmlCatalogPrefer XMLCALL + xmlCatalogSetDefaultPrefer(xmlCatalogPrefer prefer); +XMLPUBFUN void XMLCALL + xmlCatalogSetDefaults (xmlCatalogAllow allow); +XMLPUBFUN xmlCatalogAllow XMLCALL + xmlCatalogGetDefaults (void); + + +/* DEPRECATED interfaces */ +XMLPUBFUN const xmlChar * XMLCALL + xmlCatalogGetSystem (const xmlChar *sysID); +XMLPUBFUN const xmlChar * XMLCALL + xmlCatalogGetPublic (const xmlChar *pubID); + +#ifdef __cplusplus +} +#endif +#endif /* LIBXML_CATALOG_ENABLED */ +#endif /* __XML_CATALOG_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/chvalid.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/chvalid.h new file mode 100644 index 0000000000..fb43016982 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/chvalid.h @@ -0,0 +1,230 @@ +/* + * Summary: Unicode character range checking + * Description: this module exports interfaces for the character + * range validation APIs + * + * This file is automatically generated from the cvs source + * definition files using the genChRanges.py Python script + * + * Generation date: Mon Mar 27 11:09:48 2006 + * Sources: chvalid.def + * Author: William Brack <wbrack@mmm.com.hk> + */ + +#ifndef __XML_CHVALID_H__ +#define __XML_CHVALID_H__ + +#include <libxml/xmlversion.h> +#include <libxml/xmlstring.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Define our typedefs and structures + * + */ +typedef struct _xmlChSRange xmlChSRange; +typedef xmlChSRange *xmlChSRangePtr; +struct _xmlChSRange { + unsigned short low; + unsigned short high; +}; + +typedef struct _xmlChLRange xmlChLRange; +typedef xmlChLRange *xmlChLRangePtr; +struct _xmlChLRange { + unsigned int low; + unsigned int high; +}; + +typedef struct _xmlChRangeGroup xmlChRangeGroup; +typedef xmlChRangeGroup *xmlChRangeGroupPtr; +struct _xmlChRangeGroup { + int nbShortRange; + int nbLongRange; + const xmlChSRange *shortRange; /* points to an array of ranges */ + const xmlChLRange *longRange; +}; + +/** + * Range checking routine + */ +XMLPUBFUN int XMLCALL + xmlCharInRange(unsigned int val, const xmlChRangeGroup *group); + + +/** + * xmlIsBaseChar_ch: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsBaseChar_ch(c) (((0x41 <= (c)) && ((c) <= 0x5a)) || \ + ((0x61 <= (c)) && ((c) <= 0x7a)) || \ + ((0xc0 <= (c)) && ((c) <= 0xd6)) || \ + ((0xd8 <= (c)) && ((c) <= 0xf6)) || \ + (0xf8 <= (c))) + +/** + * xmlIsBaseCharQ: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsBaseCharQ(c) (((c) < 0x100) ? \ + xmlIsBaseChar_ch((c)) : \ + xmlCharInRange((c), &xmlIsBaseCharGroup)) + +XMLPUBVAR const xmlChRangeGroup xmlIsBaseCharGroup; + +/** + * xmlIsBlank_ch: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsBlank_ch(c) (((c) == 0x20) || \ + ((0x9 <= (c)) && ((c) <= 0xa)) || \ + ((c) == 0xd)) + +/** + * xmlIsBlankQ: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsBlankQ(c) (((c) < 0x100) ? \ + xmlIsBlank_ch((c)) : 0) + + +/** + * xmlIsChar_ch: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsChar_ch(c) (((0x9 <= (c)) && ((c) <= 0xa)) || \ + ((c) == 0xd) || \ + (0x20 <= (c))) + +/** + * xmlIsCharQ: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsCharQ(c) (((c) < 0x100) ? \ + xmlIsChar_ch((c)) :\ + (((0x100 <= (c)) && ((c) <= 0xd7ff)) || \ + ((0xe000 <= (c)) && ((c) <= 0xfffd)) || \ + ((0x10000 <= (c)) && ((c) <= 0x10ffff)))) + +XMLPUBVAR const xmlChRangeGroup xmlIsCharGroup; + +/** + * xmlIsCombiningQ: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsCombiningQ(c) (((c) < 0x100) ? \ + 0 : \ + xmlCharInRange((c), &xmlIsCombiningGroup)) + +XMLPUBVAR const xmlChRangeGroup xmlIsCombiningGroup; + +/** + * xmlIsDigit_ch: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsDigit_ch(c) (((0x30 <= (c)) && ((c) <= 0x39))) + +/** + * xmlIsDigitQ: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsDigitQ(c) (((c) < 0x100) ? \ + xmlIsDigit_ch((c)) : \ + xmlCharInRange((c), &xmlIsDigitGroup)) + +XMLPUBVAR const xmlChRangeGroup xmlIsDigitGroup; + +/** + * xmlIsExtender_ch: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsExtender_ch(c) (((c) == 0xb7)) + +/** + * xmlIsExtenderQ: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsExtenderQ(c) (((c) < 0x100) ? \ + xmlIsExtender_ch((c)) : \ + xmlCharInRange((c), &xmlIsExtenderGroup)) + +XMLPUBVAR const xmlChRangeGroup xmlIsExtenderGroup; + +/** + * xmlIsIdeographicQ: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsIdeographicQ(c) (((c) < 0x100) ? \ + 0 :\ + (((0x4e00 <= (c)) && ((c) <= 0x9fa5)) || \ + ((c) == 0x3007) || \ + ((0x3021 <= (c)) && ((c) <= 0x3029)))) + +XMLPUBVAR const xmlChRangeGroup xmlIsIdeographicGroup; +XMLPUBVAR const unsigned char xmlIsPubidChar_tab[256]; + +/** + * xmlIsPubidChar_ch: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsPubidChar_ch(c) (xmlIsPubidChar_tab[(c)]) + +/** + * xmlIsPubidCharQ: + * @c: char to validate + * + * Automatically generated by genChRanges.py + */ +#define xmlIsPubidCharQ(c) (((c) < 0x100) ? \ + xmlIsPubidChar_ch((c)) : 0) + +XMLPUBFUN int XMLCALL + xmlIsBaseChar(unsigned int ch); +XMLPUBFUN int XMLCALL + xmlIsBlank(unsigned int ch); +XMLPUBFUN int XMLCALL + xmlIsChar(unsigned int ch); +XMLPUBFUN int XMLCALL + xmlIsCombining(unsigned int ch); +XMLPUBFUN int XMLCALL + xmlIsDigit(unsigned int ch); +XMLPUBFUN int XMLCALL + xmlIsExtender(unsigned int ch); +XMLPUBFUN int XMLCALL + xmlIsIdeographic(unsigned int ch); +XMLPUBFUN int XMLCALL + xmlIsPubidChar(unsigned int ch); + +#ifdef __cplusplus +} +#endif +#endif /* __XML_CHVALID_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/debugXML.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/debugXML.h new file mode 100644 index 0000000000..5a9d20bcf5 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/debugXML.h @@ -0,0 +1,217 @@ +/* + * Summary: Tree debugging APIs + * Description: Interfaces to a set of routines used for debugging the tree + * produced by the XML parser. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __DEBUG_XML__ +#define __DEBUG_XML__ +#include <stdio.h> +#include <libxml/xmlversion.h> +#include <libxml/tree.h> + +#ifdef LIBXML_DEBUG_ENABLED + +#include <libxml/xpath.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * The standard Dump routines. + */ +XMLPUBFUN void XMLCALL + xmlDebugDumpString (FILE *output, + const xmlChar *str); +XMLPUBFUN void XMLCALL + xmlDebugDumpAttr (FILE *output, + xmlAttrPtr attr, + int depth); +XMLPUBFUN void XMLCALL + xmlDebugDumpAttrList (FILE *output, + xmlAttrPtr attr, + int depth); +XMLPUBFUN void XMLCALL + xmlDebugDumpOneNode (FILE *output, + xmlNodePtr node, + int depth); +XMLPUBFUN void XMLCALL + xmlDebugDumpNode (FILE *output, + xmlNodePtr node, + int depth); +XMLPUBFUN void XMLCALL + xmlDebugDumpNodeList (FILE *output, + xmlNodePtr node, + int depth); +XMLPUBFUN void XMLCALL + xmlDebugDumpDocumentHead(FILE *output, + xmlDocPtr doc); +XMLPUBFUN void XMLCALL + xmlDebugDumpDocument (FILE *output, + xmlDocPtr doc); +XMLPUBFUN void XMLCALL + xmlDebugDumpDTD (FILE *output, + xmlDtdPtr dtd); +XMLPUBFUN void XMLCALL + xmlDebugDumpEntities (FILE *output, + xmlDocPtr doc); + +/**************************************************************** + * * + * Checking routines * + * * + ****************************************************************/ + +XMLPUBFUN int XMLCALL + xmlDebugCheckDocument (FILE * output, + xmlDocPtr doc); + +/**************************************************************** + * * + * XML shell helpers * + * * + ****************************************************************/ + +XMLPUBFUN void XMLCALL + xmlLsOneNode (FILE *output, xmlNodePtr node); +XMLPUBFUN int XMLCALL + xmlLsCountNode (xmlNodePtr node); + +XMLPUBFUN const char * XMLCALL + xmlBoolToText (int boolval); + +/**************************************************************** + * * + * The XML shell related structures and functions * + * * + ****************************************************************/ + +#ifdef LIBXML_XPATH_ENABLED +/** + * xmlShellReadlineFunc: + * @prompt: a string prompt + * + * This is a generic signature for the XML shell input function. + * + * Returns a string which will be freed by the Shell. + */ +typedef char * (* xmlShellReadlineFunc)(char *prompt); + +/** + * xmlShellCtxt: + * + * A debugging shell context. + * TODO: add the defined function tables. + */ +typedef struct _xmlShellCtxt xmlShellCtxt; +typedef xmlShellCtxt *xmlShellCtxtPtr; +struct _xmlShellCtxt { + char *filename; + xmlDocPtr doc; + xmlNodePtr node; + xmlXPathContextPtr pctxt; + int loaded; + FILE *output; + xmlShellReadlineFunc input; +}; + +/** + * xmlShellCmd: + * @ctxt: a shell context + * @arg: a string argument + * @node: a first node + * @node2: a second node + * + * This is a generic signature for the XML shell functions. + * + * Returns an int, negative returns indicating errors. + */ +typedef int (* xmlShellCmd) (xmlShellCtxtPtr ctxt, + char *arg, + xmlNodePtr node, + xmlNodePtr node2); + +XMLPUBFUN void XMLCALL + xmlShellPrintXPathError (int errorType, + const char *arg); +XMLPUBFUN void XMLCALL + xmlShellPrintXPathResult(xmlXPathObjectPtr list); +XMLPUBFUN int XMLCALL + xmlShellList (xmlShellCtxtPtr ctxt, + char *arg, + xmlNodePtr node, + xmlNodePtr node2); +XMLPUBFUN int XMLCALL + xmlShellBase (xmlShellCtxtPtr ctxt, + char *arg, + xmlNodePtr node, + xmlNodePtr node2); +XMLPUBFUN int XMLCALL + xmlShellDir (xmlShellCtxtPtr ctxt, + char *arg, + xmlNodePtr node, + xmlNodePtr node2); +XMLPUBFUN int XMLCALL + xmlShellLoad (xmlShellCtxtPtr ctxt, + char *filename, + xmlNodePtr node, + xmlNodePtr node2); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + xmlShellPrintNode (xmlNodePtr node); +XMLPUBFUN int XMLCALL + xmlShellCat (xmlShellCtxtPtr ctxt, + char *arg, + xmlNodePtr node, + xmlNodePtr node2); +XMLPUBFUN int XMLCALL + xmlShellWrite (xmlShellCtxtPtr ctxt, + char *filename, + xmlNodePtr node, + xmlNodePtr node2); +XMLPUBFUN int XMLCALL + xmlShellSave (xmlShellCtxtPtr ctxt, + char *filename, + xmlNodePtr node, + xmlNodePtr node2); +#endif /* LIBXML_OUTPUT_ENABLED */ +#ifdef LIBXML_VALID_ENABLED +XMLPUBFUN int XMLCALL + xmlShellValidate (xmlShellCtxtPtr ctxt, + char *dtd, + xmlNodePtr node, + xmlNodePtr node2); +#endif /* LIBXML_VALID_ENABLED */ +XMLPUBFUN int XMLCALL + xmlShellDu (xmlShellCtxtPtr ctxt, + char *arg, + xmlNodePtr tree, + xmlNodePtr node2); +XMLPUBFUN int XMLCALL + xmlShellPwd (xmlShellCtxtPtr ctxt, + char *buffer, + xmlNodePtr node, + xmlNodePtr node2); + +/* + * The Shell interface. + */ +XMLPUBFUN void XMLCALL + xmlShell (xmlDocPtr doc, + char *filename, + xmlShellReadlineFunc input, + FILE *output); + +#endif /* LIBXML_XPATH_ENABLED */ + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_DEBUG_ENABLED */ +#endif /* __DEBUG_XML__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/dict.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/dict.h new file mode 100644 index 0000000000..abb8339cb8 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/dict.h @@ -0,0 +1,69 @@ +/* + * Summary: string dictionnary + * Description: dictionary of reusable strings, just used to avoid allocation + * and freeing operations. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_DICT_H__ +#define __XML_DICT_H__ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * The dictionnary. + */ +typedef struct _xmlDict xmlDict; +typedef xmlDict *xmlDictPtr; + +/* + * Constructor and destructor. + */ +XMLPUBFUN xmlDictPtr XMLCALL + xmlDictCreate (void); +XMLPUBFUN xmlDictPtr XMLCALL + xmlDictCreateSub(xmlDictPtr sub); +XMLPUBFUN int XMLCALL + xmlDictReference(xmlDictPtr dict); +XMLPUBFUN void XMLCALL + xmlDictFree (xmlDictPtr dict); + +/* + * Lookup of entry in the dictionnary. + */ +XMLPUBFUN const xmlChar * XMLCALL + xmlDictLookup (xmlDictPtr dict, + const xmlChar *name, + int len); +XMLPUBFUN const xmlChar * XMLCALL + xmlDictExists (xmlDictPtr dict, + const xmlChar *name, + int len); +XMLPUBFUN const xmlChar * XMLCALL + xmlDictQLookup (xmlDictPtr dict, + const xmlChar *prefix, + const xmlChar *name); +XMLPUBFUN int XMLCALL + xmlDictOwns (xmlDictPtr dict, + const xmlChar *str); +XMLPUBFUN int XMLCALL + xmlDictSize (xmlDictPtr dict); + +/* + * Cleanup function + */ +XMLPUBFUN void XMLCALL + xmlDictCleanup (void); + +#ifdef __cplusplus +} +#endif +#endif /* ! __XML_DICT_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/encoding.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/encoding.h new file mode 100644 index 0000000000..3a3b9b2d82 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/encoding.h @@ -0,0 +1,240 @@ +/* + * Summary: interface for the encoding conversion functions + * Description: interface for the encoding conversion functions needed for + * XML basic encoding and iconv() support. + * + * Related specs are + * rfc2044 (UTF-8 and UTF-16) F. Yergeau Alis Technologies + * [ISO-10646] UTF-8 and UTF-16 in Annexes + * [ISO-8859-1] ISO Latin-1 characters codes. + * [UNICODE] The Unicode Consortium, "The Unicode Standard -- + * Worldwide Character Encoding -- Version 1.0", Addison- + * Wesley, Volume 1, 1991, Volume 2, 1992. UTF-8 is + * described in Unicode Technical Report #4. + * [US-ASCII] Coded Character Set--7-bit American Standard Code for + * Information Interchange, ANSI X3.4-1986. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_CHAR_ENCODING_H__ +#define __XML_CHAR_ENCODING_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_ICONV_ENABLED +#include <iconv.h> +#endif +#ifdef LIBXML_ICU_ENABLED +#include <unicode/ucnv.h> +#endif +#ifdef __cplusplus +extern "C" { +#endif + +/* + * xmlCharEncoding: + * + * Predefined values for some standard encodings. + * Libxml does not do beforehand translation on UTF8 and ISOLatinX. + * It also supports ASCII, ISO-8859-1, and UTF16 (LE and BE) by default. + * + * Anything else would have to be translated to UTF8 before being + * given to the parser itself. The BOM for UTF16 and the encoding + * declaration are looked at and a converter is looked for at that + * point. If not found the parser stops here as asked by the XML REC. A + * converter can be registered by the user using xmlRegisterCharEncodingHandler + * but the current form doesn't allow stateful transcoding (a serious + * problem agreed !). If iconv has been found it will be used + * automatically and allow stateful transcoding, the simplest is then + * to be sure to enable iconv and to provide iconv libs for the encoding + * support needed. + * + * Note that the generic "UTF-16" is not a predefined value. Instead, only + * the specific UTF-16LE and UTF-16BE are present. + */ +typedef enum { + XML_CHAR_ENCODING_ERROR= -1, /* No char encoding detected */ + XML_CHAR_ENCODING_NONE= 0, /* No char encoding detected */ + XML_CHAR_ENCODING_UTF8= 1, /* UTF-8 */ + XML_CHAR_ENCODING_UTF16LE= 2, /* UTF-16 little endian */ + XML_CHAR_ENCODING_UTF16BE= 3, /* UTF-16 big endian */ + XML_CHAR_ENCODING_UCS4LE= 4, /* UCS-4 little endian */ + XML_CHAR_ENCODING_UCS4BE= 5, /* UCS-4 big endian */ + XML_CHAR_ENCODING_EBCDIC= 6, /* EBCDIC uh! */ + XML_CHAR_ENCODING_UCS4_2143=7, /* UCS-4 unusual ordering */ + XML_CHAR_ENCODING_UCS4_3412=8, /* UCS-4 unusual ordering */ + XML_CHAR_ENCODING_UCS2= 9, /* UCS-2 */ + XML_CHAR_ENCODING_8859_1= 10,/* ISO-8859-1 ISO Latin 1 */ + XML_CHAR_ENCODING_8859_2= 11,/* ISO-8859-2 ISO Latin 2 */ + XML_CHAR_ENCODING_8859_3= 12,/* ISO-8859-3 */ + XML_CHAR_ENCODING_8859_4= 13,/* ISO-8859-4 */ + XML_CHAR_ENCODING_8859_5= 14,/* ISO-8859-5 */ + XML_CHAR_ENCODING_8859_6= 15,/* ISO-8859-6 */ + XML_CHAR_ENCODING_8859_7= 16,/* ISO-8859-7 */ + XML_CHAR_ENCODING_8859_8= 17,/* ISO-8859-8 */ + XML_CHAR_ENCODING_8859_9= 18,/* ISO-8859-9 */ + XML_CHAR_ENCODING_2022_JP= 19,/* ISO-2022-JP */ + XML_CHAR_ENCODING_SHIFT_JIS=20,/* Shift_JIS */ + XML_CHAR_ENCODING_EUC_JP= 21,/* EUC-JP */ + XML_CHAR_ENCODING_ASCII= 22 /* pure ASCII */ +} xmlCharEncoding; + +/** + * xmlCharEncodingInputFunc: + * @out: a pointer to an array of bytes to store the UTF-8 result + * @outlen: the length of @out + * @in: a pointer to an array of chars in the original encoding + * @inlen: the length of @in + * + * Take a block of chars in the original encoding and try to convert + * it to an UTF-8 block of chars out. + * + * Returns the number of bytes written, -1 if lack of space, or -2 + * if the transcoding failed. + * The value of @inlen after return is the number of octets consumed + * if the return value is positive, else unpredictiable. + * The value of @outlen after return is the number of octets consumed. + */ +typedef int (* xmlCharEncodingInputFunc)(unsigned char *out, int *outlen, + const unsigned char *in, int *inlen); + + +/** + * xmlCharEncodingOutputFunc: + * @out: a pointer to an array of bytes to store the result + * @outlen: the length of @out + * @in: a pointer to an array of UTF-8 chars + * @inlen: the length of @in + * + * Take a block of UTF-8 chars in and try to convert it to another + * encoding. + * Note: a first call designed to produce heading info is called with + * in = NULL. If stateful this should also initialize the encoder state. + * + * Returns the number of bytes written, -1 if lack of space, or -2 + * if the transcoding failed. + * The value of @inlen after return is the number of octets consumed + * if the return value is positive, else unpredictiable. + * The value of @outlen after return is the number of octets produced. + */ +typedef int (* xmlCharEncodingOutputFunc)(unsigned char *out, int *outlen, + const unsigned char *in, int *inlen); + + +/* + * Block defining the handlers for non UTF-8 encodings. + * If iconv is supported, there are two extra fields. + */ +#ifdef LIBXML_ICU_ENABLED +struct _uconv_t { + UConverter *uconv; /* for conversion between an encoding and UTF-16 */ + UConverter *utf8; /* for conversion between UTF-8 and UTF-16 */ +}; +typedef struct _uconv_t uconv_t; +#endif + +typedef struct _xmlCharEncodingHandler xmlCharEncodingHandler; +typedef xmlCharEncodingHandler *xmlCharEncodingHandlerPtr; +struct _xmlCharEncodingHandler { + char *name; + xmlCharEncodingInputFunc input; + xmlCharEncodingOutputFunc output; +#ifdef LIBXML_ICONV_ENABLED + iconv_t iconv_in; + iconv_t iconv_out; +#endif /* LIBXML_ICONV_ENABLED */ +#ifdef LIBXML_ICU_ENABLED + uconv_t *uconv_in; + uconv_t *uconv_out; +#endif /* LIBXML_ICU_ENABLED */ +}; + +#ifdef __cplusplus +} +#endif +#include <libxml/tree.h> +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Interfaces for encoding handlers. + */ +XMLPUBFUN void XMLCALL + xmlInitCharEncodingHandlers (void); +XMLPUBFUN void XMLCALL + xmlCleanupCharEncodingHandlers (void); +XMLPUBFUN void XMLCALL + xmlRegisterCharEncodingHandler (xmlCharEncodingHandlerPtr handler); +XMLPUBFUN xmlCharEncodingHandlerPtr XMLCALL + xmlGetCharEncodingHandler (xmlCharEncoding enc); +XMLPUBFUN xmlCharEncodingHandlerPtr XMLCALL + xmlFindCharEncodingHandler (const char *name); +XMLPUBFUN xmlCharEncodingHandlerPtr XMLCALL + xmlNewCharEncodingHandler (const char *name, + xmlCharEncodingInputFunc input, + xmlCharEncodingOutputFunc output); + +/* + * Interfaces for encoding names and aliases. + */ +XMLPUBFUN int XMLCALL + xmlAddEncodingAlias (const char *name, + const char *alias); +XMLPUBFUN int XMLCALL + xmlDelEncodingAlias (const char *alias); +XMLPUBFUN const char * XMLCALL + xmlGetEncodingAlias (const char *alias); +XMLPUBFUN void XMLCALL + xmlCleanupEncodingAliases (void); +XMLPUBFUN xmlCharEncoding XMLCALL + xmlParseCharEncoding (const char *name); +XMLPUBFUN const char * XMLCALL + xmlGetCharEncodingName (xmlCharEncoding enc); + +/* + * Interfaces directly used by the parsers. + */ +XMLPUBFUN xmlCharEncoding XMLCALL + xmlDetectCharEncoding (const unsigned char *in, + int len); + +XMLPUBFUN int XMLCALL + xmlCharEncOutFunc (xmlCharEncodingHandler *handler, + xmlBufferPtr out, + xmlBufferPtr in); + +XMLPUBFUN int XMLCALL + xmlCharEncInFunc (xmlCharEncodingHandler *handler, + xmlBufferPtr out, + xmlBufferPtr in); +XMLPUBFUN int XMLCALL + xmlCharEncFirstLine (xmlCharEncodingHandler *handler, + xmlBufferPtr out, + xmlBufferPtr in); +XMLPUBFUN int XMLCALL + xmlCharEncCloseFunc (xmlCharEncodingHandler *handler); + +/* + * Export a few useful functions + */ +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN int XMLCALL + UTF8Toisolat1 (unsigned char *out, + int *outlen, + const unsigned char *in, + int *inlen); +#endif /* LIBXML_OUTPUT_ENABLED */ +XMLPUBFUN int XMLCALL + isolat1ToUTF8 (unsigned char *out, + int *outlen, + const unsigned char *in, + int *inlen); +#ifdef __cplusplus +} +#endif + +#endif /* __XML_CHAR_ENCODING_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/entities.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/entities.h new file mode 100644 index 0000000000..cefb97f780 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/entities.h @@ -0,0 +1,150 @@ +/* + * Summary: interface for the XML entities handling + * Description: this module provides some of the entity API needed + * for the parser and applications. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_ENTITIES_H__ +#define __XML_ENTITIES_H__ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * The different valid entity types. + */ +typedef enum { + XML_INTERNAL_GENERAL_ENTITY = 1, + XML_EXTERNAL_GENERAL_PARSED_ENTITY = 2, + XML_EXTERNAL_GENERAL_UNPARSED_ENTITY = 3, + XML_INTERNAL_PARAMETER_ENTITY = 4, + XML_EXTERNAL_PARAMETER_ENTITY = 5, + XML_INTERNAL_PREDEFINED_ENTITY = 6 +} xmlEntityType; + +/* + * An unit of storage for an entity, contains the string, the value + * and the linkind data needed for the linking in the hash table. + */ + +struct _xmlEntity { + void *_private; /* application data */ + xmlElementType type; /* XML_ENTITY_DECL, must be second ! */ + const xmlChar *name; /* Entity name */ + struct _xmlNode *children; /* First child link */ + struct _xmlNode *last; /* Last child link */ + struct _xmlDtd *parent; /* -> DTD */ + struct _xmlNode *next; /* next sibling link */ + struct _xmlNode *prev; /* previous sibling link */ + struct _xmlDoc *doc; /* the containing document */ + + xmlChar *orig; /* content without ref substitution */ + xmlChar *content; /* content or ndata if unparsed */ + int length; /* the content length */ + xmlEntityType etype; /* The entity type */ + const xmlChar *ExternalID; /* External identifier for PUBLIC */ + const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC Entity */ + + struct _xmlEntity *nexte; /* unused */ + const xmlChar *URI; /* the full URI as computed */ + int owner; /* does the entity own the childrens */ + int checked; /* was the entity content checked */ + /* this is also used to count entites + * references done from that entity */ +}; + +/* + * All entities are stored in an hash table. + * There is 2 separate hash tables for global and parameter entities. + */ + +typedef struct _xmlHashTable xmlEntitiesTable; +typedef xmlEntitiesTable *xmlEntitiesTablePtr; + +/* + * External functions: + */ + +#ifdef LIBXML_LEGACY_ENABLED +XMLPUBFUN void XMLCALL + xmlInitializePredefinedEntities (void); +#endif /* LIBXML_LEGACY_ENABLED */ + +XMLPUBFUN xmlEntityPtr XMLCALL + xmlNewEntity (xmlDocPtr doc, + const xmlChar *name, + int type, + const xmlChar *ExternalID, + const xmlChar *SystemID, + const xmlChar *content); +XMLPUBFUN xmlEntityPtr XMLCALL + xmlAddDocEntity (xmlDocPtr doc, + const xmlChar *name, + int type, + const xmlChar *ExternalID, + const xmlChar *SystemID, + const xmlChar *content); +XMLPUBFUN xmlEntityPtr XMLCALL + xmlAddDtdEntity (xmlDocPtr doc, + const xmlChar *name, + int type, + const xmlChar *ExternalID, + const xmlChar *SystemID, + const xmlChar *content); +XMLPUBFUN xmlEntityPtr XMLCALL + xmlGetPredefinedEntity (const xmlChar *name); +XMLPUBFUN xmlEntityPtr XMLCALL + xmlGetDocEntity (xmlDocPtr doc, + const xmlChar *name); +XMLPUBFUN xmlEntityPtr XMLCALL + xmlGetDtdEntity (xmlDocPtr doc, + const xmlChar *name); +XMLPUBFUN xmlEntityPtr XMLCALL + xmlGetParameterEntity (xmlDocPtr doc, + const xmlChar *name); +#ifdef LIBXML_LEGACY_ENABLED +XMLPUBFUN const xmlChar * XMLCALL + xmlEncodeEntities (xmlDocPtr doc, + const xmlChar *input); +#endif /* LIBXML_LEGACY_ENABLED */ +XMLPUBFUN xmlChar * XMLCALL + xmlEncodeEntitiesReentrant(xmlDocPtr doc, + const xmlChar *input); +XMLPUBFUN xmlChar * XMLCALL + xmlEncodeSpecialChars (xmlDocPtr doc, + const xmlChar *input); +XMLPUBFUN xmlEntitiesTablePtr XMLCALL + xmlCreateEntitiesTable (void); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN xmlEntitiesTablePtr XMLCALL + xmlCopyEntitiesTable (xmlEntitiesTablePtr table); +#endif /* LIBXML_TREE_ENABLED */ +XMLPUBFUN void XMLCALL + xmlFreeEntitiesTable (xmlEntitiesTablePtr table); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + xmlDumpEntitiesTable (xmlBufferPtr buf, + xmlEntitiesTablePtr table); +XMLPUBFUN void XMLCALL + xmlDumpEntityDecl (xmlBufferPtr buf, + xmlEntityPtr ent); +#endif /* LIBXML_OUTPUT_ENABLED */ +#ifdef LIBXML_LEGACY_ENABLED +XMLPUBFUN void XMLCALL + xmlCleanupPredefinedEntities(void); +#endif /* LIBXML_LEGACY_ENABLED */ + + +#ifdef __cplusplus +} +#endif + +# endif /* __XML_ENTITIES_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/globals.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/globals.h new file mode 100644 index 0000000000..9d688e0d3f --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/globals.h @@ -0,0 +1,502 @@ +/* + * Summary: interface for all global variables of the library + * Description: all the global variables and thread handling for + * those variables is handled by this module. + * + * The bottom of this file is automatically generated by build_glob.py + * based on the description file global.data + * + * Copy: See Copyright for the status of this software. + * + * Author: Gary Pennington <Gary.Pennington@uk.sun.com>, Daniel Veillard + */ + +#ifndef __XML_GLOBALS_H +#define __XML_GLOBALS_H + +#include <libxml/xmlversion.h> +#include <libxml/parser.h> +#include <libxml/xmlerror.h> +#include <libxml/SAX.h> +#include <libxml/SAX2.h> +#include <libxml/xmlmemory.h> + +#ifdef __cplusplus +extern "C" { +#endif + +XMLPUBFUN void XMLCALL xmlInitGlobals(void); +XMLPUBFUN void XMLCALL xmlCleanupGlobals(void); + +/** + * xmlParserInputBufferCreateFilenameFunc: + * @URI: the URI to read from + * @enc: the requested source encoding + * + * Signature for the function doing the lookup for a suitable input method + * corresponding to an URI. + * + * Returns the new xmlParserInputBufferPtr in case of success or NULL if no + * method was found. + */ +typedef xmlParserInputBufferPtr (*xmlParserInputBufferCreateFilenameFunc) (const char *URI, xmlCharEncoding enc); + +/** + * xmlOutputBufferCreateFilenameFunc: + * @URI: the URI to write to + * @enc: the requested target encoding + * + * Signature for the function doing the lookup for a suitable output method + * corresponding to an URI. + * + * Returns the new xmlOutputBufferPtr in case of success or NULL if no + * method was found. + */ +typedef xmlOutputBufferPtr (*xmlOutputBufferCreateFilenameFunc) (const char *URI, xmlCharEncodingHandlerPtr encoder, int compression); + +XMLPUBFUN xmlParserInputBufferCreateFilenameFunc +XMLCALL xmlParserInputBufferCreateFilenameDefault (xmlParserInputBufferCreateFilenameFunc func); +XMLPUBFUN xmlOutputBufferCreateFilenameFunc +XMLCALL xmlOutputBufferCreateFilenameDefault (xmlOutputBufferCreateFilenameFunc func); + +/* + * Externally global symbols which need to be protected for backwards + * compatibility support. + */ + +#undef docbDefaultSAXHandler +#undef htmlDefaultSAXHandler +#undef oldXMLWDcompatibility +#undef xmlBufferAllocScheme +#undef xmlDefaultBufferSize +#undef xmlDefaultSAXHandler +#undef xmlDefaultSAXLocator +#undef xmlDoValidityCheckingDefaultValue +#undef xmlFree +#undef xmlGenericError +#undef xmlStructuredError +#undef xmlGenericErrorContext +#undef xmlStructuredErrorContext +#undef xmlGetWarningsDefaultValue +#undef xmlIndentTreeOutput +#undef xmlTreeIndentString +#undef xmlKeepBlanksDefaultValue +#undef xmlLineNumbersDefaultValue +#undef xmlLoadExtDtdDefaultValue +#undef xmlMalloc +#undef xmlMallocAtomic +#undef xmlMemStrdup +#undef xmlParserDebugEntities +#undef xmlParserVersion +#undef xmlPedanticParserDefaultValue +#undef xmlRealloc +#undef xmlSaveNoEmptyTags +#undef xmlSubstituteEntitiesDefaultValue +#undef xmlRegisterNodeDefaultValue +#undef xmlDeregisterNodeDefaultValue +#undef xmlLastError +#undef xmlParserInputBufferCreateFilenameValue +#undef xmlOutputBufferCreateFilenameValue + +/** + * xmlRegisterNodeFunc: + * @node: the current node + * + * Signature for the registration callback of a created node + */ +typedef void (*xmlRegisterNodeFunc) (xmlNodePtr node); +/** + * xmlDeregisterNodeFunc: + * @node: the current node + * + * Signature for the deregistration callback of a discarded node + */ +typedef void (*xmlDeregisterNodeFunc) (xmlNodePtr node); + +typedef struct _xmlGlobalState xmlGlobalState; +typedef xmlGlobalState *xmlGlobalStatePtr; +struct _xmlGlobalState +{ + const char *xmlParserVersion; + + xmlSAXLocator xmlDefaultSAXLocator; + xmlSAXHandlerV1 xmlDefaultSAXHandler; + xmlSAXHandlerV1 docbDefaultSAXHandler; + xmlSAXHandlerV1 htmlDefaultSAXHandler; + + xmlFreeFunc xmlFree; + xmlMallocFunc xmlMalloc; + xmlStrdupFunc xmlMemStrdup; + xmlReallocFunc xmlRealloc; + + xmlGenericErrorFunc xmlGenericError; + xmlStructuredErrorFunc xmlStructuredError; + void *xmlGenericErrorContext; + + int oldXMLWDcompatibility; + + xmlBufferAllocationScheme xmlBufferAllocScheme; + int xmlDefaultBufferSize; + + int xmlSubstituteEntitiesDefaultValue; + int xmlDoValidityCheckingDefaultValue; + int xmlGetWarningsDefaultValue; + int xmlKeepBlanksDefaultValue; + int xmlLineNumbersDefaultValue; + int xmlLoadExtDtdDefaultValue; + int xmlParserDebugEntities; + int xmlPedanticParserDefaultValue; + + int xmlSaveNoEmptyTags; + int xmlIndentTreeOutput; + const char *xmlTreeIndentString; + + xmlRegisterNodeFunc xmlRegisterNodeDefaultValue; + xmlDeregisterNodeFunc xmlDeregisterNodeDefaultValue; + + xmlMallocFunc xmlMallocAtomic; + xmlError xmlLastError; + + xmlParserInputBufferCreateFilenameFunc xmlParserInputBufferCreateFilenameValue; + xmlOutputBufferCreateFilenameFunc xmlOutputBufferCreateFilenameValue; + + void *xmlStructuredErrorContext; +}; + +#ifdef __cplusplus +} +#endif +#include <libxml/threads.h> +#ifdef __cplusplus +extern "C" { +#endif + +XMLPUBFUN void XMLCALL xmlInitializeGlobalState(xmlGlobalStatePtr gs); + +XMLPUBFUN void XMLCALL xmlThrDefSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler); + +XMLPUBFUN void XMLCALL xmlThrDefSetStructuredErrorFunc(void *ctx, xmlStructuredErrorFunc handler); + +XMLPUBFUN xmlRegisterNodeFunc XMLCALL xmlRegisterNodeDefault(xmlRegisterNodeFunc func); +XMLPUBFUN xmlRegisterNodeFunc XMLCALL xmlThrDefRegisterNodeDefault(xmlRegisterNodeFunc func); +XMLPUBFUN xmlDeregisterNodeFunc XMLCALL xmlDeregisterNodeDefault(xmlDeregisterNodeFunc func); +XMLPUBFUN xmlDeregisterNodeFunc XMLCALL xmlThrDefDeregisterNodeDefault(xmlDeregisterNodeFunc func); + +XMLPUBFUN xmlOutputBufferCreateFilenameFunc XMLCALL + xmlThrDefOutputBufferCreateFilenameDefault(xmlOutputBufferCreateFilenameFunc func); +XMLPUBFUN xmlParserInputBufferCreateFilenameFunc XMLCALL + xmlThrDefParserInputBufferCreateFilenameDefault(xmlParserInputBufferCreateFilenameFunc func); + +/** DOC_DISABLE */ +/* + * In general the memory allocation entry points are not kept + * thread specific but this can be overridden by LIBXML_THREAD_ALLOC_ENABLED + * - xmlMalloc + * - xmlMallocAtomic + * - xmlRealloc + * - xmlMemStrdup + * - xmlFree + */ + +#ifdef LIBXML_THREAD_ALLOC_ENABLED +#ifdef LIBXML_THREAD_ENABLED +XMLPUBFUN xmlMallocFunc * XMLCALL __xmlMalloc(void); +#define xmlMalloc \ +(*(__xmlMalloc())) +#else +XMLPUBVAR xmlMallocFunc xmlMalloc; +#endif + +#ifdef LIBXML_THREAD_ENABLED +XMLPUBFUN xmlMallocFunc * XMLCALL __xmlMallocAtomic(void); +#define xmlMallocAtomic \ +(*(__xmlMallocAtomic())) +#else +XMLPUBVAR xmlMallocFunc xmlMallocAtomic; +#endif + +#ifdef LIBXML_THREAD_ENABLED +XMLPUBFUN xmlReallocFunc * XMLCALL __xmlRealloc(void); +#define xmlRealloc \ +(*(__xmlRealloc())) +#else +XMLPUBVAR xmlReallocFunc xmlRealloc; +#endif + +#ifdef LIBXML_THREAD_ENABLED +XMLPUBFUN xmlFreeFunc * XMLCALL __xmlFree(void); +#define xmlFree \ +(*(__xmlFree())) +#else +XMLPUBVAR xmlFreeFunc xmlFree; +#endif + +#ifdef LIBXML_THREAD_ENABLED +XMLPUBFUN xmlStrdupFunc * XMLCALL __xmlMemStrdup(void); +#define xmlMemStrdup \ +(*(__xmlMemStrdup())) +#else +XMLPUBVAR xmlStrdupFunc xmlMemStrdup; +#endif + +#else /* !LIBXML_THREAD_ALLOC_ENABLED */ +XMLPUBVAR xmlMallocFunc xmlMalloc; +XMLPUBVAR xmlMallocFunc xmlMallocAtomic; +XMLPUBVAR xmlReallocFunc xmlRealloc; +XMLPUBVAR xmlFreeFunc xmlFree; +XMLPUBVAR xmlStrdupFunc xmlMemStrdup; +#endif /* LIBXML_THREAD_ALLOC_ENABLED */ + +#ifdef LIBXML_DOCB_ENABLED +XMLPUBFUN xmlSAXHandlerV1 * XMLCALL __docbDefaultSAXHandler(void); +#ifdef LIBXML_THREAD_ENABLED +#define docbDefaultSAXHandler \ +(*(__docbDefaultSAXHandler())) +#else +XMLPUBVAR xmlSAXHandlerV1 docbDefaultSAXHandler; +#endif +#endif + +#ifdef LIBXML_HTML_ENABLED +XMLPUBFUN xmlSAXHandlerV1 * XMLCALL __htmlDefaultSAXHandler(void); +#ifdef LIBXML_THREAD_ENABLED +#define htmlDefaultSAXHandler \ +(*(__htmlDefaultSAXHandler())) +#else +XMLPUBVAR xmlSAXHandlerV1 htmlDefaultSAXHandler; +#endif +#endif + +XMLPUBFUN xmlError * XMLCALL __xmlLastError(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlLastError \ +(*(__xmlLastError())) +#else +XMLPUBVAR xmlError xmlLastError; +#endif + +/* + * Everything starting from the line below is + * Automatically generated by build_glob.py. + * Do not modify the previous line. + */ + + +XMLPUBFUN int * XMLCALL __oldXMLWDcompatibility(void); +#ifdef LIBXML_THREAD_ENABLED +#define oldXMLWDcompatibility \ +(*(__oldXMLWDcompatibility())) +#else +XMLPUBVAR int oldXMLWDcompatibility; +#endif + +XMLPUBFUN xmlBufferAllocationScheme * XMLCALL __xmlBufferAllocScheme(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlBufferAllocScheme \ +(*(__xmlBufferAllocScheme())) +#else +XMLPUBVAR xmlBufferAllocationScheme xmlBufferAllocScheme; +#endif +XMLPUBFUN xmlBufferAllocationScheme XMLCALL xmlThrDefBufferAllocScheme(xmlBufferAllocationScheme v); + +XMLPUBFUN int * XMLCALL __xmlDefaultBufferSize(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlDefaultBufferSize \ +(*(__xmlDefaultBufferSize())) +#else +XMLPUBVAR int xmlDefaultBufferSize; +#endif +XMLPUBFUN int XMLCALL xmlThrDefDefaultBufferSize(int v); + +XMLPUBFUN xmlSAXHandlerV1 * XMLCALL __xmlDefaultSAXHandler(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlDefaultSAXHandler \ +(*(__xmlDefaultSAXHandler())) +#else +XMLPUBVAR xmlSAXHandlerV1 xmlDefaultSAXHandler; +#endif + +XMLPUBFUN xmlSAXLocator * XMLCALL __xmlDefaultSAXLocator(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlDefaultSAXLocator \ +(*(__xmlDefaultSAXLocator())) +#else +XMLPUBVAR xmlSAXLocator xmlDefaultSAXLocator; +#endif + +XMLPUBFUN int * XMLCALL __xmlDoValidityCheckingDefaultValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlDoValidityCheckingDefaultValue \ +(*(__xmlDoValidityCheckingDefaultValue())) +#else +XMLPUBVAR int xmlDoValidityCheckingDefaultValue; +#endif +XMLPUBFUN int XMLCALL xmlThrDefDoValidityCheckingDefaultValue(int v); + +XMLPUBFUN xmlGenericErrorFunc * XMLCALL __xmlGenericError(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlGenericError \ +(*(__xmlGenericError())) +#else +XMLPUBVAR xmlGenericErrorFunc xmlGenericError; +#endif + +XMLPUBFUN xmlStructuredErrorFunc * XMLCALL __xmlStructuredError(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlStructuredError \ +(*(__xmlStructuredError())) +#else +XMLPUBVAR xmlStructuredErrorFunc xmlStructuredError; +#endif + +XMLPUBFUN void * * XMLCALL __xmlGenericErrorContext(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlGenericErrorContext \ +(*(__xmlGenericErrorContext())) +#else +XMLPUBVAR void * xmlGenericErrorContext; +#endif + +XMLPUBFUN void * * XMLCALL __xmlStructuredErrorContext(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlStructuredErrorContext \ +(*(__xmlStructuredErrorContext())) +#else +XMLPUBVAR void * xmlStructuredErrorContext; +#endif + +XMLPUBFUN int * XMLCALL __xmlGetWarningsDefaultValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlGetWarningsDefaultValue \ +(*(__xmlGetWarningsDefaultValue())) +#else +XMLPUBVAR int xmlGetWarningsDefaultValue; +#endif +XMLPUBFUN int XMLCALL xmlThrDefGetWarningsDefaultValue(int v); + +XMLPUBFUN int * XMLCALL __xmlIndentTreeOutput(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlIndentTreeOutput \ +(*(__xmlIndentTreeOutput())) +#else +XMLPUBVAR int xmlIndentTreeOutput; +#endif +XMLPUBFUN int XMLCALL xmlThrDefIndentTreeOutput(int v); + +XMLPUBFUN const char * * XMLCALL __xmlTreeIndentString(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlTreeIndentString \ +(*(__xmlTreeIndentString())) +#else +XMLPUBVAR const char * xmlTreeIndentString; +#endif +XMLPUBFUN const char * XMLCALL xmlThrDefTreeIndentString(const char * v); + +XMLPUBFUN int * XMLCALL __xmlKeepBlanksDefaultValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlKeepBlanksDefaultValue \ +(*(__xmlKeepBlanksDefaultValue())) +#else +XMLPUBVAR int xmlKeepBlanksDefaultValue; +#endif +XMLPUBFUN int XMLCALL xmlThrDefKeepBlanksDefaultValue(int v); + +XMLPUBFUN int * XMLCALL __xmlLineNumbersDefaultValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlLineNumbersDefaultValue \ +(*(__xmlLineNumbersDefaultValue())) +#else +XMLPUBVAR int xmlLineNumbersDefaultValue; +#endif +XMLPUBFUN int XMLCALL xmlThrDefLineNumbersDefaultValue(int v); + +XMLPUBFUN int * XMLCALL __xmlLoadExtDtdDefaultValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlLoadExtDtdDefaultValue \ +(*(__xmlLoadExtDtdDefaultValue())) +#else +XMLPUBVAR int xmlLoadExtDtdDefaultValue; +#endif +XMLPUBFUN int XMLCALL xmlThrDefLoadExtDtdDefaultValue(int v); + +XMLPUBFUN int * XMLCALL __xmlParserDebugEntities(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlParserDebugEntities \ +(*(__xmlParserDebugEntities())) +#else +XMLPUBVAR int xmlParserDebugEntities; +#endif +XMLPUBFUN int XMLCALL xmlThrDefParserDebugEntities(int v); + +XMLPUBFUN const char * * XMLCALL __xmlParserVersion(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlParserVersion \ +(*(__xmlParserVersion())) +#else +XMLPUBVAR const char * xmlParserVersion; +#endif + +XMLPUBFUN int * XMLCALL __xmlPedanticParserDefaultValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlPedanticParserDefaultValue \ +(*(__xmlPedanticParserDefaultValue())) +#else +XMLPUBVAR int xmlPedanticParserDefaultValue; +#endif +XMLPUBFUN int XMLCALL xmlThrDefPedanticParserDefaultValue(int v); + +XMLPUBFUN int * XMLCALL __xmlSaveNoEmptyTags(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlSaveNoEmptyTags \ +(*(__xmlSaveNoEmptyTags())) +#else +XMLPUBVAR int xmlSaveNoEmptyTags; +#endif +XMLPUBFUN int XMLCALL xmlThrDefSaveNoEmptyTags(int v); + +XMLPUBFUN int * XMLCALL __xmlSubstituteEntitiesDefaultValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlSubstituteEntitiesDefaultValue \ +(*(__xmlSubstituteEntitiesDefaultValue())) +#else +XMLPUBVAR int xmlSubstituteEntitiesDefaultValue; +#endif +XMLPUBFUN int XMLCALL xmlThrDefSubstituteEntitiesDefaultValue(int v); + +XMLPUBFUN xmlRegisterNodeFunc * XMLCALL __xmlRegisterNodeDefaultValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlRegisterNodeDefaultValue \ +(*(__xmlRegisterNodeDefaultValue())) +#else +XMLPUBVAR xmlRegisterNodeFunc xmlRegisterNodeDefaultValue; +#endif + +XMLPUBFUN xmlDeregisterNodeFunc * XMLCALL __xmlDeregisterNodeDefaultValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlDeregisterNodeDefaultValue \ +(*(__xmlDeregisterNodeDefaultValue())) +#else +XMLPUBVAR xmlDeregisterNodeFunc xmlDeregisterNodeDefaultValue; +#endif + +XMLPUBFUN xmlParserInputBufferCreateFilenameFunc * XMLCALL __xmlParserInputBufferCreateFilenameValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlParserInputBufferCreateFilenameValue \ +(*(__xmlParserInputBufferCreateFilenameValue())) +#else +XMLPUBVAR xmlParserInputBufferCreateFilenameFunc xmlParserInputBufferCreateFilenameValue; +#endif + +XMLPUBFUN xmlOutputBufferCreateFilenameFunc * XMLCALL __xmlOutputBufferCreateFilenameValue(void); +#ifdef LIBXML_THREAD_ENABLED +#define xmlOutputBufferCreateFilenameValue \ +(*(__xmlOutputBufferCreateFilenameValue())) +#else +XMLPUBVAR xmlOutputBufferCreateFilenameFunc xmlOutputBufferCreateFilenameValue; +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* __XML_GLOBALS_H */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/hash.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/hash.h new file mode 100644 index 0000000000..7fe4be754c --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/hash.h @@ -0,0 +1,233 @@ +/* + * Summary: Chained hash tables + * Description: This module implements the hash table support used in + * various places in the library. + * + * Copy: See Copyright for the status of this software. + * + * Author: Bjorn Reese <bjorn.reese@systematic.dk> + */ + +#ifndef __XML_HASH_H__ +#define __XML_HASH_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * The hash table. + */ +typedef struct _xmlHashTable xmlHashTable; +typedef xmlHashTable *xmlHashTablePtr; + +#ifdef __cplusplus +} +#endif + +#include <libxml/xmlversion.h> +#include <libxml/parser.h> +#include <libxml/dict.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Recent version of gcc produce a warning when a function pointer is assigned + * to an object pointer, or vice versa. The following macro is a dirty hack + * to allow suppression of the warning. If your architecture has function + * pointers which are a different size than a void pointer, there may be some + * serious trouble within the library. + */ +/** + * XML_CAST_FPTR: + * @fptr: pointer to a function + * + * Macro to do a casting from an object pointer to a + * function pointer without encountering a warning from + * gcc + * + * #define XML_CAST_FPTR(fptr) (*(void **)(&fptr)) + * This macro violated ISO C aliasing rules (gcc4 on s390 broke) + * so it is disabled now + */ + +#define XML_CAST_FPTR(fptr) fptr + + +/* + * function types: + */ +/** + * xmlHashDeallocator: + * @payload: the data in the hash + * @name: the name associated + * + * Callback to free data from a hash. + */ +typedef void (*xmlHashDeallocator)(void *payload, xmlChar *name); +/** + * xmlHashCopier: + * @payload: the data in the hash + * @name: the name associated + * + * Callback to copy data from a hash. + * + * Returns a copy of the data or NULL in case of error. + */ +typedef void *(*xmlHashCopier)(void *payload, xmlChar *name); +/** + * xmlHashScanner: + * @payload: the data in the hash + * @data: extra scannner data + * @name: the name associated + * + * Callback when scanning data in a hash with the simple scanner. + */ +typedef void (*xmlHashScanner)(void *payload, void *data, xmlChar *name); +/** + * xmlHashScannerFull: + * @payload: the data in the hash + * @data: extra scannner data + * @name: the name associated + * @name2: the second name associated + * @name3: the third name associated + * + * Callback when scanning data in a hash with the full scanner. + */ +typedef void (*xmlHashScannerFull)(void *payload, void *data, + const xmlChar *name, const xmlChar *name2, + const xmlChar *name3); + +/* + * Constructor and destructor. + */ +XMLPUBFUN xmlHashTablePtr XMLCALL + xmlHashCreate (int size); +XMLPUBFUN xmlHashTablePtr XMLCALL + xmlHashCreateDict(int size, + xmlDictPtr dict); +XMLPUBFUN void XMLCALL + xmlHashFree (xmlHashTablePtr table, + xmlHashDeallocator f); + +/* + * Add a new entry to the hash table. + */ +XMLPUBFUN int XMLCALL + xmlHashAddEntry (xmlHashTablePtr table, + const xmlChar *name, + void *userdata); +XMLPUBFUN int XMLCALL + xmlHashUpdateEntry(xmlHashTablePtr table, + const xmlChar *name, + void *userdata, + xmlHashDeallocator f); +XMLPUBFUN int XMLCALL + xmlHashAddEntry2(xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *name2, + void *userdata); +XMLPUBFUN int XMLCALL + xmlHashUpdateEntry2(xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *name2, + void *userdata, + xmlHashDeallocator f); +XMLPUBFUN int XMLCALL + xmlHashAddEntry3(xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *name2, + const xmlChar *name3, + void *userdata); +XMLPUBFUN int XMLCALL + xmlHashUpdateEntry3(xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *name2, + const xmlChar *name3, + void *userdata, + xmlHashDeallocator f); + +/* + * Remove an entry from the hash table. + */ +XMLPUBFUN int XMLCALL + xmlHashRemoveEntry(xmlHashTablePtr table, const xmlChar *name, + xmlHashDeallocator f); +XMLPUBFUN int XMLCALL + xmlHashRemoveEntry2(xmlHashTablePtr table, const xmlChar *name, + const xmlChar *name2, xmlHashDeallocator f); +XMLPUBFUN int XMLCALL + xmlHashRemoveEntry3(xmlHashTablePtr table, const xmlChar *name, + const xmlChar *name2, const xmlChar *name3, + xmlHashDeallocator f); + +/* + * Retrieve the userdata. + */ +XMLPUBFUN void * XMLCALL + xmlHashLookup (xmlHashTablePtr table, + const xmlChar *name); +XMLPUBFUN void * XMLCALL + xmlHashLookup2 (xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *name2); +XMLPUBFUN void * XMLCALL + xmlHashLookup3 (xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *name2, + const xmlChar *name3); +XMLPUBFUN void * XMLCALL + xmlHashQLookup (xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *prefix); +XMLPUBFUN void * XMLCALL + xmlHashQLookup2 (xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *prefix, + const xmlChar *name2, + const xmlChar *prefix2); +XMLPUBFUN void * XMLCALL + xmlHashQLookup3 (xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *prefix, + const xmlChar *name2, + const xmlChar *prefix2, + const xmlChar *name3, + const xmlChar *prefix3); + +/* + * Helpers. + */ +XMLPUBFUN xmlHashTablePtr XMLCALL + xmlHashCopy (xmlHashTablePtr table, + xmlHashCopier f); +XMLPUBFUN int XMLCALL + xmlHashSize (xmlHashTablePtr table); +XMLPUBFUN void XMLCALL + xmlHashScan (xmlHashTablePtr table, + xmlHashScanner f, + void *data); +XMLPUBFUN void XMLCALL + xmlHashScan3 (xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *name2, + const xmlChar *name3, + xmlHashScanner f, + void *data); +XMLPUBFUN void XMLCALL + xmlHashScanFull (xmlHashTablePtr table, + xmlHashScannerFull f, + void *data); +XMLPUBFUN void XMLCALL + xmlHashScanFull3(xmlHashTablePtr table, + const xmlChar *name, + const xmlChar *name2, + const xmlChar *name3, + xmlHashScannerFull f, + void *data); +#ifdef __cplusplus +} +#endif +#endif /* ! __XML_HASH_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/list.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/list.h new file mode 100644 index 0000000000..1d83482430 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/list.h @@ -0,0 +1,137 @@ +/* + * Summary: lists interfaces + * Description: this module implement the list support used in + * various place in the library. + * + * Copy: See Copyright for the status of this software. + * + * Author: Gary Pennington <Gary.Pennington@uk.sun.com> + */ + +#ifndef __XML_LINK_INCLUDE__ +#define __XML_LINK_INCLUDE__ + +#include <libxml/xmlversion.h> + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct _xmlLink xmlLink; +typedef xmlLink *xmlLinkPtr; + +typedef struct _xmlList xmlList; +typedef xmlList *xmlListPtr; + +/** + * xmlListDeallocator: + * @lk: the data to deallocate + * + * Callback function used to free data from a list. + */ +typedef void (*xmlListDeallocator) (xmlLinkPtr lk); +/** + * xmlListDataCompare: + * @data0: the first data + * @data1: the second data + * + * Callback function used to compare 2 data. + * + * Returns 0 is equality, -1 or 1 otherwise depending on the ordering. + */ +typedef int (*xmlListDataCompare) (const void *data0, const void *data1); +/** + * xmlListWalker: + * @data: the data found in the list + * @user: extra user provided data to the walker + * + * Callback function used when walking a list with xmlListWalk(). + * + * Returns 0 to stop walking the list, 1 otherwise. + */ +typedef int (*xmlListWalker) (const void *data, const void *user); + +/* Creation/Deletion */ +XMLPUBFUN xmlListPtr XMLCALL + xmlListCreate (xmlListDeallocator deallocator, + xmlListDataCompare compare); +XMLPUBFUN void XMLCALL + xmlListDelete (xmlListPtr l); + +/* Basic Operators */ +XMLPUBFUN void * XMLCALL + xmlListSearch (xmlListPtr l, + void *data); +XMLPUBFUN void * XMLCALL + xmlListReverseSearch (xmlListPtr l, + void *data); +XMLPUBFUN int XMLCALL + xmlListInsert (xmlListPtr l, + void *data) ; +XMLPUBFUN int XMLCALL + xmlListAppend (xmlListPtr l, + void *data) ; +XMLPUBFUN int XMLCALL + xmlListRemoveFirst (xmlListPtr l, + void *data); +XMLPUBFUN int XMLCALL + xmlListRemoveLast (xmlListPtr l, + void *data); +XMLPUBFUN int XMLCALL + xmlListRemoveAll (xmlListPtr l, + void *data); +XMLPUBFUN void XMLCALL + xmlListClear (xmlListPtr l); +XMLPUBFUN int XMLCALL + xmlListEmpty (xmlListPtr l); +XMLPUBFUN xmlLinkPtr XMLCALL + xmlListFront (xmlListPtr l); +XMLPUBFUN xmlLinkPtr XMLCALL + xmlListEnd (xmlListPtr l); +XMLPUBFUN int XMLCALL + xmlListSize (xmlListPtr l); + +XMLPUBFUN void XMLCALL + xmlListPopFront (xmlListPtr l); +XMLPUBFUN void XMLCALL + xmlListPopBack (xmlListPtr l); +XMLPUBFUN int XMLCALL + xmlListPushFront (xmlListPtr l, + void *data); +XMLPUBFUN int XMLCALL + xmlListPushBack (xmlListPtr l, + void *data); + +/* Advanced Operators */ +XMLPUBFUN void XMLCALL + xmlListReverse (xmlListPtr l); +XMLPUBFUN void XMLCALL + xmlListSort (xmlListPtr l); +XMLPUBFUN void XMLCALL + xmlListWalk (xmlListPtr l, + xmlListWalker walker, + const void *user); +XMLPUBFUN void XMLCALL + xmlListReverseWalk (xmlListPtr l, + xmlListWalker walker, + const void *user); +XMLPUBFUN void XMLCALL + xmlListMerge (xmlListPtr l1, + xmlListPtr l2); +XMLPUBFUN xmlListPtr XMLCALL + xmlListDup (const xmlListPtr old); +XMLPUBFUN int XMLCALL + xmlListCopy (xmlListPtr cur, + const xmlListPtr old); +/* Link operators */ +XMLPUBFUN void * XMLCALL + xmlLinkGetData (xmlLinkPtr lk); + +/* xmlListUnique() */ +/* xmlListSwap */ + +#ifdef __cplusplus +} +#endif + +#endif /* __XML_LINK_INCLUDE__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/nanoftp.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/nanoftp.h new file mode 100644 index 0000000000..397bbba74f --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/nanoftp.h @@ -0,0 +1,162 @@ +/* + * Summary: minimal FTP implementation + * Description: minimal FTP implementation allowing to fetch resources + * like external subset. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __NANO_FTP_H__ +#define __NANO_FTP_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_FTP_ENABLED + +/* Needed for portability to Windows 64 bits */ +#if defined(__MINGW32__) || defined(_WIN32_WCE) +#include <winsock2.h> +#else +/** + * SOCKET: + * + * macro used to provide portability of code to windows sockets + */ +#define SOCKET int +/** + * INVALID_SOCKET: + * + * macro used to provide portability of code to windows sockets + * the value to be used when the socket is not valid + */ +#define INVALID_SOCKET (-1) +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * ftpListCallback: + * @userData: user provided data for the callback + * @filename: the file name (including "->" when links are shown) + * @attrib: the attribute string + * @owner: the owner string + * @group: the group string + * @size: the file size + * @links: the link count + * @year: the year + * @month: the month + * @day: the day + * @hour: the hour + * @minute: the minute + * + * A callback for the xmlNanoFTPList command. + * Note that only one of year and day:minute are specified. + */ +typedef void (*ftpListCallback) (void *userData, + const char *filename, const char *attrib, + const char *owner, const char *group, + unsigned long size, int links, int year, + const char *month, int day, int hour, + int minute); +/** + * ftpDataCallback: + * @userData: the user provided context + * @data: the data received + * @len: its size in bytes + * + * A callback for the xmlNanoFTPGet command. + */ +typedef void (*ftpDataCallback) (void *userData, + const char *data, + int len); + +/* + * Init + */ +XMLPUBFUN void XMLCALL + xmlNanoFTPInit (void); +XMLPUBFUN void XMLCALL + xmlNanoFTPCleanup (void); + +/* + * Creating/freeing contexts. + */ +XMLPUBFUN void * XMLCALL + xmlNanoFTPNewCtxt (const char *URL); +XMLPUBFUN void XMLCALL + xmlNanoFTPFreeCtxt (void * ctx); +XMLPUBFUN void * XMLCALL + xmlNanoFTPConnectTo (const char *server, + int port); +/* + * Opening/closing session connections. + */ +XMLPUBFUN void * XMLCALL + xmlNanoFTPOpen (const char *URL); +XMLPUBFUN int XMLCALL + xmlNanoFTPConnect (void *ctx); +XMLPUBFUN int XMLCALL + xmlNanoFTPClose (void *ctx); +XMLPUBFUN int XMLCALL + xmlNanoFTPQuit (void *ctx); +XMLPUBFUN void XMLCALL + xmlNanoFTPScanProxy (const char *URL); +XMLPUBFUN void XMLCALL + xmlNanoFTPProxy (const char *host, + int port, + const char *user, + const char *passwd, + int type); +XMLPUBFUN int XMLCALL + xmlNanoFTPUpdateURL (void *ctx, + const char *URL); + +/* + * Rather internal commands. + */ +XMLPUBFUN int XMLCALL + xmlNanoFTPGetResponse (void *ctx); +XMLPUBFUN int XMLCALL + xmlNanoFTPCheckResponse (void *ctx); + +/* + * CD/DIR/GET handlers. + */ +XMLPUBFUN int XMLCALL + xmlNanoFTPCwd (void *ctx, + const char *directory); +XMLPUBFUN int XMLCALL + xmlNanoFTPDele (void *ctx, + const char *file); + +XMLPUBFUN SOCKET XMLCALL + xmlNanoFTPGetConnection (void *ctx); +XMLPUBFUN int XMLCALL + xmlNanoFTPCloseConnection(void *ctx); +XMLPUBFUN int XMLCALL + xmlNanoFTPList (void *ctx, + ftpListCallback callback, + void *userData, + const char *filename); +XMLPUBFUN SOCKET XMLCALL + xmlNanoFTPGetSocket (void *ctx, + const char *filename); +XMLPUBFUN int XMLCALL + xmlNanoFTPGet (void *ctx, + ftpDataCallback callback, + void *userData, + const char *filename); +XMLPUBFUN int XMLCALL + xmlNanoFTPRead (void *ctx, + void *dest, + int len); + +#ifdef __cplusplus +} +#endif +#endif /* LIBXML_FTP_ENABLED */ +#endif /* __NANO_FTP_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/nanohttp.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/nanohttp.h new file mode 100644 index 0000000000..1d8ac24b2a --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/nanohttp.h @@ -0,0 +1,81 @@ +/* + * Summary: minimal HTTP implementation + * Description: minimal HTTP implementation allowing to fetch resources + * like external subset. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __NANO_HTTP_H__ +#define __NANO_HTTP_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_HTTP_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif +XMLPUBFUN void XMLCALL + xmlNanoHTTPInit (void); +XMLPUBFUN void XMLCALL + xmlNanoHTTPCleanup (void); +XMLPUBFUN void XMLCALL + xmlNanoHTTPScanProxy (const char *URL); +XMLPUBFUN int XMLCALL + xmlNanoHTTPFetch (const char *URL, + const char *filename, + char **contentType); +XMLPUBFUN void * XMLCALL + xmlNanoHTTPMethod (const char *URL, + const char *method, + const char *input, + char **contentType, + const char *headers, + int ilen); +XMLPUBFUN void * XMLCALL + xmlNanoHTTPMethodRedir (const char *URL, + const char *method, + const char *input, + char **contentType, + char **redir, + const char *headers, + int ilen); +XMLPUBFUN void * XMLCALL + xmlNanoHTTPOpen (const char *URL, + char **contentType); +XMLPUBFUN void * XMLCALL + xmlNanoHTTPOpenRedir (const char *URL, + char **contentType, + char **redir); +XMLPUBFUN int XMLCALL + xmlNanoHTTPReturnCode (void *ctx); +XMLPUBFUN const char * XMLCALL + xmlNanoHTTPAuthHeader (void *ctx); +XMLPUBFUN const char * XMLCALL + xmlNanoHTTPRedir (void *ctx); +XMLPUBFUN int XMLCALL + xmlNanoHTTPContentLength( void * ctx ); +XMLPUBFUN const char * XMLCALL + xmlNanoHTTPEncoding (void *ctx); +XMLPUBFUN const char * XMLCALL + xmlNanoHTTPMimeType (void *ctx); +XMLPUBFUN int XMLCALL + xmlNanoHTTPRead (void *ctx, + void *dest, + int len); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN int XMLCALL + xmlNanoHTTPSave (void *ctxt, + const char *filename); +#endif /* LIBXML_OUTPUT_ENABLED */ +XMLPUBFUN void XMLCALL + xmlNanoHTTPClose (void *ctx); +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_HTTP_ENABLED */ +#endif /* __NANO_HTTP_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/parser.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/parser.h new file mode 100644 index 0000000000..47b3df1525 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/parser.h @@ -0,0 +1,1235 @@ +/* + * Summary: the core parser module + * Description: Interfaces, constants and types related to the XML parser + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_PARSER_H__ +#define __XML_PARSER_H__ + +#include <stdarg.h> + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> +#include <libxml/dict.h> +#include <libxml/hash.h> +#include <libxml/valid.h> +#include <libxml/entities.h> +#include <libxml/xmlerror.h> +#include <libxml/xmlstring.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * XML_DEFAULT_VERSION: + * + * The default version of XML used: 1.0 + */ +#define XML_DEFAULT_VERSION "1.0" + +/** + * xmlParserInput: + * + * An xmlParserInput is an input flow for the XML processor. + * Each entity parsed is associated an xmlParserInput (except the + * few predefined ones). This is the case both for internal entities + * - in which case the flow is already completely in memory - or + * external entities - in which case we use the buf structure for + * progressive reading and I18N conversions to the internal UTF-8 format. + */ + +/** + * xmlParserInputDeallocate: + * @str: the string to deallocate + * + * Callback for freeing some parser input allocations. + */ +typedef void (* xmlParserInputDeallocate)(xmlChar *str); + +struct _xmlParserInput { + /* Input buffer */ + xmlParserInputBufferPtr buf; /* UTF-8 encoded buffer */ + + const char *filename; /* The file analyzed, if any */ + const char *directory; /* the directory/base of the file */ + const xmlChar *base; /* Base of the array to parse */ + const xmlChar *cur; /* Current char being parsed */ + const xmlChar *end; /* end of the array to parse */ + int length; /* length if known */ + int line; /* Current line */ + int col; /* Current column */ + /* + * NOTE: consumed is only tested for equality in the parser code, + * so even if there is an overflow this should not give troubles + * for parsing very large instances. + */ + unsigned long consumed; /* How many xmlChars already consumed */ + xmlParserInputDeallocate free; /* function to deallocate the base */ + const xmlChar *encoding; /* the encoding string for entity */ + const xmlChar *version; /* the version string for entity */ + int standalone; /* Was that entity marked standalone */ + int id; /* an unique identifier for the entity */ +}; + +/** + * xmlParserNodeInfo: + * + * The parser can be asked to collect Node informations, i.e. at what + * place in the file they were detected. + * NOTE: This is off by default and not very well tested. + */ +typedef struct _xmlParserNodeInfo xmlParserNodeInfo; +typedef xmlParserNodeInfo *xmlParserNodeInfoPtr; + +struct _xmlParserNodeInfo { + const struct _xmlNode* node; + /* Position & line # that text that created the node begins & ends on */ + unsigned long begin_pos; + unsigned long begin_line; + unsigned long end_pos; + unsigned long end_line; +}; + +typedef struct _xmlParserNodeInfoSeq xmlParserNodeInfoSeq; +typedef xmlParserNodeInfoSeq *xmlParserNodeInfoSeqPtr; +struct _xmlParserNodeInfoSeq { + unsigned long maximum; + unsigned long length; + xmlParserNodeInfo* buffer; +}; + +/** + * xmlParserInputState: + * + * The parser is now working also as a state based parser. + * The recursive one use the state info for entities processing. + */ +typedef enum { + XML_PARSER_EOF = -1, /* nothing is to be parsed */ + XML_PARSER_START = 0, /* nothing has been parsed */ + XML_PARSER_MISC, /* Misc* before int subset */ + XML_PARSER_PI, /* Within a processing instruction */ + XML_PARSER_DTD, /* within some DTD content */ + XML_PARSER_PROLOG, /* Misc* after internal subset */ + XML_PARSER_COMMENT, /* within a comment */ + XML_PARSER_START_TAG, /* within a start tag */ + XML_PARSER_CONTENT, /* within the content */ + XML_PARSER_CDATA_SECTION, /* within a CDATA section */ + XML_PARSER_END_TAG, /* within a closing tag */ + XML_PARSER_ENTITY_DECL, /* within an entity declaration */ + XML_PARSER_ENTITY_VALUE, /* within an entity value in a decl */ + XML_PARSER_ATTRIBUTE_VALUE, /* within an attribute value */ + XML_PARSER_SYSTEM_LITERAL, /* within a SYSTEM value */ + XML_PARSER_EPILOG, /* the Misc* after the last end tag */ + XML_PARSER_IGNORE, /* within an IGNORED section */ + XML_PARSER_PUBLIC_LITERAL /* within a PUBLIC value */ +} xmlParserInputState; + +/** + * XML_DETECT_IDS: + * + * Bit in the loadsubset context field to tell to do ID/REFs lookups. + * Use it to initialize xmlLoadExtDtdDefaultValue. + */ +#define XML_DETECT_IDS 2 + +/** + * XML_COMPLETE_ATTRS: + * + * Bit in the loadsubset context field to tell to do complete the + * elements attributes lists with the ones defaulted from the DTDs. + * Use it to initialize xmlLoadExtDtdDefaultValue. + */ +#define XML_COMPLETE_ATTRS 4 + +/** + * XML_SKIP_IDS: + * + * Bit in the loadsubset context field to tell to not do ID/REFs registration. + * Used to initialize xmlLoadExtDtdDefaultValue in some special cases. + */ +#define XML_SKIP_IDS 8 + +/** + * xmlParserMode: + * + * A parser can operate in various modes + */ +typedef enum { + XML_PARSE_UNKNOWN = 0, + XML_PARSE_DOM = 1, + XML_PARSE_SAX = 2, + XML_PARSE_PUSH_DOM = 3, + XML_PARSE_PUSH_SAX = 4, + XML_PARSE_READER = 5 +} xmlParserMode; + +/** + * xmlParserCtxt: + * + * The parser context. + * NOTE This doesn't completely define the parser state, the (current ?) + * design of the parser uses recursive function calls since this allow + * and easy mapping from the production rules of the specification + * to the actual code. The drawback is that the actual function call + * also reflect the parser state. However most of the parsing routines + * takes as the only argument the parser context pointer, so migrating + * to a state based parser for progressive parsing shouldn't be too hard. + */ +struct _xmlParserCtxt { + struct _xmlSAXHandler *sax; /* The SAX handler */ + void *userData; /* For SAX interface only, used by DOM build */ + xmlDocPtr myDoc; /* the document being built */ + int wellFormed; /* is the document well formed */ + int replaceEntities; /* shall we replace entities ? */ + const xmlChar *version; /* the XML version string */ + const xmlChar *encoding; /* the declared encoding, if any */ + int standalone; /* standalone document */ + int html; /* an HTML(1)/Docbook(2) document + * 3 is HTML after <head> + * 10 is HTML after <body> + */ + + /* Input stream stack */ + xmlParserInputPtr input; /* Current input stream */ + int inputNr; /* Number of current input streams */ + int inputMax; /* Max number of input streams */ + xmlParserInputPtr *inputTab; /* stack of inputs */ + + /* Node analysis stack only used for DOM building */ + xmlNodePtr node; /* Current parsed Node */ + int nodeNr; /* Depth of the parsing stack */ + int nodeMax; /* Max depth of the parsing stack */ + xmlNodePtr *nodeTab; /* array of nodes */ + + int record_info; /* Whether node info should be kept */ + xmlParserNodeInfoSeq node_seq; /* info about each node parsed */ + + int errNo; /* error code */ + + int hasExternalSubset; /* reference and external subset */ + int hasPErefs; /* the internal subset has PE refs */ + int external; /* are we parsing an external entity */ + + int valid; /* is the document valid */ + int validate; /* shall we try to validate ? */ + xmlValidCtxt vctxt; /* The validity context */ + + xmlParserInputState instate; /* current type of input */ + int token; /* next char look-ahead */ + + char *directory; /* the data directory */ + + /* Node name stack */ + const xmlChar *name; /* Current parsed Node */ + int nameNr; /* Depth of the parsing stack */ + int nameMax; /* Max depth of the parsing stack */ + const xmlChar * *nameTab; /* array of nodes */ + + long nbChars; /* number of xmlChar processed */ + long checkIndex; /* used by progressive parsing lookup */ + int keepBlanks; /* ugly but ... */ + int disableSAX; /* SAX callbacks are disabled */ + int inSubset; /* Parsing is in int 1/ext 2 subset */ + const xmlChar * intSubName; /* name of subset */ + xmlChar * extSubURI; /* URI of external subset */ + xmlChar * extSubSystem; /* SYSTEM ID of external subset */ + + /* xml:space values */ + int * space; /* Should the parser preserve spaces */ + int spaceNr; /* Depth of the parsing stack */ + int spaceMax; /* Max depth of the parsing stack */ + int * spaceTab; /* array of space infos */ + + int depth; /* to prevent entity substitution loops */ + xmlParserInputPtr entity; /* used to check entities boundaries */ + int charset; /* encoding of the in-memory content + actually an xmlCharEncoding */ + int nodelen; /* Those two fields are there to */ + int nodemem; /* Speed up large node parsing */ + int pedantic; /* signal pedantic warnings */ + void *_private; /* For user data, libxml won't touch it */ + + int loadsubset; /* should the external subset be loaded */ + int linenumbers; /* set line number in element content */ + void *catalogs; /* document's own catalog */ + int recovery; /* run in recovery mode */ + int progressive; /* is this a progressive parsing */ + xmlDictPtr dict; /* dictionnary for the parser */ + const xmlChar * *atts; /* array for the attributes callbacks */ + int maxatts; /* the size of the array */ + int docdict; /* use strings from dict to build tree */ + + /* + * pre-interned strings + */ + const xmlChar *str_xml; + const xmlChar *str_xmlns; + const xmlChar *str_xml_ns; + + /* + * Everything below is used only by the new SAX mode + */ + int sax2; /* operating in the new SAX mode */ + int nsNr; /* the number of inherited namespaces */ + int nsMax; /* the size of the arrays */ + const xmlChar * *nsTab; /* the array of prefix/namespace name */ + int *attallocs; /* which attribute were allocated */ + void * *pushTab; /* array of data for push */ + xmlHashTablePtr attsDefault; /* defaulted attributes if any */ + xmlHashTablePtr attsSpecial; /* non-CDATA attributes if any */ + int nsWellFormed; /* is the document XML Nanespace okay */ + int options; /* Extra options */ + + /* + * Those fields are needed only for treaming parsing so far + */ + int dictNames; /* Use dictionary names for the tree */ + int freeElemsNr; /* number of freed element nodes */ + xmlNodePtr freeElems; /* List of freed element nodes */ + int freeAttrsNr; /* number of freed attributes nodes */ + xmlAttrPtr freeAttrs; /* List of freed attributes nodes */ + + /* + * the complete error informations for the last error. + */ + xmlError lastError; + xmlParserMode parseMode; /* the parser mode */ + unsigned long nbentities; /* number of entities references */ + unsigned long sizeentities; /* size of parsed entities */ + + /* for use by HTML non-recursive parser */ + xmlParserNodeInfo *nodeInfo; /* Current NodeInfo */ + int nodeInfoNr; /* Depth of the parsing stack */ + int nodeInfoMax; /* Max depth of the parsing stack */ + xmlParserNodeInfo *nodeInfoTab; /* array of nodeInfos */ +}; + +/** + * xmlSAXLocator: + * + * A SAX Locator. + */ +struct _xmlSAXLocator { + const xmlChar *(*getPublicId)(void *ctx); + const xmlChar *(*getSystemId)(void *ctx); + int (*getLineNumber)(void *ctx); + int (*getColumnNumber)(void *ctx); +}; + +/** + * xmlSAXHandler: + * + * A SAX handler is bunch of callbacks called by the parser when processing + * of the input generate data or structure informations. + */ + +/** + * resolveEntitySAXFunc: + * @ctx: the user data (XML parser context) + * @publicId: The public ID of the entity + * @systemId: The system ID of the entity + * + * Callback: + * The entity loader, to control the loading of external entities, + * the application can either: + * - override this resolveEntity() callback in the SAX block + * - or better use the xmlSetExternalEntityLoader() function to + * set up it's own entity resolution routine + * + * Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour. + */ +typedef xmlParserInputPtr (*resolveEntitySAXFunc) (void *ctx, + const xmlChar *publicId, + const xmlChar *systemId); +/** + * internalSubsetSAXFunc: + * @ctx: the user data (XML parser context) + * @name: the root element name + * @ExternalID: the external ID + * @SystemID: the SYSTEM ID (e.g. filename or URL) + * + * Callback on internal subset declaration. + */ +typedef void (*internalSubsetSAXFunc) (void *ctx, + const xmlChar *name, + const xmlChar *ExternalID, + const xmlChar *SystemID); +/** + * externalSubsetSAXFunc: + * @ctx: the user data (XML parser context) + * @name: the root element name + * @ExternalID: the external ID + * @SystemID: the SYSTEM ID (e.g. filename or URL) + * + * Callback on external subset declaration. + */ +typedef void (*externalSubsetSAXFunc) (void *ctx, + const xmlChar *name, + const xmlChar *ExternalID, + const xmlChar *SystemID); +/** + * getEntitySAXFunc: + * @ctx: the user data (XML parser context) + * @name: The entity name + * + * Get an entity by name. + * + * Returns the xmlEntityPtr if found. + */ +typedef xmlEntityPtr (*getEntitySAXFunc) (void *ctx, + const xmlChar *name); +/** + * getParameterEntitySAXFunc: + * @ctx: the user data (XML parser context) + * @name: The entity name + * + * Get a parameter entity by name. + * + * Returns the xmlEntityPtr if found. + */ +typedef xmlEntityPtr (*getParameterEntitySAXFunc) (void *ctx, + const xmlChar *name); +/** + * entityDeclSAXFunc: + * @ctx: the user data (XML parser context) + * @name: the entity name + * @type: the entity type + * @publicId: The public ID of the entity + * @systemId: The system ID of the entity + * @content: the entity value (without processing). + * + * An entity definition has been parsed. + */ +typedef void (*entityDeclSAXFunc) (void *ctx, + const xmlChar *name, + int type, + const xmlChar *publicId, + const xmlChar *systemId, + xmlChar *content); +/** + * notationDeclSAXFunc: + * @ctx: the user data (XML parser context) + * @name: The name of the notation + * @publicId: The public ID of the entity + * @systemId: The system ID of the entity + * + * What to do when a notation declaration has been parsed. + */ +typedef void (*notationDeclSAXFunc)(void *ctx, + const xmlChar *name, + const xmlChar *publicId, + const xmlChar *systemId); +/** + * attributeDeclSAXFunc: + * @ctx: the user data (XML parser context) + * @elem: the name of the element + * @fullname: the attribute name + * @type: the attribute type + * @def: the type of default value + * @defaultValue: the attribute default value + * @tree: the tree of enumerated value set + * + * An attribute definition has been parsed. + */ +typedef void (*attributeDeclSAXFunc)(void *ctx, + const xmlChar *elem, + const xmlChar *fullname, + int type, + int def, + const xmlChar *defaultValue, + xmlEnumerationPtr tree); +/** + * elementDeclSAXFunc: + * @ctx: the user data (XML parser context) + * @name: the element name + * @type: the element type + * @content: the element value tree + * + * An element definition has been parsed. + */ +typedef void (*elementDeclSAXFunc)(void *ctx, + const xmlChar *name, + int type, + xmlElementContentPtr content); +/** + * unparsedEntityDeclSAXFunc: + * @ctx: the user data (XML parser context) + * @name: The name of the entity + * @publicId: The public ID of the entity + * @systemId: The system ID of the entity + * @notationName: the name of the notation + * + * What to do when an unparsed entity declaration is parsed. + */ +typedef void (*unparsedEntityDeclSAXFunc)(void *ctx, + const xmlChar *name, + const xmlChar *publicId, + const xmlChar *systemId, + const xmlChar *notationName); +/** + * setDocumentLocatorSAXFunc: + * @ctx: the user data (XML parser context) + * @loc: A SAX Locator + * + * Receive the document locator at startup, actually xmlDefaultSAXLocator. + * Everything is available on the context, so this is useless in our case. + */ +typedef void (*setDocumentLocatorSAXFunc) (void *ctx, + xmlSAXLocatorPtr loc); +/** + * startDocumentSAXFunc: + * @ctx: the user data (XML parser context) + * + * Called when the document start being processed. + */ +typedef void (*startDocumentSAXFunc) (void *ctx); +/** + * endDocumentSAXFunc: + * @ctx: the user data (XML parser context) + * + * Called when the document end has been detected. + */ +typedef void (*endDocumentSAXFunc) (void *ctx); +/** + * startElementSAXFunc: + * @ctx: the user data (XML parser context) + * @name: The element name, including namespace prefix + * @atts: An array of name/value attributes pairs, NULL terminated + * + * Called when an opening tag has been processed. + */ +typedef void (*startElementSAXFunc) (void *ctx, + const xmlChar *name, + const xmlChar **atts); +/** + * endElementSAXFunc: + * @ctx: the user data (XML parser context) + * @name: The element name + * + * Called when the end of an element has been detected. + */ +typedef void (*endElementSAXFunc) (void *ctx, + const xmlChar *name); +/** + * attributeSAXFunc: + * @ctx: the user data (XML parser context) + * @name: The attribute name, including namespace prefix + * @value: The attribute value + * + * Handle an attribute that has been read by the parser. + * The default handling is to convert the attribute into an + * DOM subtree and past it in a new xmlAttr element added to + * the element. + */ +typedef void (*attributeSAXFunc) (void *ctx, + const xmlChar *name, + const xmlChar *value); +/** + * referenceSAXFunc: + * @ctx: the user data (XML parser context) + * @name: The entity name + * + * Called when an entity reference is detected. + */ +typedef void (*referenceSAXFunc) (void *ctx, + const xmlChar *name); +/** + * charactersSAXFunc: + * @ctx: the user data (XML parser context) + * @ch: a xmlChar string + * @len: the number of xmlChar + * + * Receiving some chars from the parser. + */ +typedef void (*charactersSAXFunc) (void *ctx, + const xmlChar *ch, + int len); +/** + * ignorableWhitespaceSAXFunc: + * @ctx: the user data (XML parser context) + * @ch: a xmlChar string + * @len: the number of xmlChar + * + * Receiving some ignorable whitespaces from the parser. + * UNUSED: by default the DOM building will use characters. + */ +typedef void (*ignorableWhitespaceSAXFunc) (void *ctx, + const xmlChar *ch, + int len); +/** + * processingInstructionSAXFunc: + * @ctx: the user data (XML parser context) + * @target: the target name + * @data: the PI data's + * + * A processing instruction has been parsed. + */ +typedef void (*processingInstructionSAXFunc) (void *ctx, + const xmlChar *target, + const xmlChar *data); +/** + * commentSAXFunc: + * @ctx: the user data (XML parser context) + * @value: the comment content + * + * A comment has been parsed. + */ +typedef void (*commentSAXFunc) (void *ctx, + const xmlChar *value); +/** + * cdataBlockSAXFunc: + * @ctx: the user data (XML parser context) + * @value: The pcdata content + * @len: the block length + * + * Called when a pcdata block has been parsed. + */ +typedef void (*cdataBlockSAXFunc) ( + void *ctx, + const xmlChar *value, + int len); +/** + * warningSAXFunc: + * @ctx: an XML parser context + * @msg: the message to display/transmit + * @...: extra parameters for the message display + * + * Display and format a warning messages, callback. + */ +typedef void (XMLCDECL *warningSAXFunc) (void *ctx, + const char *msg, ...) LIBXML_ATTR_FORMAT(2,3); +/** + * errorSAXFunc: + * @ctx: an XML parser context + * @msg: the message to display/transmit + * @...: extra parameters for the message display + * + * Display and format an error messages, callback. + */ +typedef void (XMLCDECL *errorSAXFunc) (void *ctx, + const char *msg, ...) LIBXML_ATTR_FORMAT(2,3); +/** + * fatalErrorSAXFunc: + * @ctx: an XML parser context + * @msg: the message to display/transmit + * @...: extra parameters for the message display + * + * Display and format fatal error messages, callback. + * Note: so far fatalError() SAX callbacks are not used, error() + * get all the callbacks for errors. + */ +typedef void (XMLCDECL *fatalErrorSAXFunc) (void *ctx, + const char *msg, ...) LIBXML_ATTR_FORMAT(2,3); +/** + * isStandaloneSAXFunc: + * @ctx: the user data (XML parser context) + * + * Is this document tagged standalone? + * + * Returns 1 if true + */ +typedef int (*isStandaloneSAXFunc) (void *ctx); +/** + * hasInternalSubsetSAXFunc: + * @ctx: the user data (XML parser context) + * + * Does this document has an internal subset. + * + * Returns 1 if true + */ +typedef int (*hasInternalSubsetSAXFunc) (void *ctx); + +/** + * hasExternalSubsetSAXFunc: + * @ctx: the user data (XML parser context) + * + * Does this document has an external subset? + * + * Returns 1 if true + */ +typedef int (*hasExternalSubsetSAXFunc) (void *ctx); + +/************************************************************************ + * * + * The SAX version 2 API extensions * + * * + ************************************************************************/ +/** + * XML_SAX2_MAGIC: + * + * Special constant found in SAX2 blocks initialized fields + */ +#define XML_SAX2_MAGIC 0xDEEDBEAF + +/** + * startElementNsSAX2Func: + * @ctx: the user data (XML parser context) + * @localname: the local name of the element + * @prefix: the element namespace prefix if available + * @URI: the element namespace name if available + * @nb_namespaces: number of namespace definitions on that node + * @namespaces: pointer to the array of prefix/URI pairs namespace definitions + * @nb_attributes: the number of attributes on that node + * @nb_defaulted: the number of defaulted attributes. The defaulted + * ones are at the end of the array + * @attributes: pointer to the array of (localname/prefix/URI/value/end) + * attribute values. + * + * SAX2 callback when an element start has been detected by the parser. + * It provides the namespace informations for the element, as well as + * the new namespace declarations on the element. + */ + +typedef void (*startElementNsSAX2Func) (void *ctx, + const xmlChar *localname, + const xmlChar *prefix, + const xmlChar *URI, + int nb_namespaces, + const xmlChar **namespaces, + int nb_attributes, + int nb_defaulted, + const xmlChar **attributes); + +/** + * endElementNsSAX2Func: + * @ctx: the user data (XML parser context) + * @localname: the local name of the element + * @prefix: the element namespace prefix if available + * @URI: the element namespace name if available + * + * SAX2 callback when an element end has been detected by the parser. + * It provides the namespace informations for the element. + */ + +typedef void (*endElementNsSAX2Func) (void *ctx, + const xmlChar *localname, + const xmlChar *prefix, + const xmlChar *URI); + + +struct _xmlSAXHandler { + internalSubsetSAXFunc internalSubset; + isStandaloneSAXFunc isStandalone; + hasInternalSubsetSAXFunc hasInternalSubset; + hasExternalSubsetSAXFunc hasExternalSubset; + resolveEntitySAXFunc resolveEntity; + getEntitySAXFunc getEntity; + entityDeclSAXFunc entityDecl; + notationDeclSAXFunc notationDecl; + attributeDeclSAXFunc attributeDecl; + elementDeclSAXFunc elementDecl; + unparsedEntityDeclSAXFunc unparsedEntityDecl; + setDocumentLocatorSAXFunc setDocumentLocator; + startDocumentSAXFunc startDocument; + endDocumentSAXFunc endDocument; + startElementSAXFunc startElement; + endElementSAXFunc endElement; + referenceSAXFunc reference; + charactersSAXFunc characters; + ignorableWhitespaceSAXFunc ignorableWhitespace; + processingInstructionSAXFunc processingInstruction; + commentSAXFunc comment; + warningSAXFunc warning; + errorSAXFunc error; + fatalErrorSAXFunc fatalError; /* unused error() get all the errors */ + getParameterEntitySAXFunc getParameterEntity; + cdataBlockSAXFunc cdataBlock; + externalSubsetSAXFunc externalSubset; + unsigned int initialized; + /* The following fields are extensions available only on version 2 */ + void *_private; + startElementNsSAX2Func startElementNs; + endElementNsSAX2Func endElementNs; + xmlStructuredErrorFunc serror; +}; + +/* + * SAX Version 1 + */ +typedef struct _xmlSAXHandlerV1 xmlSAXHandlerV1; +typedef xmlSAXHandlerV1 *xmlSAXHandlerV1Ptr; +struct _xmlSAXHandlerV1 { + internalSubsetSAXFunc internalSubset; + isStandaloneSAXFunc isStandalone; + hasInternalSubsetSAXFunc hasInternalSubset; + hasExternalSubsetSAXFunc hasExternalSubset; + resolveEntitySAXFunc resolveEntity; + getEntitySAXFunc getEntity; + entityDeclSAXFunc entityDecl; + notationDeclSAXFunc notationDecl; + attributeDeclSAXFunc attributeDecl; + elementDeclSAXFunc elementDecl; + unparsedEntityDeclSAXFunc unparsedEntityDecl; + setDocumentLocatorSAXFunc setDocumentLocator; + startDocumentSAXFunc startDocument; + endDocumentSAXFunc endDocument; + startElementSAXFunc startElement; + endElementSAXFunc endElement; + referenceSAXFunc reference; + charactersSAXFunc characters; + ignorableWhitespaceSAXFunc ignorableWhitespace; + processingInstructionSAXFunc processingInstruction; + commentSAXFunc comment; + warningSAXFunc warning; + errorSAXFunc error; + fatalErrorSAXFunc fatalError; /* unused error() get all the errors */ + getParameterEntitySAXFunc getParameterEntity; + cdataBlockSAXFunc cdataBlock; + externalSubsetSAXFunc externalSubset; + unsigned int initialized; +}; + + +/** + * xmlExternalEntityLoader: + * @URL: The System ID of the resource requested + * @ID: The Public ID of the resource requested + * @context: the XML parser context + * + * External entity loaders types. + * + * Returns the entity input parser. + */ +typedef xmlParserInputPtr (*xmlExternalEntityLoader) (const char *URL, + const char *ID, + xmlParserCtxtPtr context); + +#ifdef __cplusplus +} +#endif + +#include <libxml/encoding.h> +#include <libxml/xmlIO.h> +#include <libxml/globals.h> + +#ifdef __cplusplus +extern "C" { +#endif + + +/* + * Init/Cleanup + */ +XMLPUBFUN void XMLCALL + xmlInitParser (void); +XMLPUBFUN void XMLCALL + xmlCleanupParser (void); + +/* + * Input functions + */ +XMLPUBFUN int XMLCALL + xmlParserInputRead (xmlParserInputPtr in, + int len); +XMLPUBFUN int XMLCALL + xmlParserInputGrow (xmlParserInputPtr in, + int len); + +/* + * Basic parsing Interfaces + */ +#ifdef LIBXML_SAX1_ENABLED +XMLPUBFUN xmlDocPtr XMLCALL + xmlParseDoc (const xmlChar *cur); +XMLPUBFUN xmlDocPtr XMLCALL + xmlParseFile (const char *filename); +XMLPUBFUN xmlDocPtr XMLCALL + xmlParseMemory (const char *buffer, + int size); +#endif /* LIBXML_SAX1_ENABLED */ +XMLPUBFUN int XMLCALL + xmlSubstituteEntitiesDefault(int val); +XMLPUBFUN int XMLCALL + xmlKeepBlanksDefault (int val); +XMLPUBFUN void XMLCALL + xmlStopParser (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlPedanticParserDefault(int val); +XMLPUBFUN int XMLCALL + xmlLineNumbersDefault (int val); + +#ifdef LIBXML_SAX1_ENABLED +/* + * Recovery mode + */ +XMLPUBFUN xmlDocPtr XMLCALL + xmlRecoverDoc (const xmlChar *cur); +XMLPUBFUN xmlDocPtr XMLCALL + xmlRecoverMemory (const char *buffer, + int size); +XMLPUBFUN xmlDocPtr XMLCALL + xmlRecoverFile (const char *filename); +#endif /* LIBXML_SAX1_ENABLED */ + +/* + * Less common routines and SAX interfaces + */ +XMLPUBFUN int XMLCALL + xmlParseDocument (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlParseExtParsedEnt (xmlParserCtxtPtr ctxt); +#ifdef LIBXML_SAX1_ENABLED +XMLPUBFUN int XMLCALL + xmlSAXUserParseFile (xmlSAXHandlerPtr sax, + void *user_data, + const char *filename); +XMLPUBFUN int XMLCALL + xmlSAXUserParseMemory (xmlSAXHandlerPtr sax, + void *user_data, + const char *buffer, + int size); +XMLPUBFUN xmlDocPtr XMLCALL + xmlSAXParseDoc (xmlSAXHandlerPtr sax, + const xmlChar *cur, + int recovery); +XMLPUBFUN xmlDocPtr XMLCALL + xmlSAXParseMemory (xmlSAXHandlerPtr sax, + const char *buffer, + int size, + int recovery); +XMLPUBFUN xmlDocPtr XMLCALL + xmlSAXParseMemoryWithData (xmlSAXHandlerPtr sax, + const char *buffer, + int size, + int recovery, + void *data); +XMLPUBFUN xmlDocPtr XMLCALL + xmlSAXParseFile (xmlSAXHandlerPtr sax, + const char *filename, + int recovery); +XMLPUBFUN xmlDocPtr XMLCALL + xmlSAXParseFileWithData (xmlSAXHandlerPtr sax, + const char *filename, + int recovery, + void *data); +XMLPUBFUN xmlDocPtr XMLCALL + xmlSAXParseEntity (xmlSAXHandlerPtr sax, + const char *filename); +XMLPUBFUN xmlDocPtr XMLCALL + xmlParseEntity (const char *filename); +#endif /* LIBXML_SAX1_ENABLED */ + +#ifdef LIBXML_VALID_ENABLED +XMLPUBFUN xmlDtdPtr XMLCALL + xmlSAXParseDTD (xmlSAXHandlerPtr sax, + const xmlChar *ExternalID, + const xmlChar *SystemID); +XMLPUBFUN xmlDtdPtr XMLCALL + xmlParseDTD (const xmlChar *ExternalID, + const xmlChar *SystemID); +XMLPUBFUN xmlDtdPtr XMLCALL + xmlIOParseDTD (xmlSAXHandlerPtr sax, + xmlParserInputBufferPtr input, + xmlCharEncoding enc); +#endif /* LIBXML_VALID_ENABLE */ +#ifdef LIBXML_SAX1_ENABLED +XMLPUBFUN int XMLCALL + xmlParseBalancedChunkMemory(xmlDocPtr doc, + xmlSAXHandlerPtr sax, + void *user_data, + int depth, + const xmlChar *string, + xmlNodePtr *lst); +#endif /* LIBXML_SAX1_ENABLED */ +XMLPUBFUN xmlParserErrors XMLCALL + xmlParseInNodeContext (xmlNodePtr node, + const char *data, + int datalen, + int options, + xmlNodePtr *lst); +#ifdef LIBXML_SAX1_ENABLED +XMLPUBFUN int XMLCALL + xmlParseBalancedChunkMemoryRecover(xmlDocPtr doc, + xmlSAXHandlerPtr sax, + void *user_data, + int depth, + const xmlChar *string, + xmlNodePtr *lst, + int recover); +XMLPUBFUN int XMLCALL + xmlParseExternalEntity (xmlDocPtr doc, + xmlSAXHandlerPtr sax, + void *user_data, + int depth, + const xmlChar *URL, + const xmlChar *ID, + xmlNodePtr *lst); +#endif /* LIBXML_SAX1_ENABLED */ +XMLPUBFUN int XMLCALL + xmlParseCtxtExternalEntity(xmlParserCtxtPtr ctx, + const xmlChar *URL, + const xmlChar *ID, + xmlNodePtr *lst); + +/* + * Parser contexts handling. + */ +XMLPUBFUN xmlParserCtxtPtr XMLCALL + xmlNewParserCtxt (void); +XMLPUBFUN int XMLCALL + xmlInitParserCtxt (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlClearParserCtxt (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlFreeParserCtxt (xmlParserCtxtPtr ctxt); +#ifdef LIBXML_SAX1_ENABLED +XMLPUBFUN void XMLCALL + xmlSetupParserForBuffer (xmlParserCtxtPtr ctxt, + const xmlChar* buffer, + const char *filename); +#endif /* LIBXML_SAX1_ENABLED */ +XMLPUBFUN xmlParserCtxtPtr XMLCALL + xmlCreateDocParserCtxt (const xmlChar *cur); + +#ifdef LIBXML_LEGACY_ENABLED +/* + * Reading/setting optional parsing features. + */ +XMLPUBFUN int XMLCALL + xmlGetFeaturesList (int *len, + const char **result); +XMLPUBFUN int XMLCALL + xmlGetFeature (xmlParserCtxtPtr ctxt, + const char *name, + void *result); +XMLPUBFUN int XMLCALL + xmlSetFeature (xmlParserCtxtPtr ctxt, + const char *name, + void *value); +#endif /* LIBXML_LEGACY_ENABLED */ + +#ifdef LIBXML_PUSH_ENABLED +/* + * Interfaces for the Push mode. + */ +XMLPUBFUN xmlParserCtxtPtr XMLCALL + xmlCreatePushParserCtxt(xmlSAXHandlerPtr sax, + void *user_data, + const char *chunk, + int size, + const char *filename); +XMLPUBFUN int XMLCALL + xmlParseChunk (xmlParserCtxtPtr ctxt, + const char *chunk, + int size, + int terminate); +#endif /* LIBXML_PUSH_ENABLED */ + +/* + * Special I/O mode. + */ + +XMLPUBFUN xmlParserCtxtPtr XMLCALL + xmlCreateIOParserCtxt (xmlSAXHandlerPtr sax, + void *user_data, + xmlInputReadCallback ioread, + xmlInputCloseCallback ioclose, + void *ioctx, + xmlCharEncoding enc); + +XMLPUBFUN xmlParserInputPtr XMLCALL + xmlNewIOInputStream (xmlParserCtxtPtr ctxt, + xmlParserInputBufferPtr input, + xmlCharEncoding enc); + +/* + * Node infos. + */ +XMLPUBFUN const xmlParserNodeInfo* XMLCALL + xmlParserFindNodeInfo (const xmlParserCtxtPtr ctxt, + const xmlNodePtr node); +XMLPUBFUN void XMLCALL + xmlInitNodeInfoSeq (xmlParserNodeInfoSeqPtr seq); +XMLPUBFUN void XMLCALL + xmlClearNodeInfoSeq (xmlParserNodeInfoSeqPtr seq); +XMLPUBFUN unsigned long XMLCALL + xmlParserFindNodeInfoIndex(const xmlParserNodeInfoSeqPtr seq, + const xmlNodePtr node); +XMLPUBFUN void XMLCALL + xmlParserAddNodeInfo (xmlParserCtxtPtr ctxt, + const xmlParserNodeInfoPtr info); + +/* + * External entities handling actually implemented in xmlIO. + */ + +XMLPUBFUN void XMLCALL + xmlSetExternalEntityLoader(xmlExternalEntityLoader f); +XMLPUBFUN xmlExternalEntityLoader XMLCALL + xmlGetExternalEntityLoader(void); +XMLPUBFUN xmlParserInputPtr XMLCALL + xmlLoadExternalEntity (const char *URL, + const char *ID, + xmlParserCtxtPtr ctxt); + +/* + * Index lookup, actually implemented in the encoding module + */ +XMLPUBFUN long XMLCALL + xmlByteConsumed (xmlParserCtxtPtr ctxt); + +/* + * New set of simpler/more flexible APIs + */ +/** + * xmlParserOption: + * + * This is the set of XML parser options that can be passed down + * to the xmlReadDoc() and similar calls. + */ +typedef enum { + XML_PARSE_RECOVER = 1<<0, /* recover on errors */ + XML_PARSE_NOENT = 1<<1, /* substitute entities */ + XML_PARSE_DTDLOAD = 1<<2, /* load the external subset */ + XML_PARSE_DTDATTR = 1<<3, /* default DTD attributes */ + XML_PARSE_DTDVALID = 1<<4, /* validate with the DTD */ + XML_PARSE_NOERROR = 1<<5, /* suppress error reports */ + XML_PARSE_NOWARNING = 1<<6, /* suppress warning reports */ + XML_PARSE_PEDANTIC = 1<<7, /* pedantic error reporting */ + XML_PARSE_NOBLANKS = 1<<8, /* remove blank nodes */ + XML_PARSE_SAX1 = 1<<9, /* use the SAX1 interface internally */ + XML_PARSE_XINCLUDE = 1<<10,/* Implement XInclude substitition */ + XML_PARSE_NONET = 1<<11,/* Forbid network access */ + XML_PARSE_NODICT = 1<<12,/* Do not reuse the context dictionnary */ + XML_PARSE_NSCLEAN = 1<<13,/* remove redundant namespaces declarations */ + XML_PARSE_NOCDATA = 1<<14,/* merge CDATA as text nodes */ + XML_PARSE_NOXINCNODE= 1<<15,/* do not generate XINCLUDE START/END nodes */ + XML_PARSE_COMPACT = 1<<16,/* compact small text nodes; no modification of + the tree allowed afterwards (will possibly + crash if you try to modify the tree) */ + XML_PARSE_OLD10 = 1<<17,/* parse using XML-1.0 before update 5 */ + XML_PARSE_NOBASEFIX = 1<<18,/* do not fixup XINCLUDE xml:base uris */ + XML_PARSE_HUGE = 1<<19, /* relax any hardcoded limit from the parser */ + XML_PARSE_OLDSAX = 1<<20 /* parse using SAX2 interface from before 2.7.0 */ +} xmlParserOption; + +XMLPUBFUN void XMLCALL + xmlCtxtReset (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlCtxtResetPush (xmlParserCtxtPtr ctxt, + const char *chunk, + int size, + const char *filename, + const char *encoding); +XMLPUBFUN int XMLCALL + xmlCtxtUseOptions (xmlParserCtxtPtr ctxt, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlReadDoc (const xmlChar *cur, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlReadFile (const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlReadMemory (const char *buffer, + int size, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlReadFd (int fd, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlReadIO (xmlInputReadCallback ioread, + xmlInputCloseCallback ioclose, + void *ioctx, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlCtxtReadDoc (xmlParserCtxtPtr ctxt, + const xmlChar *cur, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlCtxtReadFile (xmlParserCtxtPtr ctxt, + const char *filename, + const char *encoding, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlCtxtReadMemory (xmlParserCtxtPtr ctxt, + const char *buffer, + int size, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlCtxtReadFd (xmlParserCtxtPtr ctxt, + int fd, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlDocPtr XMLCALL + xmlCtxtReadIO (xmlParserCtxtPtr ctxt, + xmlInputReadCallback ioread, + xmlInputCloseCallback ioclose, + void *ioctx, + const char *URL, + const char *encoding, + int options); + +/* + * Library wide options + */ +/** + * xmlFeature: + * + * Used to examine the existance of features that can be enabled + * or disabled at compile-time. + * They used to be called XML_FEATURE_xxx but this clashed with Expat + */ +typedef enum { + XML_WITH_THREAD = 1, + XML_WITH_TREE = 2, + XML_WITH_OUTPUT = 3, + XML_WITH_PUSH = 4, + XML_WITH_READER = 5, + XML_WITH_PATTERN = 6, + XML_WITH_WRITER = 7, + XML_WITH_SAX1 = 8, + XML_WITH_FTP = 9, + XML_WITH_HTTP = 10, + XML_WITH_VALID = 11, + XML_WITH_HTML = 12, + XML_WITH_LEGACY = 13, + XML_WITH_C14N = 14, + XML_WITH_CATALOG = 15, + XML_WITH_XPATH = 16, + XML_WITH_XPTR = 17, + XML_WITH_XINCLUDE = 18, + XML_WITH_ICONV = 19, + XML_WITH_ISO8859X = 20, + XML_WITH_UNICODE = 21, + XML_WITH_REGEXP = 22, + XML_WITH_AUTOMATA = 23, + XML_WITH_EXPR = 24, + XML_WITH_SCHEMAS = 25, + XML_WITH_SCHEMATRON = 26, + XML_WITH_MODULES = 27, + XML_WITH_DEBUG = 28, + XML_WITH_DEBUG_MEM = 29, + XML_WITH_DEBUG_RUN = 30, + XML_WITH_ZLIB = 31, + XML_WITH_ICU = 32, + XML_WITH_NONE = 99999 /* just to be sure of allocation size */ +} xmlFeature; + +XMLPUBFUN int XMLCALL + xmlHasFeature (xmlFeature feature); + +#ifdef __cplusplus +} +#endif +#endif /* __XML_PARSER_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/parserInternals.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/parserInternals.h new file mode 100644 index 0000000000..a5e75b5e38 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/parserInternals.h @@ -0,0 +1,611 @@ +/* + * Summary: internals routines exported by the parser. + * Description: this module exports a number of internal parsing routines + * they are not really all intended for applications but + * can prove useful doing low level processing. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_PARSER_INTERNALS_H__ +#define __XML_PARSER_INTERNALS_H__ + +#include <libxml/xmlversion.h> +#include <libxml/parser.h> +#include <libxml/HTMLparser.h> +#include <libxml/chvalid.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlParserMaxDepth: + * + * arbitrary depth limit for the XML documents that we allow to + * process. This is not a limitation of the parser but a safety + * boundary feature, use XML_PARSE_HUGE option to override it. + */ +XMLPUBVAR unsigned int xmlParserMaxDepth; + +/** + * XML_MAX_TEXT_LENGTH: + * + * Maximum size allowed for a single text node when building a tree. + * This is not a limitation of the parser but a safety boundary feature, + * use XML_PARSE_HUGE option to override it. + */ +#define XML_MAX_TEXT_LENGTH 10000000 + +/** + * XML_MAX_NAMELEN: + * + * Identifiers can be longer, but this will be more costly + * at runtime. + */ +#define XML_MAX_NAMELEN 100 + +/** + * INPUT_CHUNK: + * + * The parser tries to always have that amount of input ready. + * One of the point is providing context when reporting errors. + */ +#define INPUT_CHUNK 250 + +/************************************************************************ + * * + * UNICODE version of the macros. * + * * + ************************************************************************/ +/** + * IS_BYTE_CHAR: + * @c: an byte value (int) + * + * Macro to check the following production in the XML spec: + * + * [2] Char ::= #x9 | #xA | #xD | [#x20...] + * any byte character in the accepted range + */ +#define IS_BYTE_CHAR(c) xmlIsChar_ch(c) + +/** + * IS_CHAR: + * @c: an UNICODE value (int) + * + * Macro to check the following production in the XML spec: + * + * [2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] + * | [#x10000-#x10FFFF] + * any Unicode character, excluding the surrogate blocks, FFFE, and FFFF. + */ +#define IS_CHAR(c) xmlIsCharQ(c) + +/** + * IS_CHAR_CH: + * @c: an xmlChar (usually an unsigned char) + * + * Behaves like IS_CHAR on single-byte value + */ +#define IS_CHAR_CH(c) xmlIsChar_ch(c) + +/** + * IS_BLANK: + * @c: an UNICODE value (int) + * + * Macro to check the following production in the XML spec: + * + * [3] S ::= (#x20 | #x9 | #xD | #xA)+ + */ +#define IS_BLANK(c) xmlIsBlankQ(c) + +/** + * IS_BLANK_CH: + * @c: an xmlChar value (normally unsigned char) + * + * Behaviour same as IS_BLANK + */ +#define IS_BLANK_CH(c) xmlIsBlank_ch(c) + +/** + * IS_BASECHAR: + * @c: an UNICODE value (int) + * + * Macro to check the following production in the XML spec: + * + * [85] BaseChar ::= ... long list see REC ... + */ +#define IS_BASECHAR(c) xmlIsBaseCharQ(c) + +/** + * IS_DIGIT: + * @c: an UNICODE value (int) + * + * Macro to check the following production in the XML spec: + * + * [88] Digit ::= ... long list see REC ... + */ +#define IS_DIGIT(c) xmlIsDigitQ(c) + +/** + * IS_DIGIT_CH: + * @c: an xmlChar value (usually an unsigned char) + * + * Behaves like IS_DIGIT but with a single byte argument + */ +#define IS_DIGIT_CH(c) xmlIsDigit_ch(c) + +/** + * IS_COMBINING: + * @c: an UNICODE value (int) + * + * Macro to check the following production in the XML spec: + * + * [87] CombiningChar ::= ... long list see REC ... + */ +#define IS_COMBINING(c) xmlIsCombiningQ(c) + +/** + * IS_COMBINING_CH: + * @c: an xmlChar (usually an unsigned char) + * + * Always false (all combining chars > 0xff) + */ +#define IS_COMBINING_CH(c) 0 + +/** + * IS_EXTENDER: + * @c: an UNICODE value (int) + * + * Macro to check the following production in the XML spec: + * + * + * [89] Extender ::= #x00B7 | #x02D0 | #x02D1 | #x0387 | #x0640 | + * #x0E46 | #x0EC6 | #x3005 | [#x3031-#x3035] | + * [#x309D-#x309E] | [#x30FC-#x30FE] + */ +#define IS_EXTENDER(c) xmlIsExtenderQ(c) + +/** + * IS_EXTENDER_CH: + * @c: an xmlChar value (usually an unsigned char) + * + * Behaves like IS_EXTENDER but with a single-byte argument + */ +#define IS_EXTENDER_CH(c) xmlIsExtender_ch(c) + +/** + * IS_IDEOGRAPHIC: + * @c: an UNICODE value (int) + * + * Macro to check the following production in the XML spec: + * + * + * [86] Ideographic ::= [#x4E00-#x9FA5] | #x3007 | [#x3021-#x3029] + */ +#define IS_IDEOGRAPHIC(c) xmlIsIdeographicQ(c) + +/** + * IS_LETTER: + * @c: an UNICODE value (int) + * + * Macro to check the following production in the XML spec: + * + * + * [84] Letter ::= BaseChar | Ideographic + */ +#define IS_LETTER(c) (IS_BASECHAR(c) || IS_IDEOGRAPHIC(c)) + +/** + * IS_LETTER_CH: + * @c: an xmlChar value (normally unsigned char) + * + * Macro behaves like IS_LETTER, but only check base chars + * + */ +#define IS_LETTER_CH(c) xmlIsBaseChar_ch(c) + +/** + * IS_ASCII_LETTER: + * @c: an xmlChar value + * + * Macro to check [a-zA-Z] + * + */ +#define IS_ASCII_LETTER(c) (((0x41 <= (c)) && ((c) <= 0x5a)) || \ + ((0x61 <= (c)) && ((c) <= 0x7a))) + +/** + * IS_ASCII_DIGIT: + * @c: an xmlChar value + * + * Macro to check [0-9] + * + */ +#define IS_ASCII_DIGIT(c) ((0x30 <= (c)) && ((c) <= 0x39)) + +/** + * IS_PUBIDCHAR: + * @c: an UNICODE value (int) + * + * Macro to check the following production in the XML spec: + * + * + * [13] PubidChar ::= #x20 | #xD | #xA | [a-zA-Z0-9] | [-'()+,./:=?;!*#@$_%] + */ +#define IS_PUBIDCHAR(c) xmlIsPubidCharQ(c) + +/** + * IS_PUBIDCHAR_CH: + * @c: an xmlChar value (normally unsigned char) + * + * Same as IS_PUBIDCHAR but for single-byte value + */ +#define IS_PUBIDCHAR_CH(c) xmlIsPubidChar_ch(c) + +/** + * SKIP_EOL: + * @p: and UTF8 string pointer + * + * Skips the end of line chars. + */ +#define SKIP_EOL(p) \ + if (*(p) == 0x13) { p++ ; if (*(p) == 0x10) p++; } \ + if (*(p) == 0x10) { p++ ; if (*(p) == 0x13) p++; } + +/** + * MOVETO_ENDTAG: + * @p: and UTF8 string pointer + * + * Skips to the next '>' char. + */ +#define MOVETO_ENDTAG(p) \ + while ((*p) && (*(p) != '>')) (p)++ + +/** + * MOVETO_STARTTAG: + * @p: and UTF8 string pointer + * + * Skips to the next '<' char. + */ +#define MOVETO_STARTTAG(p) \ + while ((*p) && (*(p) != '<')) (p)++ + +/** + * Global variables used for predefined strings. + */ +XMLPUBVAR const xmlChar xmlStringText[]; +XMLPUBVAR const xmlChar xmlStringTextNoenc[]; +XMLPUBVAR const xmlChar xmlStringComment[]; + +/* + * Function to finish the work of the macros where needed. + */ +XMLPUBFUN int XMLCALL xmlIsLetter (int c); + +/** + * Parser context. + */ +XMLPUBFUN xmlParserCtxtPtr XMLCALL + xmlCreateFileParserCtxt (const char *filename); +XMLPUBFUN xmlParserCtxtPtr XMLCALL + xmlCreateURLParserCtxt (const char *filename, + int options); +XMLPUBFUN xmlParserCtxtPtr XMLCALL + xmlCreateMemoryParserCtxt(const char *buffer, + int size); +XMLPUBFUN xmlParserCtxtPtr XMLCALL + xmlCreateEntityParserCtxt(const xmlChar *URL, + const xmlChar *ID, + const xmlChar *base); +XMLPUBFUN int XMLCALL + xmlSwitchEncoding (xmlParserCtxtPtr ctxt, + xmlCharEncoding enc); +XMLPUBFUN int XMLCALL + xmlSwitchToEncoding (xmlParserCtxtPtr ctxt, + xmlCharEncodingHandlerPtr handler); +XMLPUBFUN int XMLCALL + xmlSwitchInputEncoding (xmlParserCtxtPtr ctxt, + xmlParserInputPtr input, + xmlCharEncodingHandlerPtr handler); + +#ifdef IN_LIBXML +/* internal error reporting */ +XMLPUBFUN void XMLCALL + __xmlErrEncoding (xmlParserCtxtPtr ctxt, + xmlParserErrors xmlerr, + const char *msg, + const xmlChar * str1, + const xmlChar * str2); +#endif + +/** + * Input Streams. + */ +XMLPUBFUN xmlParserInputPtr XMLCALL + xmlNewStringInputStream (xmlParserCtxtPtr ctxt, + const xmlChar *buffer); +XMLPUBFUN xmlParserInputPtr XMLCALL + xmlNewEntityInputStream (xmlParserCtxtPtr ctxt, + xmlEntityPtr entity); +XMLPUBFUN int XMLCALL + xmlPushInput (xmlParserCtxtPtr ctxt, + xmlParserInputPtr input); +XMLPUBFUN xmlChar XMLCALL + xmlPopInput (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlFreeInputStream (xmlParserInputPtr input); +XMLPUBFUN xmlParserInputPtr XMLCALL + xmlNewInputFromFile (xmlParserCtxtPtr ctxt, + const char *filename); +XMLPUBFUN xmlParserInputPtr XMLCALL + xmlNewInputStream (xmlParserCtxtPtr ctxt); + +/** + * Namespaces. + */ +XMLPUBFUN xmlChar * XMLCALL + xmlSplitQName (xmlParserCtxtPtr ctxt, + const xmlChar *name, + xmlChar **prefix); + +/** + * Generic production rules. + */ +XMLPUBFUN const xmlChar * XMLCALL + xmlParseName (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlParseNmtoken (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlParseEntityValue (xmlParserCtxtPtr ctxt, + xmlChar **orig); +XMLPUBFUN xmlChar * XMLCALL + xmlParseAttValue (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlParseSystemLiteral (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlParsePubidLiteral (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseCharData (xmlParserCtxtPtr ctxt, + int cdata); +XMLPUBFUN xmlChar * XMLCALL + xmlParseExternalID (xmlParserCtxtPtr ctxt, + xmlChar **publicID, + int strict); +XMLPUBFUN void XMLCALL + xmlParseComment (xmlParserCtxtPtr ctxt); +XMLPUBFUN const xmlChar * XMLCALL + xmlParsePITarget (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParsePI (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseNotationDecl (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseEntityDecl (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlParseDefaultDecl (xmlParserCtxtPtr ctxt, + xmlChar **value); +XMLPUBFUN xmlEnumerationPtr XMLCALL + xmlParseNotationType (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlEnumerationPtr XMLCALL + xmlParseEnumerationType (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlParseEnumeratedType (xmlParserCtxtPtr ctxt, + xmlEnumerationPtr *tree); +XMLPUBFUN int XMLCALL + xmlParseAttributeType (xmlParserCtxtPtr ctxt, + xmlEnumerationPtr *tree); +XMLPUBFUN void XMLCALL + xmlParseAttributeListDecl(xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlElementContentPtr XMLCALL + xmlParseElementMixedContentDecl + (xmlParserCtxtPtr ctxt, + int inputchk); +XMLPUBFUN xmlElementContentPtr XMLCALL + xmlParseElementChildrenContentDecl + (xmlParserCtxtPtr ctxt, + int inputchk); +XMLPUBFUN int XMLCALL + xmlParseElementContentDecl(xmlParserCtxtPtr ctxt, + const xmlChar *name, + xmlElementContentPtr *result); +XMLPUBFUN int XMLCALL + xmlParseElementDecl (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseMarkupDecl (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlParseCharRef (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlEntityPtr XMLCALL + xmlParseEntityRef (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseReference (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParsePEReference (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseDocTypeDecl (xmlParserCtxtPtr ctxt); +#ifdef LIBXML_SAX1_ENABLED +XMLPUBFUN const xmlChar * XMLCALL + xmlParseAttribute (xmlParserCtxtPtr ctxt, + xmlChar **value); +XMLPUBFUN const xmlChar * XMLCALL + xmlParseStartTag (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseEndTag (xmlParserCtxtPtr ctxt); +#endif /* LIBXML_SAX1_ENABLED */ +XMLPUBFUN void XMLCALL + xmlParseCDSect (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseContent (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseElement (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlParseVersionNum (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlParseVersionInfo (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlParseEncName (xmlParserCtxtPtr ctxt); +XMLPUBFUN const xmlChar * XMLCALL + xmlParseEncodingDecl (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlParseSDDecl (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseXMLDecl (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseTextDecl (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseMisc (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseExternalSubset (xmlParserCtxtPtr ctxt, + const xmlChar *ExternalID, + const xmlChar *SystemID); +/** + * XML_SUBSTITUTE_NONE: + * + * If no entities need to be substituted. + */ +#define XML_SUBSTITUTE_NONE 0 +/** + * XML_SUBSTITUTE_REF: + * + * Whether general entities need to be substituted. + */ +#define XML_SUBSTITUTE_REF 1 +/** + * XML_SUBSTITUTE_PEREF: + * + * Whether parameter entities need to be substituted. + */ +#define XML_SUBSTITUTE_PEREF 2 +/** + * XML_SUBSTITUTE_BOTH: + * + * Both general and parameter entities need to be substituted. + */ +#define XML_SUBSTITUTE_BOTH 3 + +XMLPUBFUN xmlChar * XMLCALL + xmlStringDecodeEntities (xmlParserCtxtPtr ctxt, + const xmlChar *str, + int what, + xmlChar end, + xmlChar end2, + xmlChar end3); +XMLPUBFUN xmlChar * XMLCALL + xmlStringLenDecodeEntities (xmlParserCtxtPtr ctxt, + const xmlChar *str, + int len, + int what, + xmlChar end, + xmlChar end2, + xmlChar end3); + +/* + * Generated by MACROS on top of parser.c c.f. PUSH_AND_POP. + */ +XMLPUBFUN int XMLCALL nodePush (xmlParserCtxtPtr ctxt, + xmlNodePtr value); +XMLPUBFUN xmlNodePtr XMLCALL nodePop (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL inputPush (xmlParserCtxtPtr ctxt, + xmlParserInputPtr value); +XMLPUBFUN xmlParserInputPtr XMLCALL inputPop (xmlParserCtxtPtr ctxt); +XMLPUBFUN const xmlChar * XMLCALL namePop (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL namePush (xmlParserCtxtPtr ctxt, + const xmlChar *value); + +/* + * other commodities shared between parser.c and parserInternals. + */ +XMLPUBFUN int XMLCALL xmlSkipBlankChars (xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL xmlStringCurrentChar (xmlParserCtxtPtr ctxt, + const xmlChar *cur, + int *len); +XMLPUBFUN void XMLCALL xmlParserHandlePEReference(xmlParserCtxtPtr ctxt); +XMLPUBFUN int XMLCALL xmlCheckLanguageID (const xmlChar *lang); + +/* + * Really core function shared with HTML parser. + */ +XMLPUBFUN int XMLCALL xmlCurrentChar (xmlParserCtxtPtr ctxt, + int *len); +XMLPUBFUN int XMLCALL xmlCopyCharMultiByte (xmlChar *out, + int val); +XMLPUBFUN int XMLCALL xmlCopyChar (int len, + xmlChar *out, + int val); +XMLPUBFUN void XMLCALL xmlNextChar (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL xmlParserInputShrink (xmlParserInputPtr in); + +#ifdef LIBXML_HTML_ENABLED +/* + * Actually comes from the HTML parser but launched from the init stuff. + */ +XMLPUBFUN void XMLCALL htmlInitAutoClose (void); +XMLPUBFUN htmlParserCtxtPtr XMLCALL htmlCreateFileParserCtxt(const char *filename, + const char *encoding); +#endif + +/* + * Specific function to keep track of entities references + * and used by the XSLT debugger. + */ +#ifdef LIBXML_LEGACY_ENABLED +/** + * xmlEntityReferenceFunc: + * @ent: the entity + * @firstNode: the fist node in the chunk + * @lastNode: the last nod in the chunk + * + * Callback function used when one needs to be able to track back the + * provenance of a chunk of nodes inherited from an entity replacement. + */ +typedef void (*xmlEntityReferenceFunc) (xmlEntityPtr ent, + xmlNodePtr firstNode, + xmlNodePtr lastNode); + +XMLPUBFUN void XMLCALL xmlSetEntityReferenceFunc (xmlEntityReferenceFunc func); + +XMLPUBFUN xmlChar * XMLCALL + xmlParseQuotedString (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlParseNamespace (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlNamespaceParseNSDef (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlScanName (xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlNamespaceParseNCName (xmlParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL xmlParserHandleReference(xmlParserCtxtPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlNamespaceParseQName (xmlParserCtxtPtr ctxt, + xmlChar **prefix); +/** + * Entities + */ +XMLPUBFUN xmlChar * XMLCALL + xmlDecodeEntities (xmlParserCtxtPtr ctxt, + int len, + int what, + xmlChar end, + xmlChar end2, + xmlChar end3); +XMLPUBFUN void XMLCALL + xmlHandleEntity (xmlParserCtxtPtr ctxt, + xmlEntityPtr entity); + +#endif /* LIBXML_LEGACY_ENABLED */ + +#ifdef IN_LIBXML +/* + * internal only + */ +XMLPUBFUN void XMLCALL + xmlErrMemory (xmlParserCtxtPtr ctxt, + const char *extra); +#endif + +#ifdef __cplusplus +} +#endif +#endif /* __XML_PARSER_INTERNALS_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/pattern.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/pattern.h new file mode 100644 index 0000000000..97d2cd2bc0 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/pattern.h @@ -0,0 +1,100 @@ +/* + * Summary: pattern expression handling + * Description: allows to compile and test pattern expressions for nodes + * either in a tree or based on a parser state. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_PATTERN_H__ +#define __XML_PATTERN_H__ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> +#include <libxml/dict.h> + +#ifdef LIBXML_PATTERN_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlPattern: + * + * A compiled (XPath based) pattern to select nodes + */ +typedef struct _xmlPattern xmlPattern; +typedef xmlPattern *xmlPatternPtr; + +/** + * xmlPatternFlags: + * + * This is the set of options affecting the behaviour of pattern + * matching with this module + * + */ +typedef enum { + XML_PATTERN_DEFAULT = 0, /* simple pattern match */ + XML_PATTERN_XPATH = 1<<0, /* standard XPath pattern */ + XML_PATTERN_XSSEL = 1<<1, /* XPath subset for schema selector */ + XML_PATTERN_XSFIELD = 1<<2 /* XPath subset for schema field */ +} xmlPatternFlags; + +XMLPUBFUN void XMLCALL + xmlFreePattern (xmlPatternPtr comp); + +XMLPUBFUN void XMLCALL + xmlFreePatternList (xmlPatternPtr comp); + +XMLPUBFUN xmlPatternPtr XMLCALL + xmlPatterncompile (const xmlChar *pattern, + xmlDict *dict, + int flags, + const xmlChar **namespaces); +XMLPUBFUN int XMLCALL + xmlPatternMatch (xmlPatternPtr comp, + xmlNodePtr node); + +/* streaming interfaces */ +typedef struct _xmlStreamCtxt xmlStreamCtxt; +typedef xmlStreamCtxt *xmlStreamCtxtPtr; + +XMLPUBFUN int XMLCALL + xmlPatternStreamable (xmlPatternPtr comp); +XMLPUBFUN int XMLCALL + xmlPatternMaxDepth (xmlPatternPtr comp); +XMLPUBFUN int XMLCALL + xmlPatternMinDepth (xmlPatternPtr comp); +XMLPUBFUN int XMLCALL + xmlPatternFromRoot (xmlPatternPtr comp); +XMLPUBFUN xmlStreamCtxtPtr XMLCALL + xmlPatternGetStreamCtxt (xmlPatternPtr comp); +XMLPUBFUN void XMLCALL + xmlFreeStreamCtxt (xmlStreamCtxtPtr stream); +XMLPUBFUN int XMLCALL + xmlStreamPushNode (xmlStreamCtxtPtr stream, + const xmlChar *name, + const xmlChar *ns, + int nodeType); +XMLPUBFUN int XMLCALL + xmlStreamPush (xmlStreamCtxtPtr stream, + const xmlChar *name, + const xmlChar *ns); +XMLPUBFUN int XMLCALL + xmlStreamPushAttr (xmlStreamCtxtPtr stream, + const xmlChar *name, + const xmlChar *ns); +XMLPUBFUN int XMLCALL + xmlStreamPop (xmlStreamCtxtPtr stream); +XMLPUBFUN int XMLCALL + xmlStreamWantsAnyNode (xmlStreamCtxtPtr stream); +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_PATTERN_ENABLED */ + +#endif /* __XML_PATTERN_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/relaxng.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/relaxng.h new file mode 100644 index 0000000000..bdb0a7d376 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/relaxng.h @@ -0,0 +1,213 @@ +/* + * Summary: implementation of the Relax-NG validation + * Description: implementation of the Relax-NG validation + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_RELAX_NG__ +#define __XML_RELAX_NG__ + +#include <libxml/xmlversion.h> +#include <libxml/hash.h> +#include <libxml/xmlstring.h> + +#ifdef LIBXML_SCHEMAS_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct _xmlRelaxNG xmlRelaxNG; +typedef xmlRelaxNG *xmlRelaxNGPtr; + + +/** + * xmlRelaxNGValidityErrorFunc: + * @ctx: the validation context + * @msg: the message + * @...: extra arguments + * + * Signature of an error callback from a Relax-NG validation + */ +typedef void (XMLCDECL *xmlRelaxNGValidityErrorFunc) (void *ctx, const char *msg, ...) LIBXML_ATTR_FORMAT(2,3); + +/** + * xmlRelaxNGValidityWarningFunc: + * @ctx: the validation context + * @msg: the message + * @...: extra arguments + * + * Signature of a warning callback from a Relax-NG validation + */ +typedef void (XMLCDECL *xmlRelaxNGValidityWarningFunc) (void *ctx, const char *msg, ...) LIBXML_ATTR_FORMAT(2,3); + +/** + * A schemas validation context + */ +typedef struct _xmlRelaxNGParserCtxt xmlRelaxNGParserCtxt; +typedef xmlRelaxNGParserCtxt *xmlRelaxNGParserCtxtPtr; + +typedef struct _xmlRelaxNGValidCtxt xmlRelaxNGValidCtxt; +typedef xmlRelaxNGValidCtxt *xmlRelaxNGValidCtxtPtr; + +/* + * xmlRelaxNGValidErr: + * + * List of possible Relax NG validation errors + */ +typedef enum { + XML_RELAXNG_OK = 0, + XML_RELAXNG_ERR_MEMORY, + XML_RELAXNG_ERR_TYPE, + XML_RELAXNG_ERR_TYPEVAL, + XML_RELAXNG_ERR_DUPID, + XML_RELAXNG_ERR_TYPECMP, + XML_RELAXNG_ERR_NOSTATE, + XML_RELAXNG_ERR_NODEFINE, + XML_RELAXNG_ERR_LISTEXTRA, + XML_RELAXNG_ERR_LISTEMPTY, + XML_RELAXNG_ERR_INTERNODATA, + XML_RELAXNG_ERR_INTERSEQ, + XML_RELAXNG_ERR_INTEREXTRA, + XML_RELAXNG_ERR_ELEMNAME, + XML_RELAXNG_ERR_ATTRNAME, + XML_RELAXNG_ERR_ELEMNONS, + XML_RELAXNG_ERR_ATTRNONS, + XML_RELAXNG_ERR_ELEMWRONGNS, + XML_RELAXNG_ERR_ATTRWRONGNS, + XML_RELAXNG_ERR_ELEMEXTRANS, + XML_RELAXNG_ERR_ATTREXTRANS, + XML_RELAXNG_ERR_ELEMNOTEMPTY, + XML_RELAXNG_ERR_NOELEM, + XML_RELAXNG_ERR_NOTELEM, + XML_RELAXNG_ERR_ATTRVALID, + XML_RELAXNG_ERR_CONTENTVALID, + XML_RELAXNG_ERR_EXTRACONTENT, + XML_RELAXNG_ERR_INVALIDATTR, + XML_RELAXNG_ERR_DATAELEM, + XML_RELAXNG_ERR_VALELEM, + XML_RELAXNG_ERR_LISTELEM, + XML_RELAXNG_ERR_DATATYPE, + XML_RELAXNG_ERR_VALUE, + XML_RELAXNG_ERR_LIST, + XML_RELAXNG_ERR_NOGRAMMAR, + XML_RELAXNG_ERR_EXTRADATA, + XML_RELAXNG_ERR_LACKDATA, + XML_RELAXNG_ERR_INTERNAL, + XML_RELAXNG_ERR_ELEMWRONG, + XML_RELAXNG_ERR_TEXTWRONG +} xmlRelaxNGValidErr; + +/* + * xmlRelaxNGParserFlags: + * + * List of possible Relax NG Parser flags + */ +typedef enum { + XML_RELAXNGP_NONE = 0, + XML_RELAXNGP_FREE_DOC = 1, + XML_RELAXNGP_CRNG = 2 +} xmlRelaxNGParserFlag; + +XMLPUBFUN int XMLCALL + xmlRelaxNGInitTypes (void); +XMLPUBFUN void XMLCALL + xmlRelaxNGCleanupTypes (void); + +/* + * Interfaces for parsing. + */ +XMLPUBFUN xmlRelaxNGParserCtxtPtr XMLCALL + xmlRelaxNGNewParserCtxt (const char *URL); +XMLPUBFUN xmlRelaxNGParserCtxtPtr XMLCALL + xmlRelaxNGNewMemParserCtxt (const char *buffer, + int size); +XMLPUBFUN xmlRelaxNGParserCtxtPtr XMLCALL + xmlRelaxNGNewDocParserCtxt (xmlDocPtr doc); + +XMLPUBFUN int XMLCALL + xmlRelaxParserSetFlag (xmlRelaxNGParserCtxtPtr ctxt, + int flag); + +XMLPUBFUN void XMLCALL + xmlRelaxNGFreeParserCtxt (xmlRelaxNGParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlRelaxNGSetParserErrors(xmlRelaxNGParserCtxtPtr ctxt, + xmlRelaxNGValidityErrorFunc err, + xmlRelaxNGValidityWarningFunc warn, + void *ctx); +XMLPUBFUN int XMLCALL + xmlRelaxNGGetParserErrors(xmlRelaxNGParserCtxtPtr ctxt, + xmlRelaxNGValidityErrorFunc *err, + xmlRelaxNGValidityWarningFunc *warn, + void **ctx); +XMLPUBFUN void XMLCALL + xmlRelaxNGSetParserStructuredErrors( + xmlRelaxNGParserCtxtPtr ctxt, + xmlStructuredErrorFunc serror, + void *ctx); +XMLPUBFUN xmlRelaxNGPtr XMLCALL + xmlRelaxNGParse (xmlRelaxNGParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlRelaxNGFree (xmlRelaxNGPtr schema); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + xmlRelaxNGDump (FILE *output, + xmlRelaxNGPtr schema); +XMLPUBFUN void XMLCALL + xmlRelaxNGDumpTree (FILE * output, + xmlRelaxNGPtr schema); +#endif /* LIBXML_OUTPUT_ENABLED */ +/* + * Interfaces for validating + */ +XMLPUBFUN void XMLCALL + xmlRelaxNGSetValidErrors(xmlRelaxNGValidCtxtPtr ctxt, + xmlRelaxNGValidityErrorFunc err, + xmlRelaxNGValidityWarningFunc warn, + void *ctx); +XMLPUBFUN int XMLCALL + xmlRelaxNGGetValidErrors(xmlRelaxNGValidCtxtPtr ctxt, + xmlRelaxNGValidityErrorFunc *err, + xmlRelaxNGValidityWarningFunc *warn, + void **ctx); +XMLPUBFUN void XMLCALL + xmlRelaxNGSetValidStructuredErrors(xmlRelaxNGValidCtxtPtr ctxt, + xmlStructuredErrorFunc serror, void *ctx); +XMLPUBFUN xmlRelaxNGValidCtxtPtr XMLCALL + xmlRelaxNGNewValidCtxt (xmlRelaxNGPtr schema); +XMLPUBFUN void XMLCALL + xmlRelaxNGFreeValidCtxt (xmlRelaxNGValidCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlRelaxNGValidateDoc (xmlRelaxNGValidCtxtPtr ctxt, + xmlDocPtr doc); +/* + * Interfaces for progressive validation when possible + */ +XMLPUBFUN int XMLCALL + xmlRelaxNGValidatePushElement (xmlRelaxNGValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem); +XMLPUBFUN int XMLCALL + xmlRelaxNGValidatePushCData (xmlRelaxNGValidCtxtPtr ctxt, + const xmlChar *data, + int len); +XMLPUBFUN int XMLCALL + xmlRelaxNGValidatePopElement (xmlRelaxNGValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem); +XMLPUBFUN int XMLCALL + xmlRelaxNGValidateFullElement (xmlRelaxNGValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_SCHEMAS_ENABLED */ + +#endif /* __XML_RELAX_NG__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/schemasInternals.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/schemasInternals.h new file mode 100644 index 0000000000..b68a6e1285 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/schemasInternals.h @@ -0,0 +1,958 @@ +/* + * Summary: internal interfaces for XML Schemas + * Description: internal interfaces for the XML Schemas handling + * and schema validity checking + * The Schemas development is a Work In Progress. + * Some of those interfaces are not garanteed to be API or ABI stable ! + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + + +#ifndef __XML_SCHEMA_INTERNALS_H__ +#define __XML_SCHEMA_INTERNALS_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_SCHEMAS_ENABLED + +#include <libxml/xmlregexp.h> +#include <libxml/hash.h> +#include <libxml/dict.h> + +#ifdef __cplusplus +extern "C" { +#endif + +typedef enum { + XML_SCHEMAS_UNKNOWN = 0, + XML_SCHEMAS_STRING, + XML_SCHEMAS_NORMSTRING, + XML_SCHEMAS_DECIMAL, + XML_SCHEMAS_TIME, + XML_SCHEMAS_GDAY, + XML_SCHEMAS_GMONTH, + XML_SCHEMAS_GMONTHDAY, + XML_SCHEMAS_GYEAR, + XML_SCHEMAS_GYEARMONTH, + XML_SCHEMAS_DATE, + XML_SCHEMAS_DATETIME, + XML_SCHEMAS_DURATION, + XML_SCHEMAS_FLOAT, + XML_SCHEMAS_DOUBLE, + XML_SCHEMAS_BOOLEAN, + XML_SCHEMAS_TOKEN, + XML_SCHEMAS_LANGUAGE, + XML_SCHEMAS_NMTOKEN, + XML_SCHEMAS_NMTOKENS, + XML_SCHEMAS_NAME, + XML_SCHEMAS_QNAME, + XML_SCHEMAS_NCNAME, + XML_SCHEMAS_ID, + XML_SCHEMAS_IDREF, + XML_SCHEMAS_IDREFS, + XML_SCHEMAS_ENTITY, + XML_SCHEMAS_ENTITIES, + XML_SCHEMAS_NOTATION, + XML_SCHEMAS_ANYURI, + XML_SCHEMAS_INTEGER, + XML_SCHEMAS_NPINTEGER, + XML_SCHEMAS_NINTEGER, + XML_SCHEMAS_NNINTEGER, + XML_SCHEMAS_PINTEGER, + XML_SCHEMAS_INT, + XML_SCHEMAS_UINT, + XML_SCHEMAS_LONG, + XML_SCHEMAS_ULONG, + XML_SCHEMAS_SHORT, + XML_SCHEMAS_USHORT, + XML_SCHEMAS_BYTE, + XML_SCHEMAS_UBYTE, + XML_SCHEMAS_HEXBINARY, + XML_SCHEMAS_BASE64BINARY, + XML_SCHEMAS_ANYTYPE, + XML_SCHEMAS_ANYSIMPLETYPE +} xmlSchemaValType; + +/* + * XML Schemas defines multiple type of types. + */ +typedef enum { + XML_SCHEMA_TYPE_BASIC = 1, /* A built-in datatype */ + XML_SCHEMA_TYPE_ANY, + XML_SCHEMA_TYPE_FACET, + XML_SCHEMA_TYPE_SIMPLE, + XML_SCHEMA_TYPE_COMPLEX, + XML_SCHEMA_TYPE_SEQUENCE = 6, + XML_SCHEMA_TYPE_CHOICE, + XML_SCHEMA_TYPE_ALL, + XML_SCHEMA_TYPE_SIMPLE_CONTENT, + XML_SCHEMA_TYPE_COMPLEX_CONTENT, + XML_SCHEMA_TYPE_UR, + XML_SCHEMA_TYPE_RESTRICTION, + XML_SCHEMA_TYPE_EXTENSION, + XML_SCHEMA_TYPE_ELEMENT, + XML_SCHEMA_TYPE_ATTRIBUTE, + XML_SCHEMA_TYPE_ATTRIBUTEGROUP, + XML_SCHEMA_TYPE_GROUP, + XML_SCHEMA_TYPE_NOTATION, + XML_SCHEMA_TYPE_LIST, + XML_SCHEMA_TYPE_UNION, + XML_SCHEMA_TYPE_ANY_ATTRIBUTE, + XML_SCHEMA_TYPE_IDC_UNIQUE, + XML_SCHEMA_TYPE_IDC_KEY, + XML_SCHEMA_TYPE_IDC_KEYREF, + XML_SCHEMA_TYPE_PARTICLE = 25, + XML_SCHEMA_TYPE_ATTRIBUTE_USE, + XML_SCHEMA_FACET_MININCLUSIVE = 1000, + XML_SCHEMA_FACET_MINEXCLUSIVE, + XML_SCHEMA_FACET_MAXINCLUSIVE, + XML_SCHEMA_FACET_MAXEXCLUSIVE, + XML_SCHEMA_FACET_TOTALDIGITS, + XML_SCHEMA_FACET_FRACTIONDIGITS, + XML_SCHEMA_FACET_PATTERN, + XML_SCHEMA_FACET_ENUMERATION, + XML_SCHEMA_FACET_WHITESPACE, + XML_SCHEMA_FACET_LENGTH, + XML_SCHEMA_FACET_MAXLENGTH, + XML_SCHEMA_FACET_MINLENGTH, + XML_SCHEMA_EXTRA_QNAMEREF = 2000, + XML_SCHEMA_EXTRA_ATTR_USE_PROHIB +} xmlSchemaTypeType; + +typedef enum { + XML_SCHEMA_CONTENT_UNKNOWN = 0, + XML_SCHEMA_CONTENT_EMPTY = 1, + XML_SCHEMA_CONTENT_ELEMENTS, + XML_SCHEMA_CONTENT_MIXED, + XML_SCHEMA_CONTENT_SIMPLE, + XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS, /* Obsolete */ + XML_SCHEMA_CONTENT_BASIC, + XML_SCHEMA_CONTENT_ANY +} xmlSchemaContentType; + +typedef struct _xmlSchemaVal xmlSchemaVal; +typedef xmlSchemaVal *xmlSchemaValPtr; + +typedef struct _xmlSchemaType xmlSchemaType; +typedef xmlSchemaType *xmlSchemaTypePtr; + +typedef struct _xmlSchemaFacet xmlSchemaFacet; +typedef xmlSchemaFacet *xmlSchemaFacetPtr; + +/** + * Annotation + */ +typedef struct _xmlSchemaAnnot xmlSchemaAnnot; +typedef xmlSchemaAnnot *xmlSchemaAnnotPtr; +struct _xmlSchemaAnnot { + struct _xmlSchemaAnnot *next; + xmlNodePtr content; /* the annotation */ +}; + +/** + * XML_SCHEMAS_ANYATTR_SKIP: + * + * Skip unknown attribute from validation + * Obsolete, not used anymore. + */ +#define XML_SCHEMAS_ANYATTR_SKIP 1 +/** + * XML_SCHEMAS_ANYATTR_LAX: + * + * Ignore validation non definition on attributes + * Obsolete, not used anymore. + */ +#define XML_SCHEMAS_ANYATTR_LAX 2 +/** + * XML_SCHEMAS_ANYATTR_STRICT: + * + * Apply strict validation rules on attributes + * Obsolete, not used anymore. + */ +#define XML_SCHEMAS_ANYATTR_STRICT 3 +/** + * XML_SCHEMAS_ANY_SKIP: + * + * Skip unknown attribute from validation + */ +#define XML_SCHEMAS_ANY_SKIP 1 +/** + * XML_SCHEMAS_ANY_LAX: + * + * Used by wildcards. + * Validate if type found, don't worry if not found + */ +#define XML_SCHEMAS_ANY_LAX 2 +/** + * XML_SCHEMAS_ANY_STRICT: + * + * Used by wildcards. + * Apply strict validation rules + */ +#define XML_SCHEMAS_ANY_STRICT 3 +/** + * XML_SCHEMAS_ATTR_USE_PROHIBITED: + * + * Used by wildcards. + * The attribute is prohibited. + */ +#define XML_SCHEMAS_ATTR_USE_PROHIBITED 0 +/** + * XML_SCHEMAS_ATTR_USE_REQUIRED: + * + * The attribute is required. + */ +#define XML_SCHEMAS_ATTR_USE_REQUIRED 1 +/** + * XML_SCHEMAS_ATTR_USE_OPTIONAL: + * + * The attribute is optional. + */ +#define XML_SCHEMAS_ATTR_USE_OPTIONAL 2 +/** + * XML_SCHEMAS_ATTR_GLOBAL: + * + * allow elements in no namespace + */ +#define XML_SCHEMAS_ATTR_GLOBAL 1 << 0 +/** + * XML_SCHEMAS_ATTR_NSDEFAULT: + * + * allow elements in no namespace + */ +#define XML_SCHEMAS_ATTR_NSDEFAULT 1 << 7 +/** + * XML_SCHEMAS_ATTR_INTERNAL_RESOLVED: + * + * this is set when the "type" and "ref" references + * have been resolved. + */ +#define XML_SCHEMAS_ATTR_INTERNAL_RESOLVED 1 << 8 +/** + * XML_SCHEMAS_ATTR_FIXED: + * + * the attribute has a fixed value + */ +#define XML_SCHEMAS_ATTR_FIXED 1 << 9 + +/** + * xmlSchemaAttribute: + * An attribute definition. + */ + +typedef struct _xmlSchemaAttribute xmlSchemaAttribute; +typedef xmlSchemaAttribute *xmlSchemaAttributePtr; +struct _xmlSchemaAttribute { + xmlSchemaTypeType type; + struct _xmlSchemaAttribute *next; /* the next attribute (not used?) */ + const xmlChar *name; /* the name of the declaration */ + const xmlChar *id; /* Deprecated; not used */ + const xmlChar *ref; /* Deprecated; not used */ + const xmlChar *refNs; /* Deprecated; not used */ + const xmlChar *typeName; /* the local name of the type definition */ + const xmlChar *typeNs; /* the ns URI of the type definition */ + xmlSchemaAnnotPtr annot; + + xmlSchemaTypePtr base; /* Deprecated; not used */ + int occurs; /* Deprecated; not used */ + const xmlChar *defValue; /* The initial value of the value constraint */ + xmlSchemaTypePtr subtypes; /* the type definition */ + xmlNodePtr node; + const xmlChar *targetNamespace; + int flags; + const xmlChar *refPrefix; /* Deprecated; not used */ + xmlSchemaValPtr defVal; /* The compiled value constraint */ + xmlSchemaAttributePtr refDecl; /* Deprecated; not used */ +}; + +/** + * xmlSchemaAttributeLink: + * Used to build a list of attribute uses on complexType definitions. + * WARNING: Deprecated; not used. + */ +typedef struct _xmlSchemaAttributeLink xmlSchemaAttributeLink; +typedef xmlSchemaAttributeLink *xmlSchemaAttributeLinkPtr; +struct _xmlSchemaAttributeLink { + struct _xmlSchemaAttributeLink *next;/* the next attribute link ... */ + struct _xmlSchemaAttribute *attr;/* the linked attribute */ +}; + +/** + * XML_SCHEMAS_WILDCARD_COMPLETE: + * + * If the wildcard is complete. + */ +#define XML_SCHEMAS_WILDCARD_COMPLETE 1 << 0 + +/** + * xmlSchemaCharValueLink: + * Used to build a list of namespaces on wildcards. + */ +typedef struct _xmlSchemaWildcardNs xmlSchemaWildcardNs; +typedef xmlSchemaWildcardNs *xmlSchemaWildcardNsPtr; +struct _xmlSchemaWildcardNs { + struct _xmlSchemaWildcardNs *next;/* the next constraint link ... */ + const xmlChar *value;/* the value */ +}; + +/** + * xmlSchemaWildcard. + * A wildcard. + */ +typedef struct _xmlSchemaWildcard xmlSchemaWildcard; +typedef xmlSchemaWildcard *xmlSchemaWildcardPtr; +struct _xmlSchemaWildcard { + xmlSchemaTypeType type; /* The kind of type */ + const xmlChar *id; /* Deprecated; not used */ + xmlSchemaAnnotPtr annot; + xmlNodePtr node; + int minOccurs; /* Deprecated; not used */ + int maxOccurs; /* Deprecated; not used */ + int processContents; + int any; /* Indicates if the ns constraint is of ##any */ + xmlSchemaWildcardNsPtr nsSet; /* The list of allowed namespaces */ + xmlSchemaWildcardNsPtr negNsSet; /* The negated namespace */ + int flags; +}; + +/** + * XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED: + * + * The attribute wildcard has been already builded. + */ +#define XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED 1 << 0 +/** + * XML_SCHEMAS_ATTRGROUP_GLOBAL: + * + * The attribute wildcard has been already builded. + */ +#define XML_SCHEMAS_ATTRGROUP_GLOBAL 1 << 1 +/** + * XML_SCHEMAS_ATTRGROUP_MARKED: + * + * Marks the attr group as marked; used for circular checks. + */ +#define XML_SCHEMAS_ATTRGROUP_MARKED 1 << 2 + +/** + * XML_SCHEMAS_ATTRGROUP_REDEFINED: + * + * The attr group was redefined. + */ +#define XML_SCHEMAS_ATTRGROUP_REDEFINED 1 << 3 +/** + * XML_SCHEMAS_ATTRGROUP_HAS_REFS: + * + * Whether this attr. group contains attr. group references. + */ +#define XML_SCHEMAS_ATTRGROUP_HAS_REFS 1 << 4 + +/** + * An attribute group definition. + * + * xmlSchemaAttribute and xmlSchemaAttributeGroup start of structures + * must be kept similar + */ +typedef struct _xmlSchemaAttributeGroup xmlSchemaAttributeGroup; +typedef xmlSchemaAttributeGroup *xmlSchemaAttributeGroupPtr; +struct _xmlSchemaAttributeGroup { + xmlSchemaTypeType type; /* The kind of type */ + struct _xmlSchemaAttribute *next;/* the next attribute if in a group ... */ + const xmlChar *name; + const xmlChar *id; + const xmlChar *ref; /* Deprecated; not used */ + const xmlChar *refNs; /* Deprecated; not used */ + xmlSchemaAnnotPtr annot; + + xmlSchemaAttributePtr attributes; /* Deprecated; not used */ + xmlNodePtr node; + int flags; + xmlSchemaWildcardPtr attributeWildcard; + const xmlChar *refPrefix; /* Deprecated; not used */ + xmlSchemaAttributeGroupPtr refItem; /* Deprecated; not used */ + const xmlChar *targetNamespace; + void *attrUses; +}; + +/** + * xmlSchemaTypeLink: + * Used to build a list of types (e.g. member types of + * simpleType with variety "union"). + */ +typedef struct _xmlSchemaTypeLink xmlSchemaTypeLink; +typedef xmlSchemaTypeLink *xmlSchemaTypeLinkPtr; +struct _xmlSchemaTypeLink { + struct _xmlSchemaTypeLink *next;/* the next type link ... */ + xmlSchemaTypePtr type;/* the linked type */ +}; + +/** + * xmlSchemaFacetLink: + * Used to build a list of facets. + */ +typedef struct _xmlSchemaFacetLink xmlSchemaFacetLink; +typedef xmlSchemaFacetLink *xmlSchemaFacetLinkPtr; +struct _xmlSchemaFacetLink { + struct _xmlSchemaFacetLink *next;/* the next facet link ... */ + xmlSchemaFacetPtr facet;/* the linked facet */ +}; + +/** + * XML_SCHEMAS_TYPE_MIXED: + * + * the element content type is mixed + */ +#define XML_SCHEMAS_TYPE_MIXED 1 << 0 +/** + * XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION: + * + * the simple or complex type has a derivation method of "extension". + */ +#define XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION 1 << 1 +/** + * XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION: + * + * the simple or complex type has a derivation method of "restriction". + */ +#define XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION 1 << 2 +/** + * XML_SCHEMAS_TYPE_GLOBAL: + * + * the type is global + */ +#define XML_SCHEMAS_TYPE_GLOBAL 1 << 3 +/** + * XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD: + * + * the complexType owns an attribute wildcard, i.e. + * it can be freed by the complexType + */ +#define XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD 1 << 4 /* Obsolete. */ +/** + * XML_SCHEMAS_TYPE_VARIETY_ABSENT: + * + * the simpleType has a variety of "absent". + * TODO: Actually not necessary :-/, since if + * none of the variety flags occur then it's + * automatically absent. + */ +#define XML_SCHEMAS_TYPE_VARIETY_ABSENT 1 << 5 +/** + * XML_SCHEMAS_TYPE_VARIETY_LIST: + * + * the simpleType has a variety of "list". + */ +#define XML_SCHEMAS_TYPE_VARIETY_LIST 1 << 6 +/** + * XML_SCHEMAS_TYPE_VARIETY_UNION: + * + * the simpleType has a variety of "union". + */ +#define XML_SCHEMAS_TYPE_VARIETY_UNION 1 << 7 +/** + * XML_SCHEMAS_TYPE_VARIETY_ATOMIC: + * + * the simpleType has a variety of "union". + */ +#define XML_SCHEMAS_TYPE_VARIETY_ATOMIC 1 << 8 +/** + * XML_SCHEMAS_TYPE_FINAL_EXTENSION: + * + * the complexType has a final of "extension". + */ +#define XML_SCHEMAS_TYPE_FINAL_EXTENSION 1 << 9 +/** + * XML_SCHEMAS_TYPE_FINAL_RESTRICTION: + * + * the simpleType/complexType has a final of "restriction". + */ +#define XML_SCHEMAS_TYPE_FINAL_RESTRICTION 1 << 10 +/** + * XML_SCHEMAS_TYPE_FINAL_LIST: + * + * the simpleType has a final of "list". + */ +#define XML_SCHEMAS_TYPE_FINAL_LIST 1 << 11 +/** + * XML_SCHEMAS_TYPE_FINAL_UNION: + * + * the simpleType has a final of "union". + */ +#define XML_SCHEMAS_TYPE_FINAL_UNION 1 << 12 +/** + * XML_SCHEMAS_TYPE_FINAL_DEFAULT: + * + * the simpleType has a final of "default". + */ +#define XML_SCHEMAS_TYPE_FINAL_DEFAULT 1 << 13 +/** + * XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE: + * + * Marks the item as a builtin primitive. + */ +#define XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE 1 << 14 +/** + * XML_SCHEMAS_TYPE_MARKED: + * + * Marks the item as marked; used for circular checks. + */ +#define XML_SCHEMAS_TYPE_MARKED 1 << 16 +/** + * XML_SCHEMAS_TYPE_BLOCK_DEFAULT: + * + * the complexType did not specify 'block' so use the default of the + * <schema> item. + */ +#define XML_SCHEMAS_TYPE_BLOCK_DEFAULT 1 << 17 +/** + * XML_SCHEMAS_TYPE_BLOCK_EXTENSION: + * + * the complexType has a 'block' of "extension". + */ +#define XML_SCHEMAS_TYPE_BLOCK_EXTENSION 1 << 18 +/** + * XML_SCHEMAS_TYPE_BLOCK_RESTRICTION: + * + * the complexType has a 'block' of "restriction". + */ +#define XML_SCHEMAS_TYPE_BLOCK_RESTRICTION 1 << 19 +/** + * XML_SCHEMAS_TYPE_ABSTRACT: + * + * the simple/complexType is abstract. + */ +#define XML_SCHEMAS_TYPE_ABSTRACT 1 << 20 +/** + * XML_SCHEMAS_TYPE_FACETSNEEDVALUE: + * + * indicates if the facets need a computed value + */ +#define XML_SCHEMAS_TYPE_FACETSNEEDVALUE 1 << 21 +/** + * XML_SCHEMAS_TYPE_INTERNAL_RESOLVED: + * + * indicates that the type was typefixed + */ +#define XML_SCHEMAS_TYPE_INTERNAL_RESOLVED 1 << 22 +/** + * XML_SCHEMAS_TYPE_INTERNAL_INVALID: + * + * indicates that the type is invalid + */ +#define XML_SCHEMAS_TYPE_INTERNAL_INVALID 1 << 23 +/** + * XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE: + * + * a whitespace-facet value of "preserve" + */ +#define XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE 1 << 24 +/** + * XML_SCHEMAS_TYPE_WHITESPACE_REPLACE: + * + * a whitespace-facet value of "replace" + */ +#define XML_SCHEMAS_TYPE_WHITESPACE_REPLACE 1 << 25 +/** + * XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE: + * + * a whitespace-facet value of "collapse" + */ +#define XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE 1 << 26 +/** + * XML_SCHEMAS_TYPE_HAS_FACETS: + * + * has facets + */ +#define XML_SCHEMAS_TYPE_HAS_FACETS 1 << 27 +/** + * XML_SCHEMAS_TYPE_NORMVALUENEEDED: + * + * indicates if the facets (pattern) need a normalized value + */ +#define XML_SCHEMAS_TYPE_NORMVALUENEEDED 1 << 28 + +/** + * XML_SCHEMAS_TYPE_FIXUP_1: + * + * First stage of fixup was done. + */ +#define XML_SCHEMAS_TYPE_FIXUP_1 1 << 29 + +/** + * XML_SCHEMAS_TYPE_REDEFINED: + * + * The type was redefined. + */ +#define XML_SCHEMAS_TYPE_REDEFINED 1 << 30 +/** + * XML_SCHEMAS_TYPE_REDEFINING: + * + * The type redefines an other type. + */ +/* #define XML_SCHEMAS_TYPE_REDEFINING 1 << 31 */ + +/** + * _xmlSchemaType: + * + * Schemas type definition. + */ +struct _xmlSchemaType { + xmlSchemaTypeType type; /* The kind of type */ + struct _xmlSchemaType *next; /* the next type if in a sequence ... */ + const xmlChar *name; + const xmlChar *id ; /* Deprecated; not used */ + const xmlChar *ref; /* Deprecated; not used */ + const xmlChar *refNs; /* Deprecated; not used */ + xmlSchemaAnnotPtr annot; + xmlSchemaTypePtr subtypes; + xmlSchemaAttributePtr attributes; /* Deprecated; not used */ + xmlNodePtr node; + int minOccurs; /* Deprecated; not used */ + int maxOccurs; /* Deprecated; not used */ + + int flags; + xmlSchemaContentType contentType; + const xmlChar *base; /* Base type's local name */ + const xmlChar *baseNs; /* Base type's target namespace */ + xmlSchemaTypePtr baseType; /* The base type component */ + xmlSchemaFacetPtr facets; /* Local facets */ + struct _xmlSchemaType *redef; /* Deprecated; not used */ + int recurse; /* Obsolete */ + xmlSchemaAttributeLinkPtr *attributeUses; /* Deprecated; not used */ + xmlSchemaWildcardPtr attributeWildcard; + int builtInType; /* Type of built-in types. */ + xmlSchemaTypeLinkPtr memberTypes; /* member-types if a union type. */ + xmlSchemaFacetLinkPtr facetSet; /* All facets (incl. inherited) */ + const xmlChar *refPrefix; /* Deprecated; not used */ + xmlSchemaTypePtr contentTypeDef; /* Used for the simple content of complex types. + Could we use @subtypes for this? */ + xmlRegexpPtr contModel; /* Holds the automaton of the content model */ + const xmlChar *targetNamespace; + void *attrUses; +}; + +/* + * xmlSchemaElement: + * An element definition. + * + * xmlSchemaType, xmlSchemaFacet and xmlSchemaElement start of + * structures must be kept similar + */ +/** + * XML_SCHEMAS_ELEM_NILLABLE: + * + * the element is nillable + */ +#define XML_SCHEMAS_ELEM_NILLABLE 1 << 0 +/** + * XML_SCHEMAS_ELEM_GLOBAL: + * + * the element is global + */ +#define XML_SCHEMAS_ELEM_GLOBAL 1 << 1 +/** + * XML_SCHEMAS_ELEM_DEFAULT: + * + * the element has a default value + */ +#define XML_SCHEMAS_ELEM_DEFAULT 1 << 2 +/** + * XML_SCHEMAS_ELEM_FIXED: + * + * the element has a fixed value + */ +#define XML_SCHEMAS_ELEM_FIXED 1 << 3 +/** + * XML_SCHEMAS_ELEM_ABSTRACT: + * + * the element is abstract + */ +#define XML_SCHEMAS_ELEM_ABSTRACT 1 << 4 +/** + * XML_SCHEMAS_ELEM_TOPLEVEL: + * + * the element is top level + * obsolete: use XML_SCHEMAS_ELEM_GLOBAL instead + */ +#define XML_SCHEMAS_ELEM_TOPLEVEL 1 << 5 +/** + * XML_SCHEMAS_ELEM_REF: + * + * the element is a reference to a type + */ +#define XML_SCHEMAS_ELEM_REF 1 << 6 +/** + * XML_SCHEMAS_ELEM_NSDEFAULT: + * + * allow elements in no namespace + * Obsolete, not used anymore. + */ +#define XML_SCHEMAS_ELEM_NSDEFAULT 1 << 7 +/** + * XML_SCHEMAS_ELEM_INTERNAL_RESOLVED: + * + * this is set when "type", "ref", "substitutionGroup" + * references have been resolved. + */ +#define XML_SCHEMAS_ELEM_INTERNAL_RESOLVED 1 << 8 + /** + * XML_SCHEMAS_ELEM_CIRCULAR: + * + * a helper flag for the search of circular references. + */ +#define XML_SCHEMAS_ELEM_CIRCULAR 1 << 9 +/** + * XML_SCHEMAS_ELEM_BLOCK_ABSENT: + * + * the "block" attribute is absent + */ +#define XML_SCHEMAS_ELEM_BLOCK_ABSENT 1 << 10 +/** + * XML_SCHEMAS_ELEM_BLOCK_EXTENSION: + * + * disallowed substitutions are absent + */ +#define XML_SCHEMAS_ELEM_BLOCK_EXTENSION 1 << 11 +/** + * XML_SCHEMAS_ELEM_BLOCK_RESTRICTION: + * + * disallowed substitutions: "restriction" + */ +#define XML_SCHEMAS_ELEM_BLOCK_RESTRICTION 1 << 12 +/** + * XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION: + * + * disallowed substitutions: "substituion" + */ +#define XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION 1 << 13 +/** + * XML_SCHEMAS_ELEM_FINAL_ABSENT: + * + * substitution group exclusions are absent + */ +#define XML_SCHEMAS_ELEM_FINAL_ABSENT 1 << 14 +/** + * XML_SCHEMAS_ELEM_FINAL_EXTENSION: + * + * substitution group exclusions: "extension" + */ +#define XML_SCHEMAS_ELEM_FINAL_EXTENSION 1 << 15 +/** + * XML_SCHEMAS_ELEM_FINAL_RESTRICTION: + * + * substitution group exclusions: "restriction" + */ +#define XML_SCHEMAS_ELEM_FINAL_RESTRICTION 1 << 16 +/** + * XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD: + * + * the declaration is a substitution group head + */ +#define XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD 1 << 17 +/** + * XML_SCHEMAS_ELEM_INTERNAL_CHECKED: + * + * this is set when the elem decl has been checked against + * all constraints + */ +#define XML_SCHEMAS_ELEM_INTERNAL_CHECKED 1 << 18 + +typedef struct _xmlSchemaElement xmlSchemaElement; +typedef xmlSchemaElement *xmlSchemaElementPtr; +struct _xmlSchemaElement { + xmlSchemaTypeType type; /* The kind of type */ + struct _xmlSchemaType *next; /* Not used? */ + const xmlChar *name; + const xmlChar *id; /* Deprecated; not used */ + const xmlChar *ref; /* Deprecated; not used */ + const xmlChar *refNs; /* Deprecated; not used */ + xmlSchemaAnnotPtr annot; + xmlSchemaTypePtr subtypes; /* the type definition */ + xmlSchemaAttributePtr attributes; + xmlNodePtr node; + int minOccurs; /* Deprecated; not used */ + int maxOccurs; /* Deprecated; not used */ + + int flags; + const xmlChar *targetNamespace; + const xmlChar *namedType; + const xmlChar *namedTypeNs; + const xmlChar *substGroup; + const xmlChar *substGroupNs; + const xmlChar *scope; + const xmlChar *value; /* The original value of the value constraint. */ + struct _xmlSchemaElement *refDecl; /* This will now be used for the + substitution group affiliation */ + xmlRegexpPtr contModel; /* Obsolete for WXS, maybe used for RelaxNG */ + xmlSchemaContentType contentType; + const xmlChar *refPrefix; /* Deprecated; not used */ + xmlSchemaValPtr defVal; /* The compiled value contraint. */ + void *idcs; /* The identity-constraint defs */ +}; + +/* + * XML_SCHEMAS_FACET_UNKNOWN: + * + * unknown facet handling + */ +#define XML_SCHEMAS_FACET_UNKNOWN 0 +/* + * XML_SCHEMAS_FACET_PRESERVE: + * + * preserve the type of the facet + */ +#define XML_SCHEMAS_FACET_PRESERVE 1 +/* + * XML_SCHEMAS_FACET_REPLACE: + * + * replace the type of the facet + */ +#define XML_SCHEMAS_FACET_REPLACE 2 +/* + * XML_SCHEMAS_FACET_COLLAPSE: + * + * collapse the types of the facet + */ +#define XML_SCHEMAS_FACET_COLLAPSE 3 +/** + * A facet definition. + */ +struct _xmlSchemaFacet { + xmlSchemaTypeType type; /* The kind of type */ + struct _xmlSchemaFacet *next;/* the next type if in a sequence ... */ + const xmlChar *value; /* The original value */ + const xmlChar *id; /* Obsolete */ + xmlSchemaAnnotPtr annot; + xmlNodePtr node; + int fixed; /* XML_SCHEMAS_FACET_PRESERVE, etc. */ + int whitespace; + xmlSchemaValPtr val; /* The compiled value */ + xmlRegexpPtr regexp; /* The regex for patterns */ +}; + +/** + * A notation definition. + */ +typedef struct _xmlSchemaNotation xmlSchemaNotation; +typedef xmlSchemaNotation *xmlSchemaNotationPtr; +struct _xmlSchemaNotation { + xmlSchemaTypeType type; /* The kind of type */ + const xmlChar *name; + xmlSchemaAnnotPtr annot; + const xmlChar *identifier; + const xmlChar *targetNamespace; +}; + +/* +* TODO: Actually all those flags used for the schema should sit +* on the schema parser context, since they are used only +* during parsing an XML schema document, and not available +* on the component level as per spec. +*/ +/** + * XML_SCHEMAS_QUALIF_ELEM: + * + * Reflects elementFormDefault == qualified in + * an XML schema document. + */ +#define XML_SCHEMAS_QUALIF_ELEM 1 << 0 +/** + * XML_SCHEMAS_QUALIF_ATTR: + * + * Reflects attributeFormDefault == qualified in + * an XML schema document. + */ +#define XML_SCHEMAS_QUALIF_ATTR 1 << 1 +/** + * XML_SCHEMAS_FINAL_DEFAULT_EXTENSION: + * + * the schema has "extension" in the set of finalDefault. + */ +#define XML_SCHEMAS_FINAL_DEFAULT_EXTENSION 1 << 2 +/** + * XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION: + * + * the schema has "restriction" in the set of finalDefault. + */ +#define XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION 1 << 3 +/** + * XML_SCHEMAS_FINAL_DEFAULT_LIST: + * + * the cshema has "list" in the set of finalDefault. + */ +#define XML_SCHEMAS_FINAL_DEFAULT_LIST 1 << 4 +/** + * XML_SCHEMAS_FINAL_DEFAULT_UNION: + * + * the schema has "union" in the set of finalDefault. + */ +#define XML_SCHEMAS_FINAL_DEFAULT_UNION 1 << 5 +/** + * XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION: + * + * the schema has "extension" in the set of blockDefault. + */ +#define XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION 1 << 6 +/** + * XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION: + * + * the schema has "restriction" in the set of blockDefault. + */ +#define XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION 1 << 7 +/** + * XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION: + * + * the schema has "substitution" in the set of blockDefault. + */ +#define XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION 1 << 8 +/** + * XML_SCHEMAS_INCLUDING_CONVERT_NS: + * + * the schema is currently including an other schema with + * no target namespace. + */ +#define XML_SCHEMAS_INCLUDING_CONVERT_NS 1 << 9 +/** + * _xmlSchema: + * + * A Schemas definition + */ +struct _xmlSchema { + const xmlChar *name; /* schema name */ + const xmlChar *targetNamespace; /* the target namespace */ + const xmlChar *version; + const xmlChar *id; /* Obsolete */ + xmlDocPtr doc; + xmlSchemaAnnotPtr annot; + int flags; + + xmlHashTablePtr typeDecl; + xmlHashTablePtr attrDecl; + xmlHashTablePtr attrgrpDecl; + xmlHashTablePtr elemDecl; + xmlHashTablePtr notaDecl; + + xmlHashTablePtr schemasImports; + + void *_private; /* unused by the library for users or bindings */ + xmlHashTablePtr groupDecl; + xmlDictPtr dict; + void *includes; /* the includes, this is opaque for now */ + int preserve; /* whether to free the document */ + int counter; /* used to give ononymous components unique names */ + xmlHashTablePtr idcDef; /* All identity-constraint defs. */ + void *volatiles; /* Obsolete */ +}; + +XMLPUBFUN void XMLCALL xmlSchemaFreeType (xmlSchemaTypePtr type); +XMLPUBFUN void XMLCALL xmlSchemaFreeWildcard(xmlSchemaWildcardPtr wildcard); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_SCHEMAS_ENABLED */ +#endif /* __XML_SCHEMA_INTERNALS_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/schematron.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/schematron.h new file mode 100644 index 0000000000..f442826ccd --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/schematron.h @@ -0,0 +1,142 @@ +/* + * Summary: XML Schemastron implementation + * Description: interface to the XML Schematron validity checking. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + + +#ifndef __XML_SCHEMATRON_H__ +#define __XML_SCHEMATRON_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_SCHEMATRON_ENABLED + +#include <libxml/tree.h> + +#ifdef __cplusplus +extern "C" { +#endif + +typedef enum { + XML_SCHEMATRON_OUT_QUIET = 1 << 0, /* quiet no report */ + XML_SCHEMATRON_OUT_TEXT = 1 << 1, /* build a textual report */ + XML_SCHEMATRON_OUT_XML = 1 << 2, /* output SVRL */ + XML_SCHEMATRON_OUT_ERROR = 1 << 3, /* output via xmlStructuredErrorFunc */ + XML_SCHEMATRON_OUT_FILE = 1 << 8, /* output to a file descriptor */ + XML_SCHEMATRON_OUT_BUFFER = 1 << 9, /* output to a buffer */ + XML_SCHEMATRON_OUT_IO = 1 << 10 /* output to I/O mechanism */ +} xmlSchematronValidOptions; + +/** + * The schemas related types are kept internal + */ +typedef struct _xmlSchematron xmlSchematron; +typedef xmlSchematron *xmlSchematronPtr; + +/** + * xmlSchematronValidityErrorFunc: + * @ctx: the validation context + * @msg: the message + * @...: extra arguments + * + * Signature of an error callback from a Schematron validation + */ +typedef void (*xmlSchematronValidityErrorFunc) (void *ctx, const char *msg, ...); + +/** + * xmlSchematronValidityWarningFunc: + * @ctx: the validation context + * @msg: the message + * @...: extra arguments + * + * Signature of a warning callback from a Schematron validation + */ +typedef void (*xmlSchematronValidityWarningFunc) (void *ctx, const char *msg, ...); + +/** + * A schemas validation context + */ +typedef struct _xmlSchematronParserCtxt xmlSchematronParserCtxt; +typedef xmlSchematronParserCtxt *xmlSchematronParserCtxtPtr; + +typedef struct _xmlSchematronValidCtxt xmlSchematronValidCtxt; +typedef xmlSchematronValidCtxt *xmlSchematronValidCtxtPtr; + +/* + * Interfaces for parsing. + */ +XMLPUBFUN xmlSchematronParserCtxtPtr XMLCALL + xmlSchematronNewParserCtxt (const char *URL); +XMLPUBFUN xmlSchematronParserCtxtPtr XMLCALL + xmlSchematronNewMemParserCtxt(const char *buffer, + int size); +XMLPUBFUN xmlSchematronParserCtxtPtr XMLCALL + xmlSchematronNewDocParserCtxt(xmlDocPtr doc); +XMLPUBFUN void XMLCALL + xmlSchematronFreeParserCtxt (xmlSchematronParserCtxtPtr ctxt); +/***** +XMLPUBFUN void XMLCALL + xmlSchematronSetParserErrors(xmlSchematronParserCtxtPtr ctxt, + xmlSchematronValidityErrorFunc err, + xmlSchematronValidityWarningFunc warn, + void *ctx); +XMLPUBFUN int XMLCALL + xmlSchematronGetParserErrors(xmlSchematronParserCtxtPtr ctxt, + xmlSchematronValidityErrorFunc * err, + xmlSchematronValidityWarningFunc * warn, + void **ctx); +XMLPUBFUN int XMLCALL + xmlSchematronIsValid (xmlSchematronValidCtxtPtr ctxt); + *****/ +XMLPUBFUN xmlSchematronPtr XMLCALL + xmlSchematronParse (xmlSchematronParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlSchematronFree (xmlSchematronPtr schema); +/* + * Interfaces for validating + */ +XMLPUBFUN void XMLCALL + xmlSchematronSetValidStructuredErrors( + xmlSchematronValidCtxtPtr ctxt, + xmlStructuredErrorFunc serror, + void *ctx); +/****** +XMLPUBFUN void XMLCALL + xmlSchematronSetValidErrors (xmlSchematronValidCtxtPtr ctxt, + xmlSchematronValidityErrorFunc err, + xmlSchematronValidityWarningFunc warn, + void *ctx); +XMLPUBFUN int XMLCALL + xmlSchematronGetValidErrors (xmlSchematronValidCtxtPtr ctxt, + xmlSchematronValidityErrorFunc *err, + xmlSchematronValidityWarningFunc *warn, + void **ctx); +XMLPUBFUN int XMLCALL + xmlSchematronSetValidOptions(xmlSchematronValidCtxtPtr ctxt, + int options); +XMLPUBFUN int XMLCALL + xmlSchematronValidCtxtGetOptions(xmlSchematronValidCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlSchematronValidateOneElement (xmlSchematronValidCtxtPtr ctxt, + xmlNodePtr elem); + *******/ + +XMLPUBFUN xmlSchematronValidCtxtPtr XMLCALL + xmlSchematronNewValidCtxt (xmlSchematronPtr schema, + int options); +XMLPUBFUN void XMLCALL + xmlSchematronFreeValidCtxt (xmlSchematronValidCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlSchematronValidateDoc (xmlSchematronValidCtxtPtr ctxt, + xmlDocPtr instance); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_SCHEMATRON_ENABLED */ +#endif /* __XML_SCHEMATRON_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/threads.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/threads.h new file mode 100644 index 0000000000..d31f16acbd --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/threads.h @@ -0,0 +1,84 @@ +/** + * Summary: interfaces for thread handling + * Description: set of generic threading related routines + * should work with pthreads, Windows native or TLS threads + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_THREADS_H__ +#define __XML_THREADS_H__ + +#include <libxml/xmlversion.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * xmlMutex are a simple mutual exception locks. + */ +typedef struct _xmlMutex xmlMutex; +typedef xmlMutex *xmlMutexPtr; + +/* + * xmlRMutex are reentrant mutual exception locks. + */ +typedef struct _xmlRMutex xmlRMutex; +typedef xmlRMutex *xmlRMutexPtr; + +#ifdef __cplusplus +} +#endif +#include <libxml/globals.h> +#ifdef __cplusplus +extern "C" { +#endif +XMLPUBFUN xmlMutexPtr XMLCALL + xmlNewMutex (void); +XMLPUBFUN void XMLCALL + xmlMutexLock (xmlMutexPtr tok); +XMLPUBFUN void XMLCALL + xmlMutexUnlock (xmlMutexPtr tok); +XMLPUBFUN void XMLCALL + xmlFreeMutex (xmlMutexPtr tok); + +XMLPUBFUN xmlRMutexPtr XMLCALL + xmlNewRMutex (void); +XMLPUBFUN void XMLCALL + xmlRMutexLock (xmlRMutexPtr tok); +XMLPUBFUN void XMLCALL + xmlRMutexUnlock (xmlRMutexPtr tok); +XMLPUBFUN void XMLCALL + xmlFreeRMutex (xmlRMutexPtr tok); + +/* + * Library wide APIs. + */ +XMLPUBFUN void XMLCALL + xmlInitThreads (void); +XMLPUBFUN void XMLCALL + xmlLockLibrary (void); +XMLPUBFUN void XMLCALL + xmlUnlockLibrary(void); +XMLPUBFUN int XMLCALL + xmlGetThreadId (void); +XMLPUBFUN int XMLCALL + xmlIsMainThread (void); +XMLPUBFUN void XMLCALL + xmlCleanupThreads(void); +XMLPUBFUN xmlGlobalStatePtr XMLCALL + xmlGetGlobalState(void); + +#if defined(HAVE_WIN32_THREADS) && !defined(HAVE_COMPILER_TLS) && defined(LIBXML_STATIC_FOR_DLL) +int XMLCALL xmlDllMain(void *hinstDLL, unsigned long fdwReason, void *lpvReserved); +#endif + +#ifdef __cplusplus +} +#endif + + +#endif /* __XML_THREADS_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/tree.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/tree.h new file mode 100644 index 0000000000..b733589bc8 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/tree.h @@ -0,0 +1,1252 @@ +/* + * Summary: interfaces for tree manipulation + * Description: this module describes the structures found in an tree resulting + * from an XML or HTML parsing, as well as the API provided for + * various processing on that tree + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_TREE_H__ +#define __XML_TREE_H__ + +#include <stdio.h> +#include <libxml/xmlversion.h> +#include <libxml/xmlstring.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Some of the basic types pointer to structures: + */ +/* xmlIO.h */ +typedef struct _xmlParserInputBuffer xmlParserInputBuffer; +typedef xmlParserInputBuffer *xmlParserInputBufferPtr; + +typedef struct _xmlOutputBuffer xmlOutputBuffer; +typedef xmlOutputBuffer *xmlOutputBufferPtr; + +/* parser.h */ +typedef struct _xmlParserInput xmlParserInput; +typedef xmlParserInput *xmlParserInputPtr; + +typedef struct _xmlParserCtxt xmlParserCtxt; +typedef xmlParserCtxt *xmlParserCtxtPtr; + +typedef struct _xmlSAXLocator xmlSAXLocator; +typedef xmlSAXLocator *xmlSAXLocatorPtr; + +typedef struct _xmlSAXHandler xmlSAXHandler; +typedef xmlSAXHandler *xmlSAXHandlerPtr; + +/* entities.h */ +typedef struct _xmlEntity xmlEntity; +typedef xmlEntity *xmlEntityPtr; + +/** + * BASE_BUFFER_SIZE: + * + * default buffer size 4000. + */ +#define BASE_BUFFER_SIZE 4096 + +/** + * LIBXML_NAMESPACE_DICT: + * + * Defines experimental behaviour: + * 1) xmlNs gets an additional field @context (a xmlDoc) + * 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc. + */ +/* #define LIBXML_NAMESPACE_DICT */ + +/** + * xmlBufferAllocationScheme: + * + * A buffer allocation scheme can be defined to either match exactly the + * need or double it's allocated size each time it is found too small. + */ + +typedef enum { + XML_BUFFER_ALLOC_DOUBLEIT, /* double each time one need to grow */ + XML_BUFFER_ALLOC_EXACT, /* grow only to the minimal size */ + XML_BUFFER_ALLOC_IMMUTABLE, /* immutable buffer */ + XML_BUFFER_ALLOC_IO /* special allocation scheme used for I/O */ +} xmlBufferAllocationScheme; + +/** + * xmlBuffer: + * + * A buffer structure. + */ +typedef struct _xmlBuffer xmlBuffer; +typedef xmlBuffer *xmlBufferPtr; +struct _xmlBuffer { + xmlChar *content; /* The buffer content UTF8 */ + unsigned int use; /* The buffer size used */ + unsigned int size; /* The buffer size */ + xmlBufferAllocationScheme alloc; /* The realloc method */ + xmlChar *contentIO; /* in IO mode we may have a different base */ +}; + +/** + * XML_XML_NAMESPACE: + * + * This is the namespace for the special xml: prefix predefined in the + * XML Namespace specification. + */ +#define XML_XML_NAMESPACE \ + (const xmlChar *) "http://www.w3.org/XML/1998/namespace" + +/** + * XML_XML_ID: + * + * This is the name for the special xml:id attribute + */ +#define XML_XML_ID (const xmlChar *) "xml:id" + +/* + * The different element types carried by an XML tree. + * + * NOTE: This is synchronized with DOM Level1 values + * See http://www.w3.org/TR/REC-DOM-Level-1/ + * + * Actually this had diverged a bit, and now XML_DOCUMENT_TYPE_NODE should + * be deprecated to use an XML_DTD_NODE. + */ +typedef enum { + XML_ELEMENT_NODE= 1, + XML_ATTRIBUTE_NODE= 2, + XML_TEXT_NODE= 3, + XML_CDATA_SECTION_NODE= 4, + XML_ENTITY_REF_NODE= 5, + XML_ENTITY_NODE= 6, + XML_PI_NODE= 7, + XML_COMMENT_NODE= 8, + XML_DOCUMENT_NODE= 9, + XML_DOCUMENT_TYPE_NODE= 10, + XML_DOCUMENT_FRAG_NODE= 11, + XML_NOTATION_NODE= 12, + XML_HTML_DOCUMENT_NODE= 13, + XML_DTD_NODE= 14, + XML_ELEMENT_DECL= 15, + XML_ATTRIBUTE_DECL= 16, + XML_ENTITY_DECL= 17, + XML_NAMESPACE_DECL= 18, + XML_XINCLUDE_START= 19, + XML_XINCLUDE_END= 20 +#ifdef LIBXML_DOCB_ENABLED + ,XML_DOCB_DOCUMENT_NODE= 21 +#endif +} xmlElementType; + + +/** + * xmlNotation: + * + * A DTD Notation definition. + */ + +typedef struct _xmlNotation xmlNotation; +typedef xmlNotation *xmlNotationPtr; +struct _xmlNotation { + const xmlChar *name; /* Notation name */ + const xmlChar *PublicID; /* Public identifier, if any */ + const xmlChar *SystemID; /* System identifier, if any */ +}; + +/** + * xmlAttributeType: + * + * A DTD Attribute type definition. + */ + +typedef enum { + XML_ATTRIBUTE_CDATA = 1, + XML_ATTRIBUTE_ID, + XML_ATTRIBUTE_IDREF , + XML_ATTRIBUTE_IDREFS, + XML_ATTRIBUTE_ENTITY, + XML_ATTRIBUTE_ENTITIES, + XML_ATTRIBUTE_NMTOKEN, + XML_ATTRIBUTE_NMTOKENS, + XML_ATTRIBUTE_ENUMERATION, + XML_ATTRIBUTE_NOTATION +} xmlAttributeType; + +/** + * xmlAttributeDefault: + * + * A DTD Attribute default definition. + */ + +typedef enum { + XML_ATTRIBUTE_NONE = 1, + XML_ATTRIBUTE_REQUIRED, + XML_ATTRIBUTE_IMPLIED, + XML_ATTRIBUTE_FIXED +} xmlAttributeDefault; + +/** + * xmlEnumeration: + * + * List structure used when there is an enumeration in DTDs. + */ + +typedef struct _xmlEnumeration xmlEnumeration; +typedef xmlEnumeration *xmlEnumerationPtr; +struct _xmlEnumeration { + struct _xmlEnumeration *next; /* next one */ + const xmlChar *name; /* Enumeration name */ +}; + +/** + * xmlAttribute: + * + * An Attribute declaration in a DTD. + */ + +typedef struct _xmlAttribute xmlAttribute; +typedef xmlAttribute *xmlAttributePtr; +struct _xmlAttribute { + void *_private; /* application data */ + xmlElementType type; /* XML_ATTRIBUTE_DECL, must be second ! */ + const xmlChar *name; /* Attribute name */ + struct _xmlNode *children; /* NULL */ + struct _xmlNode *last; /* NULL */ + struct _xmlDtd *parent; /* -> DTD */ + struct _xmlNode *next; /* next sibling link */ + struct _xmlNode *prev; /* previous sibling link */ + struct _xmlDoc *doc; /* the containing document */ + + struct _xmlAttribute *nexth; /* next in hash table */ + xmlAttributeType atype; /* The attribute type */ + xmlAttributeDefault def; /* the default */ + const xmlChar *defaultValue; /* or the default value */ + xmlEnumerationPtr tree; /* or the enumeration tree if any */ + const xmlChar *prefix; /* the namespace prefix if any */ + const xmlChar *elem; /* Element holding the attribute */ +}; + +/** + * xmlElementContentType: + * + * Possible definitions of element content types. + */ +typedef enum { + XML_ELEMENT_CONTENT_PCDATA = 1, + XML_ELEMENT_CONTENT_ELEMENT, + XML_ELEMENT_CONTENT_SEQ, + XML_ELEMENT_CONTENT_OR +} xmlElementContentType; + +/** + * xmlElementContentOccur: + * + * Possible definitions of element content occurrences. + */ +typedef enum { + XML_ELEMENT_CONTENT_ONCE = 1, + XML_ELEMENT_CONTENT_OPT, + XML_ELEMENT_CONTENT_MULT, + XML_ELEMENT_CONTENT_PLUS +} xmlElementContentOccur; + +/** + * xmlElementContent: + * + * An XML Element content as stored after parsing an element definition + * in a DTD. + */ + +typedef struct _xmlElementContent xmlElementContent; +typedef xmlElementContent *xmlElementContentPtr; +struct _xmlElementContent { + xmlElementContentType type; /* PCDATA, ELEMENT, SEQ or OR */ + xmlElementContentOccur ocur; /* ONCE, OPT, MULT or PLUS */ + const xmlChar *name; /* Element name */ + struct _xmlElementContent *c1; /* first child */ + struct _xmlElementContent *c2; /* second child */ + struct _xmlElementContent *parent; /* parent */ + const xmlChar *prefix; /* Namespace prefix */ +}; + +/** + * xmlElementTypeVal: + * + * The different possibilities for an element content type. + */ + +typedef enum { + XML_ELEMENT_TYPE_UNDEFINED = 0, + XML_ELEMENT_TYPE_EMPTY = 1, + XML_ELEMENT_TYPE_ANY, + XML_ELEMENT_TYPE_MIXED, + XML_ELEMENT_TYPE_ELEMENT +} xmlElementTypeVal; + +#ifdef __cplusplus +} +#endif +#include <libxml/xmlregexp.h> +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlElement: + * + * An XML Element declaration from a DTD. + */ + +typedef struct _xmlElement xmlElement; +typedef xmlElement *xmlElementPtr; +struct _xmlElement { + void *_private; /* application data */ + xmlElementType type; /* XML_ELEMENT_DECL, must be second ! */ + const xmlChar *name; /* Element name */ + struct _xmlNode *children; /* NULL */ + struct _xmlNode *last; /* NULL */ + struct _xmlDtd *parent; /* -> DTD */ + struct _xmlNode *next; /* next sibling link */ + struct _xmlNode *prev; /* previous sibling link */ + struct _xmlDoc *doc; /* the containing document */ + + xmlElementTypeVal etype; /* The type */ + xmlElementContentPtr content; /* the allowed element content */ + xmlAttributePtr attributes; /* List of the declared attributes */ + const xmlChar *prefix; /* the namespace prefix if any */ +#ifdef LIBXML_REGEXP_ENABLED + xmlRegexpPtr contModel; /* the validating regexp */ +#else + void *contModel; +#endif +}; + + +/** + * XML_LOCAL_NAMESPACE: + * + * A namespace declaration node. + */ +#define XML_LOCAL_NAMESPACE XML_NAMESPACE_DECL +typedef xmlElementType xmlNsType; + +/** + * xmlNs: + * + * An XML namespace. + * Note that prefix == NULL is valid, it defines the default namespace + * within the subtree (until overridden). + * + * xmlNsType is unified with xmlElementType. + */ + +typedef struct _xmlNs xmlNs; +typedef xmlNs *xmlNsPtr; +struct _xmlNs { + struct _xmlNs *next; /* next Ns link for this node */ + xmlNsType type; /* global or local */ + const xmlChar *href; /* URL for the namespace */ + const xmlChar *prefix; /* prefix for the namespace */ + void *_private; /* application data */ + struct _xmlDoc *context; /* normally an xmlDoc */ +}; + +/** + * xmlDtd: + * + * An XML DTD, as defined by <!DOCTYPE ... There is actually one for + * the internal subset and for the external subset. + */ +typedef struct _xmlDtd xmlDtd; +typedef xmlDtd *xmlDtdPtr; +struct _xmlDtd { + void *_private; /* application data */ + xmlElementType type; /* XML_DTD_NODE, must be second ! */ + const xmlChar *name; /* Name of the DTD */ + struct _xmlNode *children; /* the value of the property link */ + struct _xmlNode *last; /* last child link */ + struct _xmlDoc *parent; /* child->parent link */ + struct _xmlNode *next; /* next sibling link */ + struct _xmlNode *prev; /* previous sibling link */ + struct _xmlDoc *doc; /* the containing document */ + + /* End of common part */ + void *notations; /* Hash table for notations if any */ + void *elements; /* Hash table for elements if any */ + void *attributes; /* Hash table for attributes if any */ + void *entities; /* Hash table for entities if any */ + const xmlChar *ExternalID; /* External identifier for PUBLIC DTD */ + const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC DTD */ + void *pentities; /* Hash table for param entities if any */ +}; + +/** + * xmlAttr: + * + * An attribute on an XML node. + */ +typedef struct _xmlAttr xmlAttr; +typedef xmlAttr *xmlAttrPtr; +struct _xmlAttr { + void *_private; /* application data */ + xmlElementType type; /* XML_ATTRIBUTE_NODE, must be second ! */ + const xmlChar *name; /* the name of the property */ + struct _xmlNode *children; /* the value of the property */ + struct _xmlNode *last; /* NULL */ + struct _xmlNode *parent; /* child->parent link */ + struct _xmlAttr *next; /* next sibling link */ + struct _xmlAttr *prev; /* previous sibling link */ + struct _xmlDoc *doc; /* the containing document */ + xmlNs *ns; /* pointer to the associated namespace */ + xmlAttributeType atype; /* the attribute type if validating */ + void *psvi; /* for type/PSVI informations */ +}; + +/** + * xmlID: + * + * An XML ID instance. + */ + +typedef struct _xmlID xmlID; +typedef xmlID *xmlIDPtr; +struct _xmlID { + struct _xmlID *next; /* next ID */ + const xmlChar *value; /* The ID name */ + xmlAttrPtr attr; /* The attribute holding it */ + const xmlChar *name; /* The attribute if attr is not available */ + int lineno; /* The line number if attr is not available */ + struct _xmlDoc *doc; /* The document holding the ID */ +}; + +/** + * xmlRef: + * + * An XML IDREF instance. + */ + +typedef struct _xmlRef xmlRef; +typedef xmlRef *xmlRefPtr; +struct _xmlRef { + struct _xmlRef *next; /* next Ref */ + const xmlChar *value; /* The Ref name */ + xmlAttrPtr attr; /* The attribute holding it */ + const xmlChar *name; /* The attribute if attr is not available */ + int lineno; /* The line number if attr is not available */ +}; + +/** + * xmlNode: + * + * A node in an XML tree. + */ +typedef struct _xmlNode xmlNode; +typedef xmlNode *xmlNodePtr; +struct _xmlNode { + void *_private; /* application data */ + xmlElementType type; /* type number, must be second ! */ + const xmlChar *name; /* the name of the node, or the entity */ + struct _xmlNode *children; /* parent->childs link */ + struct _xmlNode *last; /* last child link */ + struct _xmlNode *parent; /* child->parent link */ + struct _xmlNode *next; /* next sibling link */ + struct _xmlNode *prev; /* previous sibling link */ + struct _xmlDoc *doc; /* the containing document */ + + /* End of common part */ + xmlNs *ns; /* pointer to the associated namespace */ + xmlChar *content; /* the content */ + struct _xmlAttr *properties;/* properties list */ + xmlNs *nsDef; /* namespace definitions on this node */ + void *psvi; /* for type/PSVI informations */ + unsigned short line; /* line number */ + unsigned short extra; /* extra data for XPath/XSLT */ +}; + +/** + * XML_GET_CONTENT: + * + * Macro to extract the content pointer of a node. + */ +#define XML_GET_CONTENT(n) \ + ((n)->type == XML_ELEMENT_NODE ? NULL : (n)->content) + +/** + * XML_GET_LINE: + * + * Macro to extract the line number of an element node. + */ +#define XML_GET_LINE(n) \ + (xmlGetLineNo(n)) + +/** + * xmlDocProperty + * + * Set of properties of the document as found by the parser + * Some of them are linked to similary named xmlParserOption + */ +typedef enum { + XML_DOC_WELLFORMED = 1<<0, /* document is XML well formed */ + XML_DOC_NSVALID = 1<<1, /* document is Namespace valid */ + XML_DOC_OLD10 = 1<<2, /* parsed with old XML-1.0 parser */ + XML_DOC_DTDVALID = 1<<3, /* DTD validation was successful */ + XML_DOC_XINCLUDE = 1<<4, /* XInclude substitution was done */ + XML_DOC_USERBUILT = 1<<5, /* Document was built using the API + and not by parsing an instance */ + XML_DOC_INTERNAL = 1<<6, /* built for internal processing */ + XML_DOC_HTML = 1<<7 /* parsed or built HTML document */ +} xmlDocProperties; + +/** + * xmlDoc: + * + * An XML document. + */ +typedef struct _xmlDoc xmlDoc; +typedef xmlDoc *xmlDocPtr; +struct _xmlDoc { + void *_private; /* application data */ + xmlElementType type; /* XML_DOCUMENT_NODE, must be second ! */ + char *name; /* name/filename/URI of the document */ + struct _xmlNode *children; /* the document tree */ + struct _xmlNode *last; /* last child link */ + struct _xmlNode *parent; /* child->parent link */ + struct _xmlNode *next; /* next sibling link */ + struct _xmlNode *prev; /* previous sibling link */ + struct _xmlDoc *doc; /* autoreference to itself */ + + /* End of common part */ + int compression;/* level of zlib compression */ + int standalone; /* standalone document (no external refs) + 1 if standalone="yes" + 0 if standalone="no" + -1 if there is no XML declaration + -2 if there is an XML declaration, but no + standalone attribute was specified */ + struct _xmlDtd *intSubset; /* the document internal subset */ + struct _xmlDtd *extSubset; /* the document external subset */ + struct _xmlNs *oldNs; /* Global namespace, the old way */ + const xmlChar *version; /* the XML version string */ + const xmlChar *encoding; /* external initial encoding, if any */ + void *ids; /* Hash table for ID attributes if any */ + void *refs; /* Hash table for IDREFs attributes if any */ + const xmlChar *URL; /* The URI for that document */ + int charset; /* encoding of the in-memory content + actually an xmlCharEncoding */ + struct _xmlDict *dict; /* dict used to allocate names or NULL */ + void *psvi; /* for type/PSVI informations */ + int parseFlags; /* set of xmlParserOption used to parse the + document */ + int properties; /* set of xmlDocProperties for this document + set at the end of parsing */ +}; + + +typedef struct _xmlDOMWrapCtxt xmlDOMWrapCtxt; +typedef xmlDOMWrapCtxt *xmlDOMWrapCtxtPtr; + +/** + * xmlDOMWrapAcquireNsFunction: + * @ctxt: a DOM wrapper context + * @node: the context node (element or attribute) + * @nsName: the requested namespace name + * @nsPrefix: the requested namespace prefix + * + * A function called to acquire namespaces (xmlNs) from the wrapper. + * + * Returns an xmlNsPtr or NULL in case of an error. + */ +typedef xmlNsPtr (*xmlDOMWrapAcquireNsFunction) (xmlDOMWrapCtxtPtr ctxt, + xmlNodePtr node, + const xmlChar *nsName, + const xmlChar *nsPrefix); + +/** + * xmlDOMWrapCtxt: + * + * Context for DOM wrapper-operations. + */ +struct _xmlDOMWrapCtxt { + void * _private; + /* + * The type of this context, just in case we need specialized + * contexts in the future. + */ + int type; + /* + * Internal namespace map used for various operations. + */ + void * namespaceMap; + /* + * Use this one to acquire an xmlNsPtr intended for node->ns. + * (Note that this is not intended for elem->nsDef). + */ + xmlDOMWrapAcquireNsFunction getNsForNodeFunc; +}; + +/** + * xmlChildrenNode: + * + * Macro for compatibility naming layer with libxml1. Maps + * to "children." + */ +#ifndef xmlChildrenNode +#define xmlChildrenNode children +#endif + +/** + * xmlRootNode: + * + * Macro for compatibility naming layer with libxml1. Maps + * to "children". + */ +#ifndef xmlRootNode +#define xmlRootNode children +#endif + +/* + * Variables. + */ + +/* + * Some helper functions + */ +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED) || defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED) +XMLPUBFUN int XMLCALL + xmlValidateNCName (const xmlChar *value, + int space); +#endif + +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) +XMLPUBFUN int XMLCALL + xmlValidateQName (const xmlChar *value, + int space); +XMLPUBFUN int XMLCALL + xmlValidateName (const xmlChar *value, + int space); +XMLPUBFUN int XMLCALL + xmlValidateNMToken (const xmlChar *value, + int space); +#endif + +XMLPUBFUN xmlChar * XMLCALL + xmlBuildQName (const xmlChar *ncname, + const xmlChar *prefix, + xmlChar *memory, + int len); +XMLPUBFUN xmlChar * XMLCALL + xmlSplitQName2 (const xmlChar *name, + xmlChar **prefix); +XMLPUBFUN const xmlChar * XMLCALL + xmlSplitQName3 (const xmlChar *name, + int *len); + +/* + * Handling Buffers. + */ + +XMLPUBFUN void XMLCALL + xmlSetBufferAllocationScheme(xmlBufferAllocationScheme scheme); +XMLPUBFUN xmlBufferAllocationScheme XMLCALL + xmlGetBufferAllocationScheme(void); + +XMLPUBFUN xmlBufferPtr XMLCALL + xmlBufferCreate (void); +XMLPUBFUN xmlBufferPtr XMLCALL + xmlBufferCreateSize (size_t size); +XMLPUBFUN xmlBufferPtr XMLCALL + xmlBufferCreateStatic (void *mem, + size_t size); +XMLPUBFUN int XMLCALL + xmlBufferResize (xmlBufferPtr buf, + unsigned int size); +XMLPUBFUN void XMLCALL + xmlBufferFree (xmlBufferPtr buf); +XMLPUBFUN int XMLCALL + xmlBufferDump (FILE *file, + xmlBufferPtr buf); +XMLPUBFUN int XMLCALL + xmlBufferAdd (xmlBufferPtr buf, + const xmlChar *str, + int len); +XMLPUBFUN int XMLCALL + xmlBufferAddHead (xmlBufferPtr buf, + const xmlChar *str, + int len); +XMLPUBFUN int XMLCALL + xmlBufferCat (xmlBufferPtr buf, + const xmlChar *str); +XMLPUBFUN int XMLCALL + xmlBufferCCat (xmlBufferPtr buf, + const char *str); +XMLPUBFUN int XMLCALL + xmlBufferShrink (xmlBufferPtr buf, + unsigned int len); +XMLPUBFUN int XMLCALL + xmlBufferGrow (xmlBufferPtr buf, + unsigned int len); +XMLPUBFUN void XMLCALL + xmlBufferEmpty (xmlBufferPtr buf); +XMLPUBFUN const xmlChar* XMLCALL + xmlBufferContent (const xmlBufferPtr buf); +XMLPUBFUN void XMLCALL + xmlBufferSetAllocationScheme(xmlBufferPtr buf, + xmlBufferAllocationScheme scheme); +XMLPUBFUN int XMLCALL + xmlBufferLength (const xmlBufferPtr buf); + +/* + * Creating/freeing new structures. + */ +XMLPUBFUN xmlDtdPtr XMLCALL + xmlCreateIntSubset (xmlDocPtr doc, + const xmlChar *name, + const xmlChar *ExternalID, + const xmlChar *SystemID); +XMLPUBFUN xmlDtdPtr XMLCALL + xmlNewDtd (xmlDocPtr doc, + const xmlChar *name, + const xmlChar *ExternalID, + const xmlChar *SystemID); +XMLPUBFUN xmlDtdPtr XMLCALL + xmlGetIntSubset (xmlDocPtr doc); +XMLPUBFUN void XMLCALL + xmlFreeDtd (xmlDtdPtr cur); +#ifdef LIBXML_LEGACY_ENABLED +XMLPUBFUN xmlNsPtr XMLCALL + xmlNewGlobalNs (xmlDocPtr doc, + const xmlChar *href, + const xmlChar *prefix); +#endif /* LIBXML_LEGACY_ENABLED */ +XMLPUBFUN xmlNsPtr XMLCALL + xmlNewNs (xmlNodePtr node, + const xmlChar *href, + const xmlChar *prefix); +XMLPUBFUN void XMLCALL + xmlFreeNs (xmlNsPtr cur); +XMLPUBFUN void XMLCALL + xmlFreeNsList (xmlNsPtr cur); +XMLPUBFUN xmlDocPtr XMLCALL + xmlNewDoc (const xmlChar *version); +XMLPUBFUN void XMLCALL + xmlFreeDoc (xmlDocPtr cur); +XMLPUBFUN xmlAttrPtr XMLCALL + xmlNewDocProp (xmlDocPtr doc, + const xmlChar *name, + const xmlChar *value); +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || \ + defined(LIBXML_SCHEMAS_ENABLED) +XMLPUBFUN xmlAttrPtr XMLCALL + xmlNewProp (xmlNodePtr node, + const xmlChar *name, + const xmlChar *value); +#endif +XMLPUBFUN xmlAttrPtr XMLCALL + xmlNewNsProp (xmlNodePtr node, + xmlNsPtr ns, + const xmlChar *name, + const xmlChar *value); +XMLPUBFUN xmlAttrPtr XMLCALL + xmlNewNsPropEatName (xmlNodePtr node, + xmlNsPtr ns, + xmlChar *name, + const xmlChar *value); +XMLPUBFUN void XMLCALL + xmlFreePropList (xmlAttrPtr cur); +XMLPUBFUN void XMLCALL + xmlFreeProp (xmlAttrPtr cur); +XMLPUBFUN xmlAttrPtr XMLCALL + xmlCopyProp (xmlNodePtr target, + xmlAttrPtr cur); +XMLPUBFUN xmlAttrPtr XMLCALL + xmlCopyPropList (xmlNodePtr target, + xmlAttrPtr cur); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN xmlDtdPtr XMLCALL + xmlCopyDtd (xmlDtdPtr dtd); +#endif /* LIBXML_TREE_ENABLED */ +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) +XMLPUBFUN xmlDocPtr XMLCALL + xmlCopyDoc (xmlDocPtr doc, + int recursive); +#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */ +/* + * Creating new nodes. + */ +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewDocNode (xmlDocPtr doc, + xmlNsPtr ns, + const xmlChar *name, + const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewDocNodeEatName (xmlDocPtr doc, + xmlNsPtr ns, + xmlChar *name, + const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewNode (xmlNsPtr ns, + const xmlChar *name); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewNodeEatName (xmlNsPtr ns, + xmlChar *name); +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewChild (xmlNodePtr parent, + xmlNsPtr ns, + const xmlChar *name, + const xmlChar *content); +#endif +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewDocText (xmlDocPtr doc, + const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewText (const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewDocPI (xmlDocPtr doc, + const xmlChar *name, + const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewPI (const xmlChar *name, + const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewDocTextLen (xmlDocPtr doc, + const xmlChar *content, + int len); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewTextLen (const xmlChar *content, + int len); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewDocComment (xmlDocPtr doc, + const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewComment (const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewCDataBlock (xmlDocPtr doc, + const xmlChar *content, + int len); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewCharRef (xmlDocPtr doc, + const xmlChar *name); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewReference (xmlDocPtr doc, + const xmlChar *name); +XMLPUBFUN xmlNodePtr XMLCALL + xmlCopyNode (const xmlNodePtr node, + int recursive); +XMLPUBFUN xmlNodePtr XMLCALL + xmlDocCopyNode (const xmlNodePtr node, + xmlDocPtr doc, + int recursive); +XMLPUBFUN xmlNodePtr XMLCALL + xmlDocCopyNodeList (xmlDocPtr doc, + const xmlNodePtr node); +XMLPUBFUN xmlNodePtr XMLCALL + xmlCopyNodeList (const xmlNodePtr node); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewTextChild (xmlNodePtr parent, + xmlNsPtr ns, + const xmlChar *name, + const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewDocRawNode (xmlDocPtr doc, + xmlNsPtr ns, + const xmlChar *name, + const xmlChar *content); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNewDocFragment (xmlDocPtr doc); +#endif /* LIBXML_TREE_ENABLED */ + +/* + * Navigating. + */ +XMLPUBFUN long XMLCALL + xmlGetLineNo (xmlNodePtr node); +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED) +XMLPUBFUN xmlChar * XMLCALL + xmlGetNodePath (xmlNodePtr node); +#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED) */ +XMLPUBFUN xmlNodePtr XMLCALL + xmlDocGetRootElement (xmlDocPtr doc); +XMLPUBFUN xmlNodePtr XMLCALL + xmlGetLastChild (xmlNodePtr parent); +XMLPUBFUN int XMLCALL + xmlNodeIsText (xmlNodePtr node); +XMLPUBFUN int XMLCALL + xmlIsBlankNode (xmlNodePtr node); + +/* + * Changing the structure. + */ +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) +XMLPUBFUN xmlNodePtr XMLCALL + xmlDocSetRootElement (xmlDocPtr doc, + xmlNodePtr root); +#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) */ +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN void XMLCALL + xmlNodeSetName (xmlNodePtr cur, + const xmlChar *name); +#endif /* LIBXML_TREE_ENABLED */ +XMLPUBFUN xmlNodePtr XMLCALL + xmlAddChild (xmlNodePtr parent, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL + xmlAddChildList (xmlNodePtr parent, + xmlNodePtr cur); +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) +XMLPUBFUN xmlNodePtr XMLCALL + xmlReplaceNode (xmlNodePtr old, + xmlNodePtr cur); +#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) */ +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || \ + defined(LIBXML_SCHEMAS_ENABLED) +XMLPUBFUN xmlNodePtr XMLCALL + xmlAddPrevSibling (xmlNodePtr cur, + xmlNodePtr elem); +#endif /* LIBXML_TREE_ENABLED || LIBXML_HTML_ENABLED || LIBXML_SCHEMAS_ENABLED */ +XMLPUBFUN xmlNodePtr XMLCALL + xmlAddSibling (xmlNodePtr cur, + xmlNodePtr elem); +XMLPUBFUN xmlNodePtr XMLCALL + xmlAddNextSibling (xmlNodePtr cur, + xmlNodePtr elem); +XMLPUBFUN void XMLCALL + xmlUnlinkNode (xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL + xmlTextMerge (xmlNodePtr first, + xmlNodePtr second); +XMLPUBFUN int XMLCALL + xmlTextConcat (xmlNodePtr node, + const xmlChar *content, + int len); +XMLPUBFUN void XMLCALL + xmlFreeNodeList (xmlNodePtr cur); +XMLPUBFUN void XMLCALL + xmlFreeNode (xmlNodePtr cur); +XMLPUBFUN void XMLCALL + xmlSetTreeDoc (xmlNodePtr tree, + xmlDocPtr doc); +XMLPUBFUN void XMLCALL + xmlSetListDoc (xmlNodePtr list, + xmlDocPtr doc); +/* + * Namespaces. + */ +XMLPUBFUN xmlNsPtr XMLCALL + xmlSearchNs (xmlDocPtr doc, + xmlNodePtr node, + const xmlChar *nameSpace); +XMLPUBFUN xmlNsPtr XMLCALL + xmlSearchNsByHref (xmlDocPtr doc, + xmlNodePtr node, + const xmlChar *href); +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) +XMLPUBFUN xmlNsPtr * XMLCALL + xmlGetNsList (xmlDocPtr doc, + xmlNodePtr node); +#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) */ + +XMLPUBFUN void XMLCALL + xmlSetNs (xmlNodePtr node, + xmlNsPtr ns); +XMLPUBFUN xmlNsPtr XMLCALL + xmlCopyNamespace (xmlNsPtr cur); +XMLPUBFUN xmlNsPtr XMLCALL + xmlCopyNamespaceList (xmlNsPtr cur); + +/* + * Changing the content. + */ +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED) +XMLPUBFUN xmlAttrPtr XMLCALL + xmlSetProp (xmlNodePtr node, + const xmlChar *name, + const xmlChar *value); +XMLPUBFUN xmlAttrPtr XMLCALL + xmlSetNsProp (xmlNodePtr node, + xmlNsPtr ns, + const xmlChar *name, + const xmlChar *value); +#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED) */ +XMLPUBFUN xmlChar * XMLCALL + xmlGetNoNsProp (xmlNodePtr node, + const xmlChar *name); +XMLPUBFUN xmlChar * XMLCALL + xmlGetProp (xmlNodePtr node, + const xmlChar *name); +XMLPUBFUN xmlAttrPtr XMLCALL + xmlHasProp (xmlNodePtr node, + const xmlChar *name); +XMLPUBFUN xmlAttrPtr XMLCALL + xmlHasNsProp (xmlNodePtr node, + const xmlChar *name, + const xmlChar *nameSpace); +XMLPUBFUN xmlChar * XMLCALL + xmlGetNsProp (xmlNodePtr node, + const xmlChar *name, + const xmlChar *nameSpace); +XMLPUBFUN xmlNodePtr XMLCALL + xmlStringGetNodeList (xmlDocPtr doc, + const xmlChar *value); +XMLPUBFUN xmlNodePtr XMLCALL + xmlStringLenGetNodeList (xmlDocPtr doc, + const xmlChar *value, + int len); +XMLPUBFUN xmlChar * XMLCALL + xmlNodeListGetString (xmlDocPtr doc, + xmlNodePtr list, + int inLine); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN xmlChar * XMLCALL + xmlNodeListGetRawString (xmlDocPtr doc, + xmlNodePtr list, + int inLine); +#endif /* LIBXML_TREE_ENABLED */ +XMLPUBFUN void XMLCALL + xmlNodeSetContent (xmlNodePtr cur, + const xmlChar *content); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN void XMLCALL + xmlNodeSetContentLen (xmlNodePtr cur, + const xmlChar *content, + int len); +#endif /* LIBXML_TREE_ENABLED */ +XMLPUBFUN void XMLCALL + xmlNodeAddContent (xmlNodePtr cur, + const xmlChar *content); +XMLPUBFUN void XMLCALL + xmlNodeAddContentLen (xmlNodePtr cur, + const xmlChar *content, + int len); +XMLPUBFUN xmlChar * XMLCALL + xmlNodeGetContent (xmlNodePtr cur); +XMLPUBFUN int XMLCALL + xmlNodeBufGetContent (xmlBufferPtr buffer, + xmlNodePtr cur); +XMLPUBFUN xmlChar * XMLCALL + xmlNodeGetLang (xmlNodePtr cur); +XMLPUBFUN int XMLCALL + xmlNodeGetSpacePreserve (xmlNodePtr cur); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN void XMLCALL + xmlNodeSetLang (xmlNodePtr cur, + const xmlChar *lang); +XMLPUBFUN void XMLCALL + xmlNodeSetSpacePreserve (xmlNodePtr cur, + int val); +#endif /* LIBXML_TREE_ENABLED */ +XMLPUBFUN xmlChar * XMLCALL + xmlNodeGetBase (xmlDocPtr doc, + xmlNodePtr cur); +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) +XMLPUBFUN void XMLCALL + xmlNodeSetBase (xmlNodePtr cur, + const xmlChar *uri); +#endif + +/* + * Removing content. + */ +XMLPUBFUN int XMLCALL + xmlRemoveProp (xmlAttrPtr cur); +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) +XMLPUBFUN int XMLCALL + xmlUnsetNsProp (xmlNodePtr node, + xmlNsPtr ns, + const xmlChar *name); +XMLPUBFUN int XMLCALL + xmlUnsetProp (xmlNodePtr node, + const xmlChar *name); +#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */ + +/* + * Internal, don't use. + */ +XMLPUBFUN void XMLCALL + xmlBufferWriteCHAR (xmlBufferPtr buf, + const xmlChar *string); +XMLPUBFUN void XMLCALL + xmlBufferWriteChar (xmlBufferPtr buf, + const char *string); +XMLPUBFUN void XMLCALL + xmlBufferWriteQuotedString(xmlBufferPtr buf, + const xmlChar *string); + +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void xmlAttrSerializeTxtContent(xmlBufferPtr buf, + xmlDocPtr doc, + xmlAttrPtr attr, + const xmlChar *string); +#endif /* LIBXML_OUTPUT_ENABLED */ + +#ifdef LIBXML_TREE_ENABLED +/* + * Namespace handling. + */ +XMLPUBFUN int XMLCALL + xmlReconciliateNs (xmlDocPtr doc, + xmlNodePtr tree); +#endif + +#ifdef LIBXML_OUTPUT_ENABLED +/* + * Saving. + */ +XMLPUBFUN void XMLCALL + xmlDocDumpFormatMemory (xmlDocPtr cur, + xmlChar **mem, + int *size, + int format); +XMLPUBFUN void XMLCALL + xmlDocDumpMemory (xmlDocPtr cur, + xmlChar **mem, + int *size); +XMLPUBFUN void XMLCALL + xmlDocDumpMemoryEnc (xmlDocPtr out_doc, + xmlChar **doc_txt_ptr, + int * doc_txt_len, + const char *txt_encoding); +XMLPUBFUN void XMLCALL + xmlDocDumpFormatMemoryEnc(xmlDocPtr out_doc, + xmlChar **doc_txt_ptr, + int * doc_txt_len, + const char *txt_encoding, + int format); +XMLPUBFUN int XMLCALL + xmlDocFormatDump (FILE *f, + xmlDocPtr cur, + int format); +XMLPUBFUN int XMLCALL + xmlDocDump (FILE *f, + xmlDocPtr cur); +XMLPUBFUN void XMLCALL + xmlElemDump (FILE *f, + xmlDocPtr doc, + xmlNodePtr cur); +XMLPUBFUN int XMLCALL + xmlSaveFile (const char *filename, + xmlDocPtr cur); +XMLPUBFUN int XMLCALL + xmlSaveFormatFile (const char *filename, + xmlDocPtr cur, + int format); +XMLPUBFUN int XMLCALL + xmlNodeDump (xmlBufferPtr buf, + xmlDocPtr doc, + xmlNodePtr cur, + int level, + int format); + +XMLPUBFUN int XMLCALL + xmlSaveFileTo (xmlOutputBufferPtr buf, + xmlDocPtr cur, + const char *encoding); +XMLPUBFUN int XMLCALL + xmlSaveFormatFileTo (xmlOutputBufferPtr buf, + xmlDocPtr cur, + const char *encoding, + int format); +XMLPUBFUN void XMLCALL + xmlNodeDumpOutput (xmlOutputBufferPtr buf, + xmlDocPtr doc, + xmlNodePtr cur, + int level, + int format, + const char *encoding); + +XMLPUBFUN int XMLCALL + xmlSaveFormatFileEnc (const char *filename, + xmlDocPtr cur, + const char *encoding, + int format); + +XMLPUBFUN int XMLCALL + xmlSaveFileEnc (const char *filename, + xmlDocPtr cur, + const char *encoding); + +#endif /* LIBXML_OUTPUT_ENABLED */ +/* + * XHTML + */ +XMLPUBFUN int XMLCALL + xmlIsXHTML (const xmlChar *systemID, + const xmlChar *publicID); + +/* + * Compression. + */ +XMLPUBFUN int XMLCALL + xmlGetDocCompressMode (xmlDocPtr doc); +XMLPUBFUN void XMLCALL + xmlSetDocCompressMode (xmlDocPtr doc, + int mode); +XMLPUBFUN int XMLCALL + xmlGetCompressMode (void); +XMLPUBFUN void XMLCALL + xmlSetCompressMode (int mode); + +/* +* DOM-wrapper helper functions. +*/ +XMLPUBFUN xmlDOMWrapCtxtPtr XMLCALL + xmlDOMWrapNewCtxt (void); +XMLPUBFUN void XMLCALL + xmlDOMWrapFreeCtxt (xmlDOMWrapCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlDOMWrapReconcileNamespaces(xmlDOMWrapCtxtPtr ctxt, + xmlNodePtr elem, + int options); +XMLPUBFUN int XMLCALL + xmlDOMWrapAdoptNode (xmlDOMWrapCtxtPtr ctxt, + xmlDocPtr sourceDoc, + xmlNodePtr node, + xmlDocPtr destDoc, + xmlNodePtr destParent, + int options); +XMLPUBFUN int XMLCALL + xmlDOMWrapRemoveNode (xmlDOMWrapCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr node, + int options); +XMLPUBFUN int XMLCALL + xmlDOMWrapCloneNode (xmlDOMWrapCtxtPtr ctxt, + xmlDocPtr sourceDoc, + xmlNodePtr node, + xmlNodePtr *clonedNode, + xmlDocPtr destDoc, + xmlNodePtr destParent, + int deep, + int options); + +#ifdef LIBXML_TREE_ENABLED +/* + * 5 interfaces from DOM ElementTraversal, but different in entities + * traversal. + */ +XMLPUBFUN unsigned long XMLCALL + xmlChildElementCount (xmlNodePtr parent); +XMLPUBFUN xmlNodePtr XMLCALL + xmlNextElementSibling (xmlNodePtr node); +XMLPUBFUN xmlNodePtr XMLCALL + xmlFirstElementChild (xmlNodePtr parent); +XMLPUBFUN xmlNodePtr XMLCALL + xmlLastElementChild (xmlNodePtr parent); +XMLPUBFUN xmlNodePtr XMLCALL + xmlPreviousElementSibling (xmlNodePtr node); +#endif +#ifdef __cplusplus +} +#endif +#ifndef __XML_PARSER_H__ +#include <libxml/xmlmemory.h> +#endif + +#endif /* __XML_TREE_H__ */ + diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/uri.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/uri.h new file mode 100644 index 0000000000..db48262b13 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/uri.h @@ -0,0 +1,94 @@ +/** + * Summary: library of generic URI related routines + * Description: library of generic URI related routines + * Implements RFC 2396 + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_URI_H__ +#define __XML_URI_H__ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlURI: + * + * A parsed URI reference. This is a struct containing the various fields + * as described in RFC 2396 but separated for further processing. + * + * Note: query is a deprecated field which is incorrectly unescaped. + * query_raw takes precedence over query if the former is set. + * See: http://mail.gnome.org/archives/xml/2007-April/thread.html#00127 + */ +typedef struct _xmlURI xmlURI; +typedef xmlURI *xmlURIPtr; +struct _xmlURI { + char *scheme; /* the URI scheme */ + char *opaque; /* opaque part */ + char *authority; /* the authority part */ + char *server; /* the server part */ + char *user; /* the user part */ + int port; /* the port number */ + char *path; /* the path string */ + char *query; /* the query string (deprecated - use with caution) */ + char *fragment; /* the fragment identifier */ + int cleanup; /* parsing potentially unclean URI */ + char *query_raw; /* the query string (as it appears in the URI) */ +}; + +/* + * This function is in tree.h: + * xmlChar * xmlNodeGetBase (xmlDocPtr doc, + * xmlNodePtr cur); + */ +XMLPUBFUN xmlURIPtr XMLCALL + xmlCreateURI (void); +XMLPUBFUN xmlChar * XMLCALL + xmlBuildURI (const xmlChar *URI, + const xmlChar *base); +XMLPUBFUN xmlChar * XMLCALL + xmlBuildRelativeURI (const xmlChar *URI, + const xmlChar *base); +XMLPUBFUN xmlURIPtr XMLCALL + xmlParseURI (const char *str); +XMLPUBFUN xmlURIPtr XMLCALL + xmlParseURIRaw (const char *str, + int raw); +XMLPUBFUN int XMLCALL + xmlParseURIReference (xmlURIPtr uri, + const char *str); +XMLPUBFUN xmlChar * XMLCALL + xmlSaveUri (xmlURIPtr uri); +XMLPUBFUN void XMLCALL + xmlPrintURI (FILE *stream, + xmlURIPtr uri); +XMLPUBFUN xmlChar * XMLCALL + xmlURIEscapeStr (const xmlChar *str, + const xmlChar *list); +XMLPUBFUN char * XMLCALL + xmlURIUnescapeString (const char *str, + int len, + char *target); +XMLPUBFUN int XMLCALL + xmlNormalizeURIPath (char *path); +XMLPUBFUN xmlChar * XMLCALL + xmlURIEscape (const xmlChar *str); +XMLPUBFUN void XMLCALL + xmlFreeURI (xmlURIPtr uri); +XMLPUBFUN xmlChar* XMLCALL + xmlCanonicPath (const xmlChar *path); +XMLPUBFUN xmlChar* XMLCALL + xmlPathToURI (const xmlChar *path); + +#ifdef __cplusplus +} +#endif +#endif /* __XML_URI_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/valid.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/valid.h new file mode 100644 index 0000000000..a2307f1212 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/valid.h @@ -0,0 +1,458 @@ +/* + * Summary: The DTD validation + * Description: API for the DTD handling and the validity checking + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + + +#ifndef __XML_VALID_H__ +#define __XML_VALID_H__ + +#include <libxml/xmlversion.h> +#include <libxml/xmlerror.h> +#include <libxml/tree.h> +#include <libxml/list.h> +#include <libxml/xmlautomata.h> +#include <libxml/xmlregexp.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Validation state added for non-determinist content model. + */ +typedef struct _xmlValidState xmlValidState; +typedef xmlValidState *xmlValidStatePtr; + +/** + * xmlValidityErrorFunc: + * @ctx: usually an xmlValidCtxtPtr to a validity error context, + * but comes from ctxt->userData (which normally contains such + * a pointer); ctxt->userData can be changed by the user. + * @msg: the string to format *printf like vararg + * @...: remaining arguments to the format + * + * Callback called when a validity error is found. This is a message + * oriented function similar to an *printf function. + */ +typedef void (XMLCDECL *xmlValidityErrorFunc) (void *ctx, + const char *msg, + ...) LIBXML_ATTR_FORMAT(2,3); + +/** + * xmlValidityWarningFunc: + * @ctx: usually an xmlValidCtxtPtr to a validity error context, + * but comes from ctxt->userData (which normally contains such + * a pointer); ctxt->userData can be changed by the user. + * @msg: the string to format *printf like vararg + * @...: remaining arguments to the format + * + * Callback called when a validity warning is found. This is a message + * oriented function similar to an *printf function. + */ +typedef void (XMLCDECL *xmlValidityWarningFunc) (void *ctx, + const char *msg, + ...) LIBXML_ATTR_FORMAT(2,3); + +#ifdef IN_LIBXML +/** + * XML_CTXT_FINISH_DTD_0: + * + * Special value for finishDtd field when embedded in an xmlParserCtxt + */ +#define XML_CTXT_FINISH_DTD_0 0xabcd1234 +/** + * XML_CTXT_FINISH_DTD_1: + * + * Special value for finishDtd field when embedded in an xmlParserCtxt + */ +#define XML_CTXT_FINISH_DTD_1 0xabcd1235 +#endif + +/* + * xmlValidCtxt: + * An xmlValidCtxt is used for error reporting when validating. + */ +typedef struct _xmlValidCtxt xmlValidCtxt; +typedef xmlValidCtxt *xmlValidCtxtPtr; +struct _xmlValidCtxt { + void *userData; /* user specific data block */ + xmlValidityErrorFunc error; /* the callback in case of errors */ + xmlValidityWarningFunc warning; /* the callback in case of warning */ + + /* Node analysis stack used when validating within entities */ + xmlNodePtr node; /* Current parsed Node */ + int nodeNr; /* Depth of the parsing stack */ + int nodeMax; /* Max depth of the parsing stack */ + xmlNodePtr *nodeTab; /* array of nodes */ + + unsigned int finishDtd; /* finished validating the Dtd ? */ + xmlDocPtr doc; /* the document */ + int valid; /* temporary validity check result */ + + /* state state used for non-determinist content validation */ + xmlValidState *vstate; /* current state */ + int vstateNr; /* Depth of the validation stack */ + int vstateMax; /* Max depth of the validation stack */ + xmlValidState *vstateTab; /* array of validation states */ + +#ifdef LIBXML_REGEXP_ENABLED + xmlAutomataPtr am; /* the automata */ + xmlAutomataStatePtr state; /* used to build the automata */ +#else + void *am; + void *state; +#endif +}; + +/* + * ALL notation declarations are stored in a table. + * There is one table per DTD. + */ + +typedef struct _xmlHashTable xmlNotationTable; +typedef xmlNotationTable *xmlNotationTablePtr; + +/* + * ALL element declarations are stored in a table. + * There is one table per DTD. + */ + +typedef struct _xmlHashTable xmlElementTable; +typedef xmlElementTable *xmlElementTablePtr; + +/* + * ALL attribute declarations are stored in a table. + * There is one table per DTD. + */ + +typedef struct _xmlHashTable xmlAttributeTable; +typedef xmlAttributeTable *xmlAttributeTablePtr; + +/* + * ALL IDs attributes are stored in a table. + * There is one table per document. + */ + +typedef struct _xmlHashTable xmlIDTable; +typedef xmlIDTable *xmlIDTablePtr; + +/* + * ALL Refs attributes are stored in a table. + * There is one table per document. + */ + +typedef struct _xmlHashTable xmlRefTable; +typedef xmlRefTable *xmlRefTablePtr; + +/* Notation */ +XMLPUBFUN xmlNotationPtr XMLCALL + xmlAddNotationDecl (xmlValidCtxtPtr ctxt, + xmlDtdPtr dtd, + const xmlChar *name, + const xmlChar *PublicID, + const xmlChar *SystemID); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN xmlNotationTablePtr XMLCALL + xmlCopyNotationTable (xmlNotationTablePtr table); +#endif /* LIBXML_TREE_ENABLED */ +XMLPUBFUN void XMLCALL + xmlFreeNotationTable (xmlNotationTablePtr table); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + xmlDumpNotationDecl (xmlBufferPtr buf, + xmlNotationPtr nota); +XMLPUBFUN void XMLCALL + xmlDumpNotationTable (xmlBufferPtr buf, + xmlNotationTablePtr table); +#endif /* LIBXML_OUTPUT_ENABLED */ + +/* Element Content */ +/* the non Doc version are being deprecated */ +XMLPUBFUN xmlElementContentPtr XMLCALL + xmlNewElementContent (const xmlChar *name, + xmlElementContentType type); +XMLPUBFUN xmlElementContentPtr XMLCALL + xmlCopyElementContent (xmlElementContentPtr content); +XMLPUBFUN void XMLCALL + xmlFreeElementContent (xmlElementContentPtr cur); +/* the new versions with doc argument */ +XMLPUBFUN xmlElementContentPtr XMLCALL + xmlNewDocElementContent (xmlDocPtr doc, + const xmlChar *name, + xmlElementContentType type); +XMLPUBFUN xmlElementContentPtr XMLCALL + xmlCopyDocElementContent(xmlDocPtr doc, + xmlElementContentPtr content); +XMLPUBFUN void XMLCALL + xmlFreeDocElementContent(xmlDocPtr doc, + xmlElementContentPtr cur); +XMLPUBFUN void XMLCALL + xmlSnprintfElementContent(char *buf, + int size, + xmlElementContentPtr content, + int englob); +#ifdef LIBXML_OUTPUT_ENABLED +/* DEPRECATED */ +XMLPUBFUN void XMLCALL + xmlSprintfElementContent(char *buf, + xmlElementContentPtr content, + int englob); +#endif /* LIBXML_OUTPUT_ENABLED */ +/* DEPRECATED */ + +/* Element */ +XMLPUBFUN xmlElementPtr XMLCALL + xmlAddElementDecl (xmlValidCtxtPtr ctxt, + xmlDtdPtr dtd, + const xmlChar *name, + xmlElementTypeVal type, + xmlElementContentPtr content); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN xmlElementTablePtr XMLCALL + xmlCopyElementTable (xmlElementTablePtr table); +#endif /* LIBXML_TREE_ENABLED */ +XMLPUBFUN void XMLCALL + xmlFreeElementTable (xmlElementTablePtr table); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + xmlDumpElementTable (xmlBufferPtr buf, + xmlElementTablePtr table); +XMLPUBFUN void XMLCALL + xmlDumpElementDecl (xmlBufferPtr buf, + xmlElementPtr elem); +#endif /* LIBXML_OUTPUT_ENABLED */ + +/* Enumeration */ +XMLPUBFUN xmlEnumerationPtr XMLCALL + xmlCreateEnumeration (const xmlChar *name); +XMLPUBFUN void XMLCALL + xmlFreeEnumeration (xmlEnumerationPtr cur); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN xmlEnumerationPtr XMLCALL + xmlCopyEnumeration (xmlEnumerationPtr cur); +#endif /* LIBXML_TREE_ENABLED */ + +/* Attribute */ +XMLPUBFUN xmlAttributePtr XMLCALL + xmlAddAttributeDecl (xmlValidCtxtPtr ctxt, + xmlDtdPtr dtd, + const xmlChar *elem, + const xmlChar *name, + const xmlChar *ns, + xmlAttributeType type, + xmlAttributeDefault def, + const xmlChar *defaultValue, + xmlEnumerationPtr tree); +#ifdef LIBXML_TREE_ENABLED +XMLPUBFUN xmlAttributeTablePtr XMLCALL + xmlCopyAttributeTable (xmlAttributeTablePtr table); +#endif /* LIBXML_TREE_ENABLED */ +XMLPUBFUN void XMLCALL + xmlFreeAttributeTable (xmlAttributeTablePtr table); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + xmlDumpAttributeTable (xmlBufferPtr buf, + xmlAttributeTablePtr table); +XMLPUBFUN void XMLCALL + xmlDumpAttributeDecl (xmlBufferPtr buf, + xmlAttributePtr attr); +#endif /* LIBXML_OUTPUT_ENABLED */ + +/* IDs */ +XMLPUBFUN xmlIDPtr XMLCALL + xmlAddID (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + const xmlChar *value, + xmlAttrPtr attr); +XMLPUBFUN void XMLCALL + xmlFreeIDTable (xmlIDTablePtr table); +XMLPUBFUN xmlAttrPtr XMLCALL + xmlGetID (xmlDocPtr doc, + const xmlChar *ID); +XMLPUBFUN int XMLCALL + xmlIsID (xmlDocPtr doc, + xmlNodePtr elem, + xmlAttrPtr attr); +XMLPUBFUN int XMLCALL + xmlRemoveID (xmlDocPtr doc, + xmlAttrPtr attr); + +/* IDREFs */ +XMLPUBFUN xmlRefPtr XMLCALL + xmlAddRef (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + const xmlChar *value, + xmlAttrPtr attr); +XMLPUBFUN void XMLCALL + xmlFreeRefTable (xmlRefTablePtr table); +XMLPUBFUN int XMLCALL + xmlIsRef (xmlDocPtr doc, + xmlNodePtr elem, + xmlAttrPtr attr); +XMLPUBFUN int XMLCALL + xmlRemoveRef (xmlDocPtr doc, + xmlAttrPtr attr); +XMLPUBFUN xmlListPtr XMLCALL + xmlGetRefs (xmlDocPtr doc, + const xmlChar *ID); + +/** + * The public function calls related to validity checking. + */ +#ifdef LIBXML_VALID_ENABLED +/* Allocate/Release Validation Contexts */ +XMLPUBFUN xmlValidCtxtPtr XMLCALL + xmlNewValidCtxt(void); +XMLPUBFUN void XMLCALL + xmlFreeValidCtxt(xmlValidCtxtPtr); + +XMLPUBFUN int XMLCALL + xmlValidateRoot (xmlValidCtxtPtr ctxt, + xmlDocPtr doc); +XMLPUBFUN int XMLCALL + xmlValidateElementDecl (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlElementPtr elem); +XMLPUBFUN xmlChar * XMLCALL + xmlValidNormalizeAttributeValue(xmlDocPtr doc, + xmlNodePtr elem, + const xmlChar *name, + const xmlChar *value); +XMLPUBFUN xmlChar * XMLCALL + xmlValidCtxtNormalizeAttributeValue(xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem, + const xmlChar *name, + const xmlChar *value); +XMLPUBFUN int XMLCALL + xmlValidateAttributeDecl(xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlAttributePtr attr); +XMLPUBFUN int XMLCALL + xmlValidateAttributeValue(xmlAttributeType type, + const xmlChar *value); +XMLPUBFUN int XMLCALL + xmlValidateNotationDecl (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNotationPtr nota); +XMLPUBFUN int XMLCALL + xmlValidateDtd (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlDtdPtr dtd); +XMLPUBFUN int XMLCALL + xmlValidateDtdFinal (xmlValidCtxtPtr ctxt, + xmlDocPtr doc); +XMLPUBFUN int XMLCALL + xmlValidateDocument (xmlValidCtxtPtr ctxt, + xmlDocPtr doc); +XMLPUBFUN int XMLCALL + xmlValidateElement (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem); +XMLPUBFUN int XMLCALL + xmlValidateOneElement (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem); +XMLPUBFUN int XMLCALL + xmlValidateOneAttribute (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem, + xmlAttrPtr attr, + const xmlChar *value); +XMLPUBFUN int XMLCALL + xmlValidateOneNamespace (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem, + const xmlChar *prefix, + xmlNsPtr ns, + const xmlChar *value); +XMLPUBFUN int XMLCALL + xmlValidateDocumentFinal(xmlValidCtxtPtr ctxt, + xmlDocPtr doc); +#endif /* LIBXML_VALID_ENABLED */ + +#if defined(LIBXML_VALID_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) +XMLPUBFUN int XMLCALL + xmlValidateNotationUse (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + const xmlChar *notationName); +#endif /* LIBXML_VALID_ENABLED or LIBXML_SCHEMAS_ENABLED */ + +XMLPUBFUN int XMLCALL + xmlIsMixedElement (xmlDocPtr doc, + const xmlChar *name); +XMLPUBFUN xmlAttributePtr XMLCALL + xmlGetDtdAttrDesc (xmlDtdPtr dtd, + const xmlChar *elem, + const xmlChar *name); +XMLPUBFUN xmlAttributePtr XMLCALL + xmlGetDtdQAttrDesc (xmlDtdPtr dtd, + const xmlChar *elem, + const xmlChar *name, + const xmlChar *prefix); +XMLPUBFUN xmlNotationPtr XMLCALL + xmlGetDtdNotationDesc (xmlDtdPtr dtd, + const xmlChar *name); +XMLPUBFUN xmlElementPtr XMLCALL + xmlGetDtdQElementDesc (xmlDtdPtr dtd, + const xmlChar *name, + const xmlChar *prefix); +XMLPUBFUN xmlElementPtr XMLCALL + xmlGetDtdElementDesc (xmlDtdPtr dtd, + const xmlChar *name); + +#ifdef LIBXML_VALID_ENABLED + +XMLPUBFUN int XMLCALL + xmlValidGetPotentialChildren(xmlElementContent *ctree, + const xmlChar **names, + int *len, + int max); + +XMLPUBFUN int XMLCALL + xmlValidGetValidElements(xmlNode *prev, + xmlNode *next, + const xmlChar **names, + int max); +XMLPUBFUN int XMLCALL + xmlValidateNameValue (const xmlChar *value); +XMLPUBFUN int XMLCALL + xmlValidateNamesValue (const xmlChar *value); +XMLPUBFUN int XMLCALL + xmlValidateNmtokenValue (const xmlChar *value); +XMLPUBFUN int XMLCALL + xmlValidateNmtokensValue(const xmlChar *value); + +#ifdef LIBXML_REGEXP_ENABLED +/* + * Validation based on the regexp support + */ +XMLPUBFUN int XMLCALL + xmlValidBuildContentModel(xmlValidCtxtPtr ctxt, + xmlElementPtr elem); + +XMLPUBFUN int XMLCALL + xmlValidatePushElement (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem, + const xmlChar *qname); +XMLPUBFUN int XMLCALL + xmlValidatePushCData (xmlValidCtxtPtr ctxt, + const xmlChar *data, + int len); +XMLPUBFUN int XMLCALL + xmlValidatePopElement (xmlValidCtxtPtr ctxt, + xmlDocPtr doc, + xmlNodePtr elem, + const xmlChar *qname); +#endif /* LIBXML_REGEXP_ENABLED */ +#endif /* LIBXML_VALID_ENABLED */ +#ifdef __cplusplus +} +#endif +#endif /* __XML_VALID_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xinclude.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xinclude.h new file mode 100644 index 0000000000..863ab25ad9 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xinclude.h @@ -0,0 +1,129 @@ +/* + * Summary: implementation of XInclude + * Description: API to handle XInclude processing, + * implements the + * World Wide Web Consortium Last Call Working Draft 10 November 2003 + * http://www.w3.org/TR/2003/WD-xinclude-20031110 + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_XINCLUDE_H__ +#define __XML_XINCLUDE_H__ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> + +#ifdef LIBXML_XINCLUDE_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * XINCLUDE_NS: + * + * Macro defining the Xinclude namespace: http://www.w3.org/2003/XInclude + */ +#define XINCLUDE_NS (const xmlChar *) "http://www.w3.org/2003/XInclude" +/** + * XINCLUDE_OLD_NS: + * + * Macro defining the draft Xinclude namespace: http://www.w3.org/2001/XInclude + */ +#define XINCLUDE_OLD_NS (const xmlChar *) "http://www.w3.org/2001/XInclude" +/** + * XINCLUDE_NODE: + * + * Macro defining "include" + */ +#define XINCLUDE_NODE (const xmlChar *) "include" +/** + * XINCLUDE_FALLBACK: + * + * Macro defining "fallback" + */ +#define XINCLUDE_FALLBACK (const xmlChar *) "fallback" +/** + * XINCLUDE_HREF: + * + * Macro defining "href" + */ +#define XINCLUDE_HREF (const xmlChar *) "href" +/** + * XINCLUDE_PARSE: + * + * Macro defining "parse" + */ +#define XINCLUDE_PARSE (const xmlChar *) "parse" +/** + * XINCLUDE_PARSE_XML: + * + * Macro defining "xml" + */ +#define XINCLUDE_PARSE_XML (const xmlChar *) "xml" +/** + * XINCLUDE_PARSE_TEXT: + * + * Macro defining "text" + */ +#define XINCLUDE_PARSE_TEXT (const xmlChar *) "text" +/** + * XINCLUDE_PARSE_ENCODING: + * + * Macro defining "encoding" + */ +#define XINCLUDE_PARSE_ENCODING (const xmlChar *) "encoding" +/** + * XINCLUDE_PARSE_XPOINTER: + * + * Macro defining "xpointer" + */ +#define XINCLUDE_PARSE_XPOINTER (const xmlChar *) "xpointer" + +typedef struct _xmlXIncludeCtxt xmlXIncludeCtxt; +typedef xmlXIncludeCtxt *xmlXIncludeCtxtPtr; + +/* + * standalone processing + */ +XMLPUBFUN int XMLCALL + xmlXIncludeProcess (xmlDocPtr doc); +XMLPUBFUN int XMLCALL + xmlXIncludeProcessFlags (xmlDocPtr doc, + int flags); +XMLPUBFUN int XMLCALL + xmlXIncludeProcessFlagsData(xmlDocPtr doc, + int flags, + void *data); +XMLPUBFUN int XMLCALL + xmlXIncludeProcessTreeFlagsData(xmlNodePtr tree, + int flags, + void *data); +XMLPUBFUN int XMLCALL + xmlXIncludeProcessTree (xmlNodePtr tree); +XMLPUBFUN int XMLCALL + xmlXIncludeProcessTreeFlags(xmlNodePtr tree, + int flags); +/* + * contextual processing + */ +XMLPUBFUN xmlXIncludeCtxtPtr XMLCALL + xmlXIncludeNewContext (xmlDocPtr doc); +XMLPUBFUN int XMLCALL + xmlXIncludeSetFlags (xmlXIncludeCtxtPtr ctxt, + int flags); +XMLPUBFUN void XMLCALL + xmlXIncludeFreeContext (xmlXIncludeCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlXIncludeProcessNode (xmlXIncludeCtxtPtr ctxt, + xmlNodePtr tree); +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_XINCLUDE_ENABLED */ + +#endif /* __XML_XINCLUDE_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xlink.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xlink.h new file mode 100644 index 0000000000..083c7eda40 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xlink.h @@ -0,0 +1,189 @@ +/* + * Summary: unfinished XLink detection module + * Description: unfinished XLink detection module + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_XLINK_H__ +#define __XML_XLINK_H__ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> + +#ifdef LIBXML_XPTR_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Various defines for the various Link properties. + * + * NOTE: the link detection layer will try to resolve QName expansion + * of namespaces. If "foo" is the prefix for "http://foo.com/" + * then the link detection layer will expand role="foo:myrole" + * to "http://foo.com/:myrole". + * NOTE: the link detection layer will expand URI-Refences found on + * href attributes by using the base mechanism if found. + */ +typedef xmlChar *xlinkHRef; +typedef xmlChar *xlinkRole; +typedef xmlChar *xlinkTitle; + +typedef enum { + XLINK_TYPE_NONE = 0, + XLINK_TYPE_SIMPLE, + XLINK_TYPE_EXTENDED, + XLINK_TYPE_EXTENDED_SET +} xlinkType; + +typedef enum { + XLINK_SHOW_NONE = 0, + XLINK_SHOW_NEW, + XLINK_SHOW_EMBED, + XLINK_SHOW_REPLACE +} xlinkShow; + +typedef enum { + XLINK_ACTUATE_NONE = 0, + XLINK_ACTUATE_AUTO, + XLINK_ACTUATE_ONREQUEST +} xlinkActuate; + +/** + * xlinkNodeDetectFunc: + * @ctx: user data pointer + * @node: the node to check + * + * This is the prototype for the link detection routine. + * It calls the default link detection callbacks upon link detection. + */ +typedef void (*xlinkNodeDetectFunc) (void *ctx, xmlNodePtr node); + +/* + * The link detection module interact with the upper layers using + * a set of callback registered at parsing time. + */ + +/** + * xlinkSimpleLinkFunk: + * @ctx: user data pointer + * @node: the node carrying the link + * @href: the target of the link + * @role: the role string + * @title: the link title + * + * This is the prototype for a simple link detection callback. + */ +typedef void +(*xlinkSimpleLinkFunk) (void *ctx, + xmlNodePtr node, + const xlinkHRef href, + const xlinkRole role, + const xlinkTitle title); + +/** + * xlinkExtendedLinkFunk: + * @ctx: user data pointer + * @node: the node carrying the link + * @nbLocators: the number of locators detected on the link + * @hrefs: pointer to the array of locator hrefs + * @roles: pointer to the array of locator roles + * @nbArcs: the number of arcs detected on the link + * @from: pointer to the array of source roles found on the arcs + * @to: pointer to the array of target roles found on the arcs + * @show: array of values for the show attributes found on the arcs + * @actuate: array of values for the actuate attributes found on the arcs + * @nbTitles: the number of titles detected on the link + * @title: array of titles detected on the link + * @langs: array of xml:lang values for the titles + * + * This is the prototype for a extended link detection callback. + */ +typedef void +(*xlinkExtendedLinkFunk)(void *ctx, + xmlNodePtr node, + int nbLocators, + const xlinkHRef *hrefs, + const xlinkRole *roles, + int nbArcs, + const xlinkRole *from, + const xlinkRole *to, + xlinkShow *show, + xlinkActuate *actuate, + int nbTitles, + const xlinkTitle *titles, + const xmlChar **langs); + +/** + * xlinkExtendedLinkSetFunk: + * @ctx: user data pointer + * @node: the node carrying the link + * @nbLocators: the number of locators detected on the link + * @hrefs: pointer to the array of locator hrefs + * @roles: pointer to the array of locator roles + * @nbTitles: the number of titles detected on the link + * @title: array of titles detected on the link + * @langs: array of xml:lang values for the titles + * + * This is the prototype for a extended link set detection callback. + */ +typedef void +(*xlinkExtendedLinkSetFunk) (void *ctx, + xmlNodePtr node, + int nbLocators, + const xlinkHRef *hrefs, + const xlinkRole *roles, + int nbTitles, + const xlinkTitle *titles, + const xmlChar **langs); + +/** + * This is the structure containing a set of Links detection callbacks. + * + * There is no default xlink callbacks, if one want to get link + * recognition activated, those call backs must be provided before parsing. + */ +typedef struct _xlinkHandler xlinkHandler; +typedef xlinkHandler *xlinkHandlerPtr; +struct _xlinkHandler { + xlinkSimpleLinkFunk simple; + xlinkExtendedLinkFunk extended; + xlinkExtendedLinkSetFunk set; +}; + +/* + * The default detection routine, can be overridden, they call the default + * detection callbacks. + */ + +XMLPUBFUN xlinkNodeDetectFunc XMLCALL + xlinkGetDefaultDetect (void); +XMLPUBFUN void XMLCALL + xlinkSetDefaultDetect (xlinkNodeDetectFunc func); + +/* + * Routines to set/get the default handlers. + */ +XMLPUBFUN xlinkHandlerPtr XMLCALL + xlinkGetDefaultHandler (void); +XMLPUBFUN void XMLCALL + xlinkSetDefaultHandler (xlinkHandlerPtr handler); + +/* + * Link detection module itself. + */ +XMLPUBFUN xlinkType XMLCALL + xlinkIsLink (xmlDocPtr doc, + xmlNodePtr node); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_XPTR_ENABLED */ + +#endif /* __XML_XLINK_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlIO.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlIO.h new file mode 100644 index 0000000000..eea9ed6c03 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlIO.h @@ -0,0 +1,360 @@ +/* + * Summary: interface for the I/O interfaces used by the parser + * Description: interface for the I/O interfaces used by the parser + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_IO_H__ +#define __XML_IO_H__ + +#include <stdio.h> +#include <libxml/xmlversion.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Those are the functions and datatypes for the parser input + * I/O structures. + */ + +/** + * xmlInputMatchCallback: + * @filename: the filename or URI + * + * Callback used in the I/O Input API to detect if the current handler + * can provide input fonctionnalities for this resource. + * + * Returns 1 if yes and 0 if another Input module should be used + */ +typedef int (XMLCALL *xmlInputMatchCallback) (char const *filename); +/** + * xmlInputOpenCallback: + * @filename: the filename or URI + * + * Callback used in the I/O Input API to open the resource + * + * Returns an Input context or NULL in case or error + */ +typedef void * (XMLCALL *xmlInputOpenCallback) (char const *filename); +/** + * xmlInputReadCallback: + * @context: an Input context + * @buffer: the buffer to store data read + * @len: the length of the buffer in bytes + * + * Callback used in the I/O Input API to read the resource + * + * Returns the number of bytes read or -1 in case of error + */ +typedef int (XMLCALL *xmlInputReadCallback) (void * context, char * buffer, int len); +/** + * xmlInputCloseCallback: + * @context: an Input context + * + * Callback used in the I/O Input API to close the resource + * + * Returns 0 or -1 in case of error + */ +typedef int (XMLCALL *xmlInputCloseCallback) (void * context); + +#ifdef LIBXML_OUTPUT_ENABLED +/* + * Those are the functions and datatypes for the library output + * I/O structures. + */ + +/** + * xmlOutputMatchCallback: + * @filename: the filename or URI + * + * Callback used in the I/O Output API to detect if the current handler + * can provide output fonctionnalities for this resource. + * + * Returns 1 if yes and 0 if another Output module should be used + */ +typedef int (XMLCALL *xmlOutputMatchCallback) (char const *filename); +/** + * xmlOutputOpenCallback: + * @filename: the filename or URI + * + * Callback used in the I/O Output API to open the resource + * + * Returns an Output context or NULL in case or error + */ +typedef void * (XMLCALL *xmlOutputOpenCallback) (char const *filename); +/** + * xmlOutputWriteCallback: + * @context: an Output context + * @buffer: the buffer of data to write + * @len: the length of the buffer in bytes + * + * Callback used in the I/O Output API to write to the resource + * + * Returns the number of bytes written or -1 in case of error + */ +typedef int (XMLCALL *xmlOutputWriteCallback) (void * context, const char * buffer, + int len); +/** + * xmlOutputCloseCallback: + * @context: an Output context + * + * Callback used in the I/O Output API to close the resource + * + * Returns 0 or -1 in case of error + */ +typedef int (XMLCALL *xmlOutputCloseCallback) (void * context); +#endif /* LIBXML_OUTPUT_ENABLED */ + +#ifdef __cplusplus +} +#endif + +#include <libxml/globals.h> +#include <libxml/tree.h> +#include <libxml/parser.h> +#include <libxml/encoding.h> + +#ifdef __cplusplus +extern "C" { +#endif +struct _xmlParserInputBuffer { + void* context; + xmlInputReadCallback readcallback; + xmlInputCloseCallback closecallback; + + xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */ + + xmlBufferPtr buffer; /* Local buffer encoded in UTF-8 */ + xmlBufferPtr raw; /* if encoder != NULL buffer for raw input */ + int compressed; /* -1=unknown, 0=not compressed, 1=compressed */ + int error; + unsigned long rawconsumed;/* amount consumed from raw */ +}; + + +#ifdef LIBXML_OUTPUT_ENABLED +struct _xmlOutputBuffer { + void* context; + xmlOutputWriteCallback writecallback; + xmlOutputCloseCallback closecallback; + + xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */ + + xmlBufferPtr buffer; /* Local buffer encoded in UTF-8 or ISOLatin */ + xmlBufferPtr conv; /* if encoder != NULL buffer for output */ + int written; /* total number of byte written */ + int error; +}; +#endif /* LIBXML_OUTPUT_ENABLED */ + +/* + * Interfaces for input + */ +XMLPUBFUN void XMLCALL + xmlCleanupInputCallbacks (void); + +XMLPUBFUN int XMLCALL + xmlPopInputCallbacks (void); + +XMLPUBFUN void XMLCALL + xmlRegisterDefaultInputCallbacks (void); +XMLPUBFUN xmlParserInputBufferPtr XMLCALL + xmlAllocParserInputBuffer (xmlCharEncoding enc); + +XMLPUBFUN xmlParserInputBufferPtr XMLCALL + xmlParserInputBufferCreateFilename (const char *URI, + xmlCharEncoding enc); +XMLPUBFUN xmlParserInputBufferPtr XMLCALL + xmlParserInputBufferCreateFile (FILE *file, + xmlCharEncoding enc); +XMLPUBFUN xmlParserInputBufferPtr XMLCALL + xmlParserInputBufferCreateFd (int fd, + xmlCharEncoding enc); +XMLPUBFUN xmlParserInputBufferPtr XMLCALL + xmlParserInputBufferCreateMem (const char *mem, int size, + xmlCharEncoding enc); +XMLPUBFUN xmlParserInputBufferPtr XMLCALL + xmlParserInputBufferCreateStatic (const char *mem, int size, + xmlCharEncoding enc); +XMLPUBFUN xmlParserInputBufferPtr XMLCALL + xmlParserInputBufferCreateIO (xmlInputReadCallback ioread, + xmlInputCloseCallback ioclose, + void *ioctx, + xmlCharEncoding enc); +XMLPUBFUN int XMLCALL + xmlParserInputBufferRead (xmlParserInputBufferPtr in, + int len); +XMLPUBFUN int XMLCALL + xmlParserInputBufferGrow (xmlParserInputBufferPtr in, + int len); +XMLPUBFUN int XMLCALL + xmlParserInputBufferPush (xmlParserInputBufferPtr in, + int len, + const char *buf); +XMLPUBFUN void XMLCALL + xmlFreeParserInputBuffer (xmlParserInputBufferPtr in); +XMLPUBFUN char * XMLCALL + xmlParserGetDirectory (const char *filename); + +XMLPUBFUN int XMLCALL + xmlRegisterInputCallbacks (xmlInputMatchCallback matchFunc, + xmlInputOpenCallback openFunc, + xmlInputReadCallback readFunc, + xmlInputCloseCallback closeFunc); + +xmlParserInputBufferPtr + __xmlParserInputBufferCreateFilename(const char *URI, + xmlCharEncoding enc); + +#ifdef LIBXML_OUTPUT_ENABLED +/* + * Interfaces for output + */ +XMLPUBFUN void XMLCALL + xmlCleanupOutputCallbacks (void); +XMLPUBFUN void XMLCALL + xmlRegisterDefaultOutputCallbacks(void); +XMLPUBFUN xmlOutputBufferPtr XMLCALL + xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder); + +XMLPUBFUN xmlOutputBufferPtr XMLCALL + xmlOutputBufferCreateFilename (const char *URI, + xmlCharEncodingHandlerPtr encoder, + int compression); + +XMLPUBFUN xmlOutputBufferPtr XMLCALL + xmlOutputBufferCreateFile (FILE *file, + xmlCharEncodingHandlerPtr encoder); + +XMLPUBFUN xmlOutputBufferPtr XMLCALL + xmlOutputBufferCreateBuffer (xmlBufferPtr buffer, + xmlCharEncodingHandlerPtr encoder); + +XMLPUBFUN xmlOutputBufferPtr XMLCALL + xmlOutputBufferCreateFd (int fd, + xmlCharEncodingHandlerPtr encoder); + +XMLPUBFUN xmlOutputBufferPtr XMLCALL + xmlOutputBufferCreateIO (xmlOutputWriteCallback iowrite, + xmlOutputCloseCallback ioclose, + void *ioctx, + xmlCharEncodingHandlerPtr encoder); + +XMLPUBFUN int XMLCALL + xmlOutputBufferWrite (xmlOutputBufferPtr out, + int len, + const char *buf); +XMLPUBFUN int XMLCALL + xmlOutputBufferWriteString (xmlOutputBufferPtr out, + const char *str); +XMLPUBFUN int XMLCALL + xmlOutputBufferWriteEscape (xmlOutputBufferPtr out, + const xmlChar *str, + xmlCharEncodingOutputFunc escaping); + +XMLPUBFUN int XMLCALL + xmlOutputBufferFlush (xmlOutputBufferPtr out); +XMLPUBFUN int XMLCALL + xmlOutputBufferClose (xmlOutputBufferPtr out); + +XMLPUBFUN int XMLCALL + xmlRegisterOutputCallbacks (xmlOutputMatchCallback matchFunc, + xmlOutputOpenCallback openFunc, + xmlOutputWriteCallback writeFunc, + xmlOutputCloseCallback closeFunc); + +xmlOutputBufferPtr + __xmlOutputBufferCreateFilename(const char *URI, + xmlCharEncodingHandlerPtr encoder, + int compression); + +#ifdef LIBXML_HTTP_ENABLED +/* This function only exists if HTTP support built into the library */ +XMLPUBFUN void XMLCALL + xmlRegisterHTTPPostCallbacks (void ); +#endif /* LIBXML_HTTP_ENABLED */ + +#endif /* LIBXML_OUTPUT_ENABLED */ + +XMLPUBFUN xmlParserInputPtr XMLCALL + xmlCheckHTTPInput (xmlParserCtxtPtr ctxt, + xmlParserInputPtr ret); + +/* + * A predefined entity loader disabling network accesses + */ +XMLPUBFUN xmlParserInputPtr XMLCALL + xmlNoNetExternalEntityLoader (const char *URL, + const char *ID, + xmlParserCtxtPtr ctxt); + +/* + * xmlNormalizeWindowsPath is obsolete, don't use it. + * Check xmlCanonicPath in uri.h for a better alternative. + */ +XMLPUBFUN xmlChar * XMLCALL + xmlNormalizeWindowsPath (const xmlChar *path); + +XMLPUBFUN int XMLCALL + xmlCheckFilename (const char *path); +/** + * Default 'file://' protocol callbacks + */ +XMLPUBFUN int XMLCALL + xmlFileMatch (const char *filename); +XMLPUBFUN void * XMLCALL + xmlFileOpen (const char *filename); +XMLPUBFUN int XMLCALL + xmlFileRead (void * context, + char * buffer, + int len); +XMLPUBFUN int XMLCALL + xmlFileClose (void * context); + +/** + * Default 'http://' protocol callbacks + */ +#ifdef LIBXML_HTTP_ENABLED +XMLPUBFUN int XMLCALL + xmlIOHTTPMatch (const char *filename); +XMLPUBFUN void * XMLCALL + xmlIOHTTPOpen (const char *filename); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void * XMLCALL + xmlIOHTTPOpenW (const char * post_uri, + int compression ); +#endif /* LIBXML_OUTPUT_ENABLED */ +XMLPUBFUN int XMLCALL + xmlIOHTTPRead (void * context, + char * buffer, + int len); +XMLPUBFUN int XMLCALL + xmlIOHTTPClose (void * context); +#endif /* LIBXML_HTTP_ENABLED */ + +/** + * Default 'ftp://' protocol callbacks + */ +#ifdef LIBXML_FTP_ENABLED +XMLPUBFUN int XMLCALL + xmlIOFTPMatch (const char *filename); +XMLPUBFUN void * XMLCALL + xmlIOFTPOpen (const char *filename); +XMLPUBFUN int XMLCALL + xmlIOFTPRead (void * context, + char * buffer, + int len); +XMLPUBFUN int XMLCALL + xmlIOFTPClose (void * context); +#endif /* LIBXML_FTP_ENABLED */ + +#ifdef __cplusplus +} +#endif + +#endif /* __XML_IO_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlautomata.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlautomata.h new file mode 100644 index 0000000000..f98b55e2b8 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlautomata.h @@ -0,0 +1,146 @@ +/* + * Summary: API to build regexp automata + * Description: the API to build regexp automata + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_AUTOMATA_H__ +#define __XML_AUTOMATA_H__ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> + +#ifdef LIBXML_REGEXP_ENABLED +#ifdef LIBXML_AUTOMATA_ENABLED +#include <libxml/xmlregexp.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlAutomataPtr: + * + * A libxml automata description, It can be compiled into a regexp + */ +typedef struct _xmlAutomata xmlAutomata; +typedef xmlAutomata *xmlAutomataPtr; + +/** + * xmlAutomataStatePtr: + * + * A state int the automata description, + */ +typedef struct _xmlAutomataState xmlAutomataState; +typedef xmlAutomataState *xmlAutomataStatePtr; + +/* + * Building API + */ +XMLPUBFUN xmlAutomataPtr XMLCALL + xmlNewAutomata (void); +XMLPUBFUN void XMLCALL + xmlFreeAutomata (xmlAutomataPtr am); + +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataGetInitState (xmlAutomataPtr am); +XMLPUBFUN int XMLCALL + xmlAutomataSetFinalState (xmlAutomataPtr am, + xmlAutomataStatePtr state); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewState (xmlAutomataPtr am); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewTransition (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + const xmlChar *token, + void *data); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewTransition2 (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + const xmlChar *token, + const xmlChar *token2, + void *data); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewNegTrans (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + const xmlChar *token, + const xmlChar *token2, + void *data); + +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewCountTrans (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + const xmlChar *token, + int min, + int max, + void *data); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewCountTrans2 (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + const xmlChar *token, + const xmlChar *token2, + int min, + int max, + void *data); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewOnceTrans (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + const xmlChar *token, + int min, + int max, + void *data); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewOnceTrans2 (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + const xmlChar *token, + const xmlChar *token2, + int min, + int max, + void *data); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewAllTrans (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + int lax); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewEpsilon (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewCountedTrans (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + int counter); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewCounterTrans (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + int counter); +XMLPUBFUN int XMLCALL + xmlAutomataNewCounter (xmlAutomataPtr am, + int min, + int max); + +XMLPUBFUN xmlRegexpPtr XMLCALL + xmlAutomataCompile (xmlAutomataPtr am); +XMLPUBFUN int XMLCALL + xmlAutomataIsDeterminist (xmlAutomataPtr am); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_AUTOMATA_ENABLED */ +#endif /* LIBXML_REGEXP_ENABLED */ + +#endif /* __XML_AUTOMATA_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlerror.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlerror.h new file mode 100644 index 0000000000..e924211235 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlerror.h @@ -0,0 +1,944 @@ +/* + * Summary: error handling + * Description: the API used to report errors + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#include <libxml/parser.h> + +#ifndef __XML_ERROR_H__ +#define __XML_ERROR_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlErrorLevel: + * + * Indicates the level of an error + */ +typedef enum { + XML_ERR_NONE = 0, + XML_ERR_WARNING = 1, /* A simple warning */ + XML_ERR_ERROR = 2, /* A recoverable error */ + XML_ERR_FATAL = 3 /* A fatal error */ +} xmlErrorLevel; + +/** + * xmlErrorDomain: + * + * Indicates where an error may have come from + */ +typedef enum { + XML_FROM_NONE = 0, + XML_FROM_PARSER, /* The XML parser */ + XML_FROM_TREE, /* The tree module */ + XML_FROM_NAMESPACE, /* The XML Namespace module */ + XML_FROM_DTD, /* The XML DTD validation with parser context*/ + XML_FROM_HTML, /* The HTML parser */ + XML_FROM_MEMORY, /* The memory allocator */ + XML_FROM_OUTPUT, /* The serialization code */ + XML_FROM_IO, /* The Input/Output stack */ + XML_FROM_FTP, /* The FTP module */ + XML_FROM_HTTP, /* The HTTP module */ + XML_FROM_XINCLUDE, /* The XInclude processing */ + XML_FROM_XPATH, /* The XPath module */ + XML_FROM_XPOINTER, /* The XPointer module */ + XML_FROM_REGEXP, /* The regular expressions module */ + XML_FROM_DATATYPE, /* The W3C XML Schemas Datatype module */ + XML_FROM_SCHEMASP, /* The W3C XML Schemas parser module */ + XML_FROM_SCHEMASV, /* The W3C XML Schemas validation module */ + XML_FROM_RELAXNGP, /* The Relax-NG parser module */ + XML_FROM_RELAXNGV, /* The Relax-NG validator module */ + XML_FROM_CATALOG, /* The Catalog module */ + XML_FROM_C14N, /* The Canonicalization module */ + XML_FROM_XSLT, /* The XSLT engine from libxslt */ + XML_FROM_VALID, /* The XML DTD validation with valid context */ + XML_FROM_CHECK, /* The error checking module */ + XML_FROM_WRITER, /* The xmlwriter module */ + XML_FROM_MODULE, /* The dynamically loaded module module*/ + XML_FROM_I18N, /* The module handling character conversion */ + XML_FROM_SCHEMATRONV /* The Schematron validator module */ +} xmlErrorDomain; + +/** + * xmlError: + * + * An XML Error instance. + */ + +typedef struct _xmlError xmlError; +typedef xmlError *xmlErrorPtr; +struct _xmlError { + int domain; /* What part of the library raised this error */ + int code; /* The error code, e.g. an xmlParserError */ + char *message;/* human-readable informative error message */ + xmlErrorLevel level;/* how consequent is the error */ + char *file; /* the filename */ + int line; /* the line number if available */ + char *str1; /* extra string information */ + char *str2; /* extra string information */ + char *str3; /* extra string information */ + int int1; /* extra number information */ + int int2; /* column number of the error or 0 if N/A (todo: rename this field when we would break ABI) */ + void *ctxt; /* the parser context if available */ + void *node; /* the node in the tree */ +}; + +/** + * xmlParserError: + * + * This is an error that the XML (or HTML) parser can generate + */ +typedef enum { + XML_ERR_OK = 0, + XML_ERR_INTERNAL_ERROR, /* 1 */ + XML_ERR_NO_MEMORY, /* 2 */ + XML_ERR_DOCUMENT_START, /* 3 */ + XML_ERR_DOCUMENT_EMPTY, /* 4 */ + XML_ERR_DOCUMENT_END, /* 5 */ + XML_ERR_INVALID_HEX_CHARREF, /* 6 */ + XML_ERR_INVALID_DEC_CHARREF, /* 7 */ + XML_ERR_INVALID_CHARREF, /* 8 */ + XML_ERR_INVALID_CHAR, /* 9 */ + XML_ERR_CHARREF_AT_EOF, /* 10 */ + XML_ERR_CHARREF_IN_PROLOG, /* 11 */ + XML_ERR_CHARREF_IN_EPILOG, /* 12 */ + XML_ERR_CHARREF_IN_DTD, /* 13 */ + XML_ERR_ENTITYREF_AT_EOF, /* 14 */ + XML_ERR_ENTITYREF_IN_PROLOG, /* 15 */ + XML_ERR_ENTITYREF_IN_EPILOG, /* 16 */ + XML_ERR_ENTITYREF_IN_DTD, /* 17 */ + XML_ERR_PEREF_AT_EOF, /* 18 */ + XML_ERR_PEREF_IN_PROLOG, /* 19 */ + XML_ERR_PEREF_IN_EPILOG, /* 20 */ + XML_ERR_PEREF_IN_INT_SUBSET, /* 21 */ + XML_ERR_ENTITYREF_NO_NAME, /* 22 */ + XML_ERR_ENTITYREF_SEMICOL_MISSING, /* 23 */ + XML_ERR_PEREF_NO_NAME, /* 24 */ + XML_ERR_PEREF_SEMICOL_MISSING, /* 25 */ + XML_ERR_UNDECLARED_ENTITY, /* 26 */ + XML_WAR_UNDECLARED_ENTITY, /* 27 */ + XML_ERR_UNPARSED_ENTITY, /* 28 */ + XML_ERR_ENTITY_IS_EXTERNAL, /* 29 */ + XML_ERR_ENTITY_IS_PARAMETER, /* 30 */ + XML_ERR_UNKNOWN_ENCODING, /* 31 */ + XML_ERR_UNSUPPORTED_ENCODING, /* 32 */ + XML_ERR_STRING_NOT_STARTED, /* 33 */ + XML_ERR_STRING_NOT_CLOSED, /* 34 */ + XML_ERR_NS_DECL_ERROR, /* 35 */ + XML_ERR_ENTITY_NOT_STARTED, /* 36 */ + XML_ERR_ENTITY_NOT_FINISHED, /* 37 */ + XML_ERR_LT_IN_ATTRIBUTE, /* 38 */ + XML_ERR_ATTRIBUTE_NOT_STARTED, /* 39 */ + XML_ERR_ATTRIBUTE_NOT_FINISHED, /* 40 */ + XML_ERR_ATTRIBUTE_WITHOUT_VALUE, /* 41 */ + XML_ERR_ATTRIBUTE_REDEFINED, /* 42 */ + XML_ERR_LITERAL_NOT_STARTED, /* 43 */ + XML_ERR_LITERAL_NOT_FINISHED, /* 44 */ + XML_ERR_COMMENT_NOT_FINISHED, /* 45 */ + XML_ERR_PI_NOT_STARTED, /* 46 */ + XML_ERR_PI_NOT_FINISHED, /* 47 */ + XML_ERR_NOTATION_NOT_STARTED, /* 48 */ + XML_ERR_NOTATION_NOT_FINISHED, /* 49 */ + XML_ERR_ATTLIST_NOT_STARTED, /* 50 */ + XML_ERR_ATTLIST_NOT_FINISHED, /* 51 */ + XML_ERR_MIXED_NOT_STARTED, /* 52 */ + XML_ERR_MIXED_NOT_FINISHED, /* 53 */ + XML_ERR_ELEMCONTENT_NOT_STARTED, /* 54 */ + XML_ERR_ELEMCONTENT_NOT_FINISHED, /* 55 */ + XML_ERR_XMLDECL_NOT_STARTED, /* 56 */ + XML_ERR_XMLDECL_NOT_FINISHED, /* 57 */ + XML_ERR_CONDSEC_NOT_STARTED, /* 58 */ + XML_ERR_CONDSEC_NOT_FINISHED, /* 59 */ + XML_ERR_EXT_SUBSET_NOT_FINISHED, /* 60 */ + XML_ERR_DOCTYPE_NOT_FINISHED, /* 61 */ + XML_ERR_MISPLACED_CDATA_END, /* 62 */ + XML_ERR_CDATA_NOT_FINISHED, /* 63 */ + XML_ERR_RESERVED_XML_NAME, /* 64 */ + XML_ERR_SPACE_REQUIRED, /* 65 */ + XML_ERR_SEPARATOR_REQUIRED, /* 66 */ + XML_ERR_NMTOKEN_REQUIRED, /* 67 */ + XML_ERR_NAME_REQUIRED, /* 68 */ + XML_ERR_PCDATA_REQUIRED, /* 69 */ + XML_ERR_URI_REQUIRED, /* 70 */ + XML_ERR_PUBID_REQUIRED, /* 71 */ + XML_ERR_LT_REQUIRED, /* 72 */ + XML_ERR_GT_REQUIRED, /* 73 */ + XML_ERR_LTSLASH_REQUIRED, /* 74 */ + XML_ERR_EQUAL_REQUIRED, /* 75 */ + XML_ERR_TAG_NAME_MISMATCH, /* 76 */ + XML_ERR_TAG_NOT_FINISHED, /* 77 */ + XML_ERR_STANDALONE_VALUE, /* 78 */ + XML_ERR_ENCODING_NAME, /* 79 */ + XML_ERR_HYPHEN_IN_COMMENT, /* 80 */ + XML_ERR_INVALID_ENCODING, /* 81 */ + XML_ERR_EXT_ENTITY_STANDALONE, /* 82 */ + XML_ERR_CONDSEC_INVALID, /* 83 */ + XML_ERR_VALUE_REQUIRED, /* 84 */ + XML_ERR_NOT_WELL_BALANCED, /* 85 */ + XML_ERR_EXTRA_CONTENT, /* 86 */ + XML_ERR_ENTITY_CHAR_ERROR, /* 87 */ + XML_ERR_ENTITY_PE_INTERNAL, /* 88 */ + XML_ERR_ENTITY_LOOP, /* 89 */ + XML_ERR_ENTITY_BOUNDARY, /* 90 */ + XML_ERR_INVALID_URI, /* 91 */ + XML_ERR_URI_FRAGMENT, /* 92 */ + XML_WAR_CATALOG_PI, /* 93 */ + XML_ERR_NO_DTD, /* 94 */ + XML_ERR_CONDSEC_INVALID_KEYWORD, /* 95 */ + XML_ERR_VERSION_MISSING, /* 96 */ + XML_WAR_UNKNOWN_VERSION, /* 97 */ + XML_WAR_LANG_VALUE, /* 98 */ + XML_WAR_NS_URI, /* 99 */ + XML_WAR_NS_URI_RELATIVE, /* 100 */ + XML_ERR_MISSING_ENCODING, /* 101 */ + XML_WAR_SPACE_VALUE, /* 102 */ + XML_ERR_NOT_STANDALONE, /* 103 */ + XML_ERR_ENTITY_PROCESSING, /* 104 */ + XML_ERR_NOTATION_PROCESSING, /* 105 */ + XML_WAR_NS_COLUMN, /* 106 */ + XML_WAR_ENTITY_REDEFINED, /* 107 */ + XML_ERR_UNKNOWN_VERSION, /* 108 */ + XML_ERR_VERSION_MISMATCH, /* 109 */ + XML_NS_ERR_XML_NAMESPACE = 200, + XML_NS_ERR_UNDEFINED_NAMESPACE, /* 201 */ + XML_NS_ERR_QNAME, /* 202 */ + XML_NS_ERR_ATTRIBUTE_REDEFINED, /* 203 */ + XML_NS_ERR_EMPTY, /* 204 */ + XML_NS_ERR_COLON, /* 205 */ + XML_DTD_ATTRIBUTE_DEFAULT = 500, + XML_DTD_ATTRIBUTE_REDEFINED, /* 501 */ + XML_DTD_ATTRIBUTE_VALUE, /* 502 */ + XML_DTD_CONTENT_ERROR, /* 503 */ + XML_DTD_CONTENT_MODEL, /* 504 */ + XML_DTD_CONTENT_NOT_DETERMINIST, /* 505 */ + XML_DTD_DIFFERENT_PREFIX, /* 506 */ + XML_DTD_ELEM_DEFAULT_NAMESPACE, /* 507 */ + XML_DTD_ELEM_NAMESPACE, /* 508 */ + XML_DTD_ELEM_REDEFINED, /* 509 */ + XML_DTD_EMPTY_NOTATION, /* 510 */ + XML_DTD_ENTITY_TYPE, /* 511 */ + XML_DTD_ID_FIXED, /* 512 */ + XML_DTD_ID_REDEFINED, /* 513 */ + XML_DTD_ID_SUBSET, /* 514 */ + XML_DTD_INVALID_CHILD, /* 515 */ + XML_DTD_INVALID_DEFAULT, /* 516 */ + XML_DTD_LOAD_ERROR, /* 517 */ + XML_DTD_MISSING_ATTRIBUTE, /* 518 */ + XML_DTD_MIXED_CORRUPT, /* 519 */ + XML_DTD_MULTIPLE_ID, /* 520 */ + XML_DTD_NO_DOC, /* 521 */ + XML_DTD_NO_DTD, /* 522 */ + XML_DTD_NO_ELEM_NAME, /* 523 */ + XML_DTD_NO_PREFIX, /* 524 */ + XML_DTD_NO_ROOT, /* 525 */ + XML_DTD_NOTATION_REDEFINED, /* 526 */ + XML_DTD_NOTATION_VALUE, /* 527 */ + XML_DTD_NOT_EMPTY, /* 528 */ + XML_DTD_NOT_PCDATA, /* 529 */ + XML_DTD_NOT_STANDALONE, /* 530 */ + XML_DTD_ROOT_NAME, /* 531 */ + XML_DTD_STANDALONE_WHITE_SPACE, /* 532 */ + XML_DTD_UNKNOWN_ATTRIBUTE, /* 533 */ + XML_DTD_UNKNOWN_ELEM, /* 534 */ + XML_DTD_UNKNOWN_ENTITY, /* 535 */ + XML_DTD_UNKNOWN_ID, /* 536 */ + XML_DTD_UNKNOWN_NOTATION, /* 537 */ + XML_DTD_STANDALONE_DEFAULTED, /* 538 */ + XML_DTD_XMLID_VALUE, /* 539 */ + XML_DTD_XMLID_TYPE, /* 540 */ + XML_DTD_DUP_TOKEN, /* 541 */ + XML_HTML_STRUCURE_ERROR = 800, + XML_HTML_UNKNOWN_TAG, /* 801 */ + XML_RNGP_ANYNAME_ATTR_ANCESTOR = 1000, + XML_RNGP_ATTR_CONFLICT, /* 1001 */ + XML_RNGP_ATTRIBUTE_CHILDREN, /* 1002 */ + XML_RNGP_ATTRIBUTE_CONTENT, /* 1003 */ + XML_RNGP_ATTRIBUTE_EMPTY, /* 1004 */ + XML_RNGP_ATTRIBUTE_NOOP, /* 1005 */ + XML_RNGP_CHOICE_CONTENT, /* 1006 */ + XML_RNGP_CHOICE_EMPTY, /* 1007 */ + XML_RNGP_CREATE_FAILURE, /* 1008 */ + XML_RNGP_DATA_CONTENT, /* 1009 */ + XML_RNGP_DEF_CHOICE_AND_INTERLEAVE, /* 1010 */ + XML_RNGP_DEFINE_CREATE_FAILED, /* 1011 */ + XML_RNGP_DEFINE_EMPTY, /* 1012 */ + XML_RNGP_DEFINE_MISSING, /* 1013 */ + XML_RNGP_DEFINE_NAME_MISSING, /* 1014 */ + XML_RNGP_ELEM_CONTENT_EMPTY, /* 1015 */ + XML_RNGP_ELEM_CONTENT_ERROR, /* 1016 */ + XML_RNGP_ELEMENT_EMPTY, /* 1017 */ + XML_RNGP_ELEMENT_CONTENT, /* 1018 */ + XML_RNGP_ELEMENT_NAME, /* 1019 */ + XML_RNGP_ELEMENT_NO_CONTENT, /* 1020 */ + XML_RNGP_ELEM_TEXT_CONFLICT, /* 1021 */ + XML_RNGP_EMPTY, /* 1022 */ + XML_RNGP_EMPTY_CONSTRUCT, /* 1023 */ + XML_RNGP_EMPTY_CONTENT, /* 1024 */ + XML_RNGP_EMPTY_NOT_EMPTY, /* 1025 */ + XML_RNGP_ERROR_TYPE_LIB, /* 1026 */ + XML_RNGP_EXCEPT_EMPTY, /* 1027 */ + XML_RNGP_EXCEPT_MISSING, /* 1028 */ + XML_RNGP_EXCEPT_MULTIPLE, /* 1029 */ + XML_RNGP_EXCEPT_NO_CONTENT, /* 1030 */ + XML_RNGP_EXTERNALREF_EMTPY, /* 1031 */ + XML_RNGP_EXTERNAL_REF_FAILURE, /* 1032 */ + XML_RNGP_EXTERNALREF_RECURSE, /* 1033 */ + XML_RNGP_FORBIDDEN_ATTRIBUTE, /* 1034 */ + XML_RNGP_FOREIGN_ELEMENT, /* 1035 */ + XML_RNGP_GRAMMAR_CONTENT, /* 1036 */ + XML_RNGP_GRAMMAR_EMPTY, /* 1037 */ + XML_RNGP_GRAMMAR_MISSING, /* 1038 */ + XML_RNGP_GRAMMAR_NO_START, /* 1039 */ + XML_RNGP_GROUP_ATTR_CONFLICT, /* 1040 */ + XML_RNGP_HREF_ERROR, /* 1041 */ + XML_RNGP_INCLUDE_EMPTY, /* 1042 */ + XML_RNGP_INCLUDE_FAILURE, /* 1043 */ + XML_RNGP_INCLUDE_RECURSE, /* 1044 */ + XML_RNGP_INTERLEAVE_ADD, /* 1045 */ + XML_RNGP_INTERLEAVE_CREATE_FAILED, /* 1046 */ + XML_RNGP_INTERLEAVE_EMPTY, /* 1047 */ + XML_RNGP_INTERLEAVE_NO_CONTENT, /* 1048 */ + XML_RNGP_INVALID_DEFINE_NAME, /* 1049 */ + XML_RNGP_INVALID_URI, /* 1050 */ + XML_RNGP_INVALID_VALUE, /* 1051 */ + XML_RNGP_MISSING_HREF, /* 1052 */ + XML_RNGP_NAME_MISSING, /* 1053 */ + XML_RNGP_NEED_COMBINE, /* 1054 */ + XML_RNGP_NOTALLOWED_NOT_EMPTY, /* 1055 */ + XML_RNGP_NSNAME_ATTR_ANCESTOR, /* 1056 */ + XML_RNGP_NSNAME_NO_NS, /* 1057 */ + XML_RNGP_PARAM_FORBIDDEN, /* 1058 */ + XML_RNGP_PARAM_NAME_MISSING, /* 1059 */ + XML_RNGP_PARENTREF_CREATE_FAILED, /* 1060 */ + XML_RNGP_PARENTREF_NAME_INVALID, /* 1061 */ + XML_RNGP_PARENTREF_NO_NAME, /* 1062 */ + XML_RNGP_PARENTREF_NO_PARENT, /* 1063 */ + XML_RNGP_PARENTREF_NOT_EMPTY, /* 1064 */ + XML_RNGP_PARSE_ERROR, /* 1065 */ + XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME, /* 1066 */ + XML_RNGP_PAT_ATTR_ATTR, /* 1067 */ + XML_RNGP_PAT_ATTR_ELEM, /* 1068 */ + XML_RNGP_PAT_DATA_EXCEPT_ATTR, /* 1069 */ + XML_RNGP_PAT_DATA_EXCEPT_ELEM, /* 1070 */ + XML_RNGP_PAT_DATA_EXCEPT_EMPTY, /* 1071 */ + XML_RNGP_PAT_DATA_EXCEPT_GROUP, /* 1072 */ + XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE, /* 1073 */ + XML_RNGP_PAT_DATA_EXCEPT_LIST, /* 1074 */ + XML_RNGP_PAT_DATA_EXCEPT_ONEMORE, /* 1075 */ + XML_RNGP_PAT_DATA_EXCEPT_REF, /* 1076 */ + XML_RNGP_PAT_DATA_EXCEPT_TEXT, /* 1077 */ + XML_RNGP_PAT_LIST_ATTR, /* 1078 */ + XML_RNGP_PAT_LIST_ELEM, /* 1079 */ + XML_RNGP_PAT_LIST_INTERLEAVE, /* 1080 */ + XML_RNGP_PAT_LIST_LIST, /* 1081 */ + XML_RNGP_PAT_LIST_REF, /* 1082 */ + XML_RNGP_PAT_LIST_TEXT, /* 1083 */ + XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME, /* 1084 */ + XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME, /* 1085 */ + XML_RNGP_PAT_ONEMORE_GROUP_ATTR, /* 1086 */ + XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR, /* 1087 */ + XML_RNGP_PAT_START_ATTR, /* 1088 */ + XML_RNGP_PAT_START_DATA, /* 1089 */ + XML_RNGP_PAT_START_EMPTY, /* 1090 */ + XML_RNGP_PAT_START_GROUP, /* 1091 */ + XML_RNGP_PAT_START_INTERLEAVE, /* 1092 */ + XML_RNGP_PAT_START_LIST, /* 1093 */ + XML_RNGP_PAT_START_ONEMORE, /* 1094 */ + XML_RNGP_PAT_START_TEXT, /* 1095 */ + XML_RNGP_PAT_START_VALUE, /* 1096 */ + XML_RNGP_PREFIX_UNDEFINED, /* 1097 */ + XML_RNGP_REF_CREATE_FAILED, /* 1098 */ + XML_RNGP_REF_CYCLE, /* 1099 */ + XML_RNGP_REF_NAME_INVALID, /* 1100 */ + XML_RNGP_REF_NO_DEF, /* 1101 */ + XML_RNGP_REF_NO_NAME, /* 1102 */ + XML_RNGP_REF_NOT_EMPTY, /* 1103 */ + XML_RNGP_START_CHOICE_AND_INTERLEAVE, /* 1104 */ + XML_RNGP_START_CONTENT, /* 1105 */ + XML_RNGP_START_EMPTY, /* 1106 */ + XML_RNGP_START_MISSING, /* 1107 */ + XML_RNGP_TEXT_EXPECTED, /* 1108 */ + XML_RNGP_TEXT_HAS_CHILD, /* 1109 */ + XML_RNGP_TYPE_MISSING, /* 1110 */ + XML_RNGP_TYPE_NOT_FOUND, /* 1111 */ + XML_RNGP_TYPE_VALUE, /* 1112 */ + XML_RNGP_UNKNOWN_ATTRIBUTE, /* 1113 */ + XML_RNGP_UNKNOWN_COMBINE, /* 1114 */ + XML_RNGP_UNKNOWN_CONSTRUCT, /* 1115 */ + XML_RNGP_UNKNOWN_TYPE_LIB, /* 1116 */ + XML_RNGP_URI_FRAGMENT, /* 1117 */ + XML_RNGP_URI_NOT_ABSOLUTE, /* 1118 */ + XML_RNGP_VALUE_EMPTY, /* 1119 */ + XML_RNGP_VALUE_NO_CONTENT, /* 1120 */ + XML_RNGP_XMLNS_NAME, /* 1121 */ + XML_RNGP_XML_NS, /* 1122 */ + XML_XPATH_EXPRESSION_OK = 1200, + XML_XPATH_NUMBER_ERROR, /* 1201 */ + XML_XPATH_UNFINISHED_LITERAL_ERROR, /* 1202 */ + XML_XPATH_START_LITERAL_ERROR, /* 1203 */ + XML_XPATH_VARIABLE_REF_ERROR, /* 1204 */ + XML_XPATH_UNDEF_VARIABLE_ERROR, /* 1205 */ + XML_XPATH_INVALID_PREDICATE_ERROR, /* 1206 */ + XML_XPATH_EXPR_ERROR, /* 1207 */ + XML_XPATH_UNCLOSED_ERROR, /* 1208 */ + XML_XPATH_UNKNOWN_FUNC_ERROR, /* 1209 */ + XML_XPATH_INVALID_OPERAND, /* 1210 */ + XML_XPATH_INVALID_TYPE, /* 1211 */ + XML_XPATH_INVALID_ARITY, /* 1212 */ + XML_XPATH_INVALID_CTXT_SIZE, /* 1213 */ + XML_XPATH_INVALID_CTXT_POSITION, /* 1214 */ + XML_XPATH_MEMORY_ERROR, /* 1215 */ + XML_XPTR_SYNTAX_ERROR, /* 1216 */ + XML_XPTR_RESOURCE_ERROR, /* 1217 */ + XML_XPTR_SUB_RESOURCE_ERROR, /* 1218 */ + XML_XPATH_UNDEF_PREFIX_ERROR, /* 1219 */ + XML_XPATH_ENCODING_ERROR, /* 1220 */ + XML_XPATH_INVALID_CHAR_ERROR, /* 1221 */ + XML_TREE_INVALID_HEX = 1300, + XML_TREE_INVALID_DEC, /* 1301 */ + XML_TREE_UNTERMINATED_ENTITY, /* 1302 */ + XML_TREE_NOT_UTF8, /* 1303 */ + XML_SAVE_NOT_UTF8 = 1400, + XML_SAVE_CHAR_INVALID, /* 1401 */ + XML_SAVE_NO_DOCTYPE, /* 1402 */ + XML_SAVE_UNKNOWN_ENCODING, /* 1403 */ + XML_REGEXP_COMPILE_ERROR = 1450, + XML_IO_UNKNOWN = 1500, + XML_IO_EACCES, /* 1501 */ + XML_IO_EAGAIN, /* 1502 */ + XML_IO_EBADF, /* 1503 */ + XML_IO_EBADMSG, /* 1504 */ + XML_IO_EBUSY, /* 1505 */ + XML_IO_ECANCELED, /* 1506 */ + XML_IO_ECHILD, /* 1507 */ + XML_IO_EDEADLK, /* 1508 */ + XML_IO_EDOM, /* 1509 */ + XML_IO_EEXIST, /* 1510 */ + XML_IO_EFAULT, /* 1511 */ + XML_IO_EFBIG, /* 1512 */ + XML_IO_EINPROGRESS, /* 1513 */ + XML_IO_EINTR, /* 1514 */ + XML_IO_EINVAL, /* 1515 */ + XML_IO_EIO, /* 1516 */ + XML_IO_EISDIR, /* 1517 */ + XML_IO_EMFILE, /* 1518 */ + XML_IO_EMLINK, /* 1519 */ + XML_IO_EMSGSIZE, /* 1520 */ + XML_IO_ENAMETOOLONG, /* 1521 */ + XML_IO_ENFILE, /* 1522 */ + XML_IO_ENODEV, /* 1523 */ + XML_IO_ENOENT, /* 1524 */ + XML_IO_ENOEXEC, /* 1525 */ + XML_IO_ENOLCK, /* 1526 */ + XML_IO_ENOMEM, /* 1527 */ + XML_IO_ENOSPC, /* 1528 */ + XML_IO_ENOSYS, /* 1529 */ + XML_IO_ENOTDIR, /* 1530 */ + XML_IO_ENOTEMPTY, /* 1531 */ + XML_IO_ENOTSUP, /* 1532 */ + XML_IO_ENOTTY, /* 1533 */ + XML_IO_ENXIO, /* 1534 */ + XML_IO_EPERM, /* 1535 */ + XML_IO_EPIPE, /* 1536 */ + XML_IO_ERANGE, /* 1537 */ + XML_IO_EROFS, /* 1538 */ + XML_IO_ESPIPE, /* 1539 */ + XML_IO_ESRCH, /* 1540 */ + XML_IO_ETIMEDOUT, /* 1541 */ + XML_IO_EXDEV, /* 1542 */ + XML_IO_NETWORK_ATTEMPT, /* 1543 */ + XML_IO_ENCODER, /* 1544 */ + XML_IO_FLUSH, /* 1545 */ + XML_IO_WRITE, /* 1546 */ + XML_IO_NO_INPUT, /* 1547 */ + XML_IO_BUFFER_FULL, /* 1548 */ + XML_IO_LOAD_ERROR, /* 1549 */ + XML_IO_ENOTSOCK, /* 1550 */ + XML_IO_EISCONN, /* 1551 */ + XML_IO_ECONNREFUSED, /* 1552 */ + XML_IO_ENETUNREACH, /* 1553 */ + XML_IO_EADDRINUSE, /* 1554 */ + XML_IO_EALREADY, /* 1555 */ + XML_IO_EAFNOSUPPORT, /* 1556 */ + XML_XINCLUDE_RECURSION=1600, + XML_XINCLUDE_PARSE_VALUE, /* 1601 */ + XML_XINCLUDE_ENTITY_DEF_MISMATCH, /* 1602 */ + XML_XINCLUDE_NO_HREF, /* 1603 */ + XML_XINCLUDE_NO_FALLBACK, /* 1604 */ + XML_XINCLUDE_HREF_URI, /* 1605 */ + XML_XINCLUDE_TEXT_FRAGMENT, /* 1606 */ + XML_XINCLUDE_TEXT_DOCUMENT, /* 1607 */ + XML_XINCLUDE_INVALID_CHAR, /* 1608 */ + XML_XINCLUDE_BUILD_FAILED, /* 1609 */ + XML_XINCLUDE_UNKNOWN_ENCODING, /* 1610 */ + XML_XINCLUDE_MULTIPLE_ROOT, /* 1611 */ + XML_XINCLUDE_XPTR_FAILED, /* 1612 */ + XML_XINCLUDE_XPTR_RESULT, /* 1613 */ + XML_XINCLUDE_INCLUDE_IN_INCLUDE, /* 1614 */ + XML_XINCLUDE_FALLBACKS_IN_INCLUDE, /* 1615 */ + XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE, /* 1616 */ + XML_XINCLUDE_DEPRECATED_NS, /* 1617 */ + XML_XINCLUDE_FRAGMENT_ID, /* 1618 */ + XML_CATALOG_MISSING_ATTR = 1650, + XML_CATALOG_ENTRY_BROKEN, /* 1651 */ + XML_CATALOG_PREFER_VALUE, /* 1652 */ + XML_CATALOG_NOT_CATALOG, /* 1653 */ + XML_CATALOG_RECURSION, /* 1654 */ + XML_SCHEMAP_PREFIX_UNDEFINED = 1700, + XML_SCHEMAP_ATTRFORMDEFAULT_VALUE, /* 1701 */ + XML_SCHEMAP_ATTRGRP_NONAME_NOREF, /* 1702 */ + XML_SCHEMAP_ATTR_NONAME_NOREF, /* 1703 */ + XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF, /* 1704 */ + XML_SCHEMAP_ELEMFORMDEFAULT_VALUE, /* 1705 */ + XML_SCHEMAP_ELEM_NONAME_NOREF, /* 1706 */ + XML_SCHEMAP_EXTENSION_NO_BASE, /* 1707 */ + XML_SCHEMAP_FACET_NO_VALUE, /* 1708 */ + XML_SCHEMAP_FAILED_BUILD_IMPORT, /* 1709 */ + XML_SCHEMAP_GROUP_NONAME_NOREF, /* 1710 */ + XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI, /* 1711 */ + XML_SCHEMAP_IMPORT_REDEFINE_NSNAME, /* 1712 */ + XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI, /* 1713 */ + XML_SCHEMAP_INVALID_BOOLEAN, /* 1714 */ + XML_SCHEMAP_INVALID_ENUM, /* 1715 */ + XML_SCHEMAP_INVALID_FACET, /* 1716 */ + XML_SCHEMAP_INVALID_FACET_VALUE, /* 1717 */ + XML_SCHEMAP_INVALID_MAXOCCURS, /* 1718 */ + XML_SCHEMAP_INVALID_MINOCCURS, /* 1719 */ + XML_SCHEMAP_INVALID_REF_AND_SUBTYPE, /* 1720 */ + XML_SCHEMAP_INVALID_WHITE_SPACE, /* 1721 */ + XML_SCHEMAP_NOATTR_NOREF, /* 1722 */ + XML_SCHEMAP_NOTATION_NO_NAME, /* 1723 */ + XML_SCHEMAP_NOTYPE_NOREF, /* 1724 */ + XML_SCHEMAP_REF_AND_SUBTYPE, /* 1725 */ + XML_SCHEMAP_RESTRICTION_NONAME_NOREF, /* 1726 */ + XML_SCHEMAP_SIMPLETYPE_NONAME, /* 1727 */ + XML_SCHEMAP_TYPE_AND_SUBTYPE, /* 1728 */ + XML_SCHEMAP_UNKNOWN_ALL_CHILD, /* 1729 */ + XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD, /* 1730 */ + XML_SCHEMAP_UNKNOWN_ATTR_CHILD, /* 1731 */ + XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD, /* 1732 */ + XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP, /* 1733 */ + XML_SCHEMAP_UNKNOWN_BASE_TYPE, /* 1734 */ + XML_SCHEMAP_UNKNOWN_CHOICE_CHILD, /* 1735 */ + XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD, /* 1736 */ + XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD, /* 1737 */ + XML_SCHEMAP_UNKNOWN_ELEM_CHILD, /* 1738 */ + XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD, /* 1739 */ + XML_SCHEMAP_UNKNOWN_FACET_CHILD, /* 1740 */ + XML_SCHEMAP_UNKNOWN_FACET_TYPE, /* 1741 */ + XML_SCHEMAP_UNKNOWN_GROUP_CHILD, /* 1742 */ + XML_SCHEMAP_UNKNOWN_IMPORT_CHILD, /* 1743 */ + XML_SCHEMAP_UNKNOWN_LIST_CHILD, /* 1744 */ + XML_SCHEMAP_UNKNOWN_NOTATION_CHILD, /* 1745 */ + XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD, /* 1746 */ + XML_SCHEMAP_UNKNOWN_REF, /* 1747 */ + XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD, /* 1748 */ + XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD, /* 1749 */ + XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD, /* 1750 */ + XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD, /* 1751 */ + XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD, /* 1752 */ + XML_SCHEMAP_UNKNOWN_TYPE, /* 1753 */ + XML_SCHEMAP_UNKNOWN_UNION_CHILD, /* 1754 */ + XML_SCHEMAP_ELEM_DEFAULT_FIXED, /* 1755 */ + XML_SCHEMAP_REGEXP_INVALID, /* 1756 */ + XML_SCHEMAP_FAILED_LOAD, /* 1757 */ + XML_SCHEMAP_NOTHING_TO_PARSE, /* 1758 */ + XML_SCHEMAP_NOROOT, /* 1759 */ + XML_SCHEMAP_REDEFINED_GROUP, /* 1760 */ + XML_SCHEMAP_REDEFINED_TYPE, /* 1761 */ + XML_SCHEMAP_REDEFINED_ELEMENT, /* 1762 */ + XML_SCHEMAP_REDEFINED_ATTRGROUP, /* 1763 */ + XML_SCHEMAP_REDEFINED_ATTR, /* 1764 */ + XML_SCHEMAP_REDEFINED_NOTATION, /* 1765 */ + XML_SCHEMAP_FAILED_PARSE, /* 1766 */ + XML_SCHEMAP_UNKNOWN_PREFIX, /* 1767 */ + XML_SCHEMAP_DEF_AND_PREFIX, /* 1768 */ + XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD, /* 1769 */ + XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI, /* 1770 */ + XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI, /* 1771 */ + XML_SCHEMAP_NOT_SCHEMA, /* 1772 */ + XML_SCHEMAP_UNKNOWN_MEMBER_TYPE, /* 1773 */ + XML_SCHEMAP_INVALID_ATTR_USE, /* 1774 */ + XML_SCHEMAP_RECURSIVE, /* 1775 */ + XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE, /* 1776 */ + XML_SCHEMAP_INVALID_ATTR_COMBINATION, /* 1777 */ + XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION, /* 1778 */ + XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD, /* 1779 */ + XML_SCHEMAP_INVALID_ATTR_NAME, /* 1780 */ + XML_SCHEMAP_REF_AND_CONTENT, /* 1781 */ + XML_SCHEMAP_CT_PROPS_CORRECT_1, /* 1782 */ + XML_SCHEMAP_CT_PROPS_CORRECT_2, /* 1783 */ + XML_SCHEMAP_CT_PROPS_CORRECT_3, /* 1784 */ + XML_SCHEMAP_CT_PROPS_CORRECT_4, /* 1785 */ + XML_SCHEMAP_CT_PROPS_CORRECT_5, /* 1786 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1, /* 1787 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1, /* 1788 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2, /* 1789 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2, /* 1790 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3, /* 1791 */ + XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER, /* 1792 */ + XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE, /* 1793 */ + XML_SCHEMAP_UNION_NOT_EXPRESSIBLE, /* 1794 */ + XML_SCHEMAP_SRC_IMPORT_3_1, /* 1795 */ + XML_SCHEMAP_SRC_IMPORT_3_2, /* 1796 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1, /* 1797 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2, /* 1798 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3, /* 1799 */ + XML_SCHEMAP_COS_CT_EXTENDS_1_3, /* 1800 */ + XML_SCHEMAV_NOROOT = 1801, + XML_SCHEMAV_UNDECLAREDELEM, /* 1802 */ + XML_SCHEMAV_NOTTOPLEVEL, /* 1803 */ + XML_SCHEMAV_MISSING, /* 1804 */ + XML_SCHEMAV_WRONGELEM, /* 1805 */ + XML_SCHEMAV_NOTYPE, /* 1806 */ + XML_SCHEMAV_NOROLLBACK, /* 1807 */ + XML_SCHEMAV_ISABSTRACT, /* 1808 */ + XML_SCHEMAV_NOTEMPTY, /* 1809 */ + XML_SCHEMAV_ELEMCONT, /* 1810 */ + XML_SCHEMAV_HAVEDEFAULT, /* 1811 */ + XML_SCHEMAV_NOTNILLABLE, /* 1812 */ + XML_SCHEMAV_EXTRACONTENT, /* 1813 */ + XML_SCHEMAV_INVALIDATTR, /* 1814 */ + XML_SCHEMAV_INVALIDELEM, /* 1815 */ + XML_SCHEMAV_NOTDETERMINIST, /* 1816 */ + XML_SCHEMAV_CONSTRUCT, /* 1817 */ + XML_SCHEMAV_INTERNAL, /* 1818 */ + XML_SCHEMAV_NOTSIMPLE, /* 1819 */ + XML_SCHEMAV_ATTRUNKNOWN, /* 1820 */ + XML_SCHEMAV_ATTRINVALID, /* 1821 */ + XML_SCHEMAV_VALUE, /* 1822 */ + XML_SCHEMAV_FACET, /* 1823 */ + XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1, /* 1824 */ + XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2, /* 1825 */ + XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3, /* 1826 */ + XML_SCHEMAV_CVC_TYPE_3_1_1, /* 1827 */ + XML_SCHEMAV_CVC_TYPE_3_1_2, /* 1828 */ + XML_SCHEMAV_CVC_FACET_VALID, /* 1829 */ + XML_SCHEMAV_CVC_LENGTH_VALID, /* 1830 */ + XML_SCHEMAV_CVC_MINLENGTH_VALID, /* 1831 */ + XML_SCHEMAV_CVC_MAXLENGTH_VALID, /* 1832 */ + XML_SCHEMAV_CVC_MININCLUSIVE_VALID, /* 1833 */ + XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID, /* 1834 */ + XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID, /* 1835 */ + XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID, /* 1836 */ + XML_SCHEMAV_CVC_TOTALDIGITS_VALID, /* 1837 */ + XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID, /* 1838 */ + XML_SCHEMAV_CVC_PATTERN_VALID, /* 1839 */ + XML_SCHEMAV_CVC_ENUMERATION_VALID, /* 1840 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1, /* 1841 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2, /* 1842 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3, /* 1843 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4, /* 1844 */ + XML_SCHEMAV_CVC_ELT_1, /* 1845 */ + XML_SCHEMAV_CVC_ELT_2, /* 1846 */ + XML_SCHEMAV_CVC_ELT_3_1, /* 1847 */ + XML_SCHEMAV_CVC_ELT_3_2_1, /* 1848 */ + XML_SCHEMAV_CVC_ELT_3_2_2, /* 1849 */ + XML_SCHEMAV_CVC_ELT_4_1, /* 1850 */ + XML_SCHEMAV_CVC_ELT_4_2, /* 1851 */ + XML_SCHEMAV_CVC_ELT_4_3, /* 1852 */ + XML_SCHEMAV_CVC_ELT_5_1_1, /* 1853 */ + XML_SCHEMAV_CVC_ELT_5_1_2, /* 1854 */ + XML_SCHEMAV_CVC_ELT_5_2_1, /* 1855 */ + XML_SCHEMAV_CVC_ELT_5_2_2_1, /* 1856 */ + XML_SCHEMAV_CVC_ELT_5_2_2_2_1, /* 1857 */ + XML_SCHEMAV_CVC_ELT_5_2_2_2_2, /* 1858 */ + XML_SCHEMAV_CVC_ELT_6, /* 1859 */ + XML_SCHEMAV_CVC_ELT_7, /* 1860 */ + XML_SCHEMAV_CVC_ATTRIBUTE_1, /* 1861 */ + XML_SCHEMAV_CVC_ATTRIBUTE_2, /* 1862 */ + XML_SCHEMAV_CVC_ATTRIBUTE_3, /* 1863 */ + XML_SCHEMAV_CVC_ATTRIBUTE_4, /* 1864 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1, /* 1865 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1, /* 1866 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2, /* 1867 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_4, /* 1868 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1, /* 1869 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2, /* 1870 */ + XML_SCHEMAV_ELEMENT_CONTENT, /* 1871 */ + XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING, /* 1872 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_1, /* 1873 */ + XML_SCHEMAV_CVC_AU, /* 1874 */ + XML_SCHEMAV_CVC_TYPE_1, /* 1875 */ + XML_SCHEMAV_CVC_TYPE_2, /* 1876 */ + XML_SCHEMAV_CVC_IDC, /* 1877 */ + XML_SCHEMAV_CVC_WILDCARD, /* 1878 */ + XML_SCHEMAV_MISC, /* 1879 */ + XML_XPTR_UNKNOWN_SCHEME = 1900, + XML_XPTR_CHILDSEQ_START, /* 1901 */ + XML_XPTR_EVAL_FAILED, /* 1902 */ + XML_XPTR_EXTRA_OBJECTS, /* 1903 */ + XML_C14N_CREATE_CTXT = 1950, + XML_C14N_REQUIRES_UTF8, /* 1951 */ + XML_C14N_CREATE_STACK, /* 1952 */ + XML_C14N_INVALID_NODE, /* 1953 */ + XML_C14N_UNKNOW_NODE, /* 1954 */ + XML_C14N_RELATIVE_NAMESPACE, /* 1955 */ + XML_FTP_PASV_ANSWER = 2000, + XML_FTP_EPSV_ANSWER, /* 2001 */ + XML_FTP_ACCNT, /* 2002 */ + XML_FTP_URL_SYNTAX, /* 2003 */ + XML_HTTP_URL_SYNTAX = 2020, + XML_HTTP_USE_IP, /* 2021 */ + XML_HTTP_UNKNOWN_HOST, /* 2022 */ + XML_SCHEMAP_SRC_SIMPLE_TYPE_1 = 3000, + XML_SCHEMAP_SRC_SIMPLE_TYPE_2, /* 3001 */ + XML_SCHEMAP_SRC_SIMPLE_TYPE_3, /* 3002 */ + XML_SCHEMAP_SRC_SIMPLE_TYPE_4, /* 3003 */ + XML_SCHEMAP_SRC_RESOLVE, /* 3004 */ + XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE, /* 3005 */ + XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE, /* 3006 */ + XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES, /* 3007 */ + XML_SCHEMAP_ST_PROPS_CORRECT_1, /* 3008 */ + XML_SCHEMAP_ST_PROPS_CORRECT_2, /* 3009 */ + XML_SCHEMAP_ST_PROPS_CORRECT_3, /* 3010 */ + XML_SCHEMAP_COS_ST_RESTRICTS_1_1, /* 3011 */ + XML_SCHEMAP_COS_ST_RESTRICTS_1_2, /* 3012 */ + XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1, /* 3013 */ + XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2, /* 3014 */ + XML_SCHEMAP_COS_ST_RESTRICTS_2_1, /* 3015 */ + XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1, /* 3016 */ + XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2, /* 3017 */ + XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1, /* 3018 */ + XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2, /* 3019 */ + XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3, /* 3020 */ + XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4, /* 3021 */ + XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5, /* 3022 */ + XML_SCHEMAP_COS_ST_RESTRICTS_3_1, /* 3023 */ + XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1, /* 3024 */ + XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2, /* 3025 */ + XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2, /* 3026 */ + XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1, /* 3027 */ + XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3, /* 3028 */ + XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4, /* 3029 */ + XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5, /* 3030 */ + XML_SCHEMAP_COS_ST_DERIVED_OK_2_1, /* 3031 */ + XML_SCHEMAP_COS_ST_DERIVED_OK_2_2, /* 3032 */ + XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED, /* 3033 */ + XML_SCHEMAP_S4S_ELEM_MISSING, /* 3034 */ + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, /* 3035 */ + XML_SCHEMAP_S4S_ATTR_MISSING, /* 3036 */ + XML_SCHEMAP_S4S_ATTR_INVALID_VALUE, /* 3037 */ + XML_SCHEMAP_SRC_ELEMENT_1, /* 3038 */ + XML_SCHEMAP_SRC_ELEMENT_2_1, /* 3039 */ + XML_SCHEMAP_SRC_ELEMENT_2_2, /* 3040 */ + XML_SCHEMAP_SRC_ELEMENT_3, /* 3041 */ + XML_SCHEMAP_P_PROPS_CORRECT_1, /* 3042 */ + XML_SCHEMAP_P_PROPS_CORRECT_2_1, /* 3043 */ + XML_SCHEMAP_P_PROPS_CORRECT_2_2, /* 3044 */ + XML_SCHEMAP_E_PROPS_CORRECT_2, /* 3045 */ + XML_SCHEMAP_E_PROPS_CORRECT_3, /* 3046 */ + XML_SCHEMAP_E_PROPS_CORRECT_4, /* 3047 */ + XML_SCHEMAP_E_PROPS_CORRECT_5, /* 3048 */ + XML_SCHEMAP_E_PROPS_CORRECT_6, /* 3049 */ + XML_SCHEMAP_SRC_INCLUDE, /* 3050 */ + XML_SCHEMAP_SRC_ATTRIBUTE_1, /* 3051 */ + XML_SCHEMAP_SRC_ATTRIBUTE_2, /* 3052 */ + XML_SCHEMAP_SRC_ATTRIBUTE_3_1, /* 3053 */ + XML_SCHEMAP_SRC_ATTRIBUTE_3_2, /* 3054 */ + XML_SCHEMAP_SRC_ATTRIBUTE_4, /* 3055 */ + XML_SCHEMAP_NO_XMLNS, /* 3056 */ + XML_SCHEMAP_NO_XSI, /* 3057 */ + XML_SCHEMAP_COS_VALID_DEFAULT_1, /* 3058 */ + XML_SCHEMAP_COS_VALID_DEFAULT_2_1, /* 3059 */ + XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1, /* 3060 */ + XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2, /* 3061 */ + XML_SCHEMAP_CVC_SIMPLE_TYPE, /* 3062 */ + XML_SCHEMAP_COS_CT_EXTENDS_1_1, /* 3063 */ + XML_SCHEMAP_SRC_IMPORT_1_1, /* 3064 */ + XML_SCHEMAP_SRC_IMPORT_1_2, /* 3065 */ + XML_SCHEMAP_SRC_IMPORT_2, /* 3066 */ + XML_SCHEMAP_SRC_IMPORT_2_1, /* 3067 */ + XML_SCHEMAP_SRC_IMPORT_2_2, /* 3068 */ + XML_SCHEMAP_INTERNAL, /* 3069 non-W3C */ + XML_SCHEMAP_NOT_DETERMINISTIC, /* 3070 non-W3C */ + XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1, /* 3071 */ + XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2, /* 3072 */ + XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3, /* 3073 */ + XML_SCHEMAP_MG_PROPS_CORRECT_1, /* 3074 */ + XML_SCHEMAP_MG_PROPS_CORRECT_2, /* 3075 */ + XML_SCHEMAP_SRC_CT_1, /* 3076 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3, /* 3077 */ + XML_SCHEMAP_AU_PROPS_CORRECT_2, /* 3078 */ + XML_SCHEMAP_A_PROPS_CORRECT_2, /* 3079 */ + XML_SCHEMAP_C_PROPS_CORRECT, /* 3080 */ + XML_SCHEMAP_SRC_REDEFINE, /* 3081 */ + XML_SCHEMAP_SRC_IMPORT, /* 3082 */ + XML_SCHEMAP_WARN_SKIP_SCHEMA, /* 3083 */ + XML_SCHEMAP_WARN_UNLOCATED_SCHEMA, /* 3084 */ + XML_SCHEMAP_WARN_ATTR_REDECL_PROH, /* 3085 */ + XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH, /* 3085 */ + XML_SCHEMAP_AG_PROPS_CORRECT, /* 3086 */ + XML_SCHEMAP_COS_CT_EXTENDS_1_2, /* 3087 */ + XML_SCHEMAP_AU_PROPS_CORRECT, /* 3088 */ + XML_SCHEMAP_A_PROPS_CORRECT_3, /* 3089 */ + XML_SCHEMAP_COS_ALL_LIMITED, /* 3090 */ + XML_SCHEMATRONV_ASSERT = 4000, /* 4000 */ + XML_SCHEMATRONV_REPORT, + XML_MODULE_OPEN = 4900, /* 4900 */ + XML_MODULE_CLOSE, /* 4901 */ + XML_CHECK_FOUND_ELEMENT = 5000, + XML_CHECK_FOUND_ATTRIBUTE, /* 5001 */ + XML_CHECK_FOUND_TEXT, /* 5002 */ + XML_CHECK_FOUND_CDATA, /* 5003 */ + XML_CHECK_FOUND_ENTITYREF, /* 5004 */ + XML_CHECK_FOUND_ENTITY, /* 5005 */ + XML_CHECK_FOUND_PI, /* 5006 */ + XML_CHECK_FOUND_COMMENT, /* 5007 */ + XML_CHECK_FOUND_DOCTYPE, /* 5008 */ + XML_CHECK_FOUND_FRAGMENT, /* 5009 */ + XML_CHECK_FOUND_NOTATION, /* 5010 */ + XML_CHECK_UNKNOWN_NODE, /* 5011 */ + XML_CHECK_ENTITY_TYPE, /* 5012 */ + XML_CHECK_NO_PARENT, /* 5013 */ + XML_CHECK_NO_DOC, /* 5014 */ + XML_CHECK_NO_NAME, /* 5015 */ + XML_CHECK_NO_ELEM, /* 5016 */ + XML_CHECK_WRONG_DOC, /* 5017 */ + XML_CHECK_NO_PREV, /* 5018 */ + XML_CHECK_WRONG_PREV, /* 5019 */ + XML_CHECK_NO_NEXT, /* 5020 */ + XML_CHECK_WRONG_NEXT, /* 5021 */ + XML_CHECK_NOT_DTD, /* 5022 */ + XML_CHECK_NOT_ATTR, /* 5023 */ + XML_CHECK_NOT_ATTR_DECL, /* 5024 */ + XML_CHECK_NOT_ELEM_DECL, /* 5025 */ + XML_CHECK_NOT_ENTITY_DECL, /* 5026 */ + XML_CHECK_NOT_NS_DECL, /* 5027 */ + XML_CHECK_NO_HREF, /* 5028 */ + XML_CHECK_WRONG_PARENT,/* 5029 */ + XML_CHECK_NS_SCOPE, /* 5030 */ + XML_CHECK_NS_ANCESTOR, /* 5031 */ + XML_CHECK_NOT_UTF8, /* 5032 */ + XML_CHECK_NO_DICT, /* 5033 */ + XML_CHECK_NOT_NCNAME, /* 5034 */ + XML_CHECK_OUTSIDE_DICT, /* 5035 */ + XML_CHECK_WRONG_NAME, /* 5036 */ + XML_CHECK_NAME_NOT_NULL, /* 5037 */ + XML_I18N_NO_NAME = 6000, + XML_I18N_NO_HANDLER, /* 6001 */ + XML_I18N_EXCESS_HANDLER, /* 6002 */ + XML_I18N_CONV_FAILED, /* 6003 */ + XML_I18N_NO_OUTPUT /* 6004 */ +#if 0 + XML_CHECK_, /* 5033 */ + XML_CHECK_X /* 503 */ +#endif +} xmlParserErrors; + +/** + * xmlGenericErrorFunc: + * @ctx: a parsing context + * @msg: the message + * @...: the extra arguments of the varags to format the message + * + * Signature of the function to use when there is an error and + * no parsing or validity context available . + */ +typedef void (XMLCDECL *xmlGenericErrorFunc) (void *ctx, + const char *msg, + ...) LIBXML_ATTR_FORMAT(2,3); +/** + * xmlStructuredErrorFunc: + * @userData: user provided data for the error callback + * @error: the error being raised. + * + * Signature of the function to use when there is an error and + * the module handles the new error reporting mechanism. + */ +typedef void (XMLCALL *xmlStructuredErrorFunc) (void *userData, xmlErrorPtr error); + +/* + * Use the following function to reset the two global variables + * xmlGenericError and xmlGenericErrorContext. + */ +XMLPUBFUN void XMLCALL + xmlSetGenericErrorFunc (void *ctx, + xmlGenericErrorFunc handler); +XMLPUBFUN void XMLCALL + initGenericErrorDefaultFunc (xmlGenericErrorFunc *handler); + +XMLPUBFUN void XMLCALL + xmlSetStructuredErrorFunc (void *ctx, + xmlStructuredErrorFunc handler); +/* + * Default message routines used by SAX and Valid context for error + * and warning reporting. + */ +XMLPUBFUN void XMLCDECL + xmlParserError (void *ctx, + const char *msg, + ...) LIBXML_ATTR_FORMAT(2,3); +XMLPUBFUN void XMLCDECL + xmlParserWarning (void *ctx, + const char *msg, + ...) LIBXML_ATTR_FORMAT(2,3); +XMLPUBFUN void XMLCDECL + xmlParserValidityError (void *ctx, + const char *msg, + ...) LIBXML_ATTR_FORMAT(2,3); +XMLPUBFUN void XMLCDECL + xmlParserValidityWarning (void *ctx, + const char *msg, + ...) LIBXML_ATTR_FORMAT(2,3); +XMLPUBFUN void XMLCALL + xmlParserPrintFileInfo (xmlParserInputPtr input); +XMLPUBFUN void XMLCALL + xmlParserPrintFileContext (xmlParserInputPtr input); + +/* + * Extended error information routines + */ +XMLPUBFUN xmlErrorPtr XMLCALL + xmlGetLastError (void); +XMLPUBFUN void XMLCALL + xmlResetLastError (void); +XMLPUBFUN xmlErrorPtr XMLCALL + xmlCtxtGetLastError (void *ctx); +XMLPUBFUN void XMLCALL + xmlCtxtResetLastError (void *ctx); +XMLPUBFUN void XMLCALL + xmlResetError (xmlErrorPtr err); +XMLPUBFUN int XMLCALL + xmlCopyError (xmlErrorPtr from, + xmlErrorPtr to); + +#ifdef IN_LIBXML +/* + * Internal callback reporting routine + */ +XMLPUBFUN void XMLCALL + __xmlRaiseError (xmlStructuredErrorFunc schannel, + xmlGenericErrorFunc channel, + void *data, + void *ctx, + void *node, + int domain, + int code, + xmlErrorLevel level, + const char *file, + int line, + const char *str1, + const char *str2, + const char *str3, + int int1, + int col, + const char *msg, + ...) LIBXML_ATTR_FORMAT(16,17); +XMLPUBFUN void XMLCALL + __xmlSimpleError (int domain, + int code, + xmlNodePtr node, + const char *msg, + const char *extra); +#endif +#ifdef __cplusplus +} +#endif +#endif /* __XML_ERROR_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlexports.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlexports.h new file mode 100644 index 0000000000..9c6790c80f --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlexports.h @@ -0,0 +1,162 @@ +/* + * Summary: macros for marking symbols as exportable/importable. + * Description: macros for marking symbols as exportable/importable. + * + * Copy: See Copyright for the status of this software. + * + * Author: Igor Zlatovic <igor@zlatkovic.com> + */ + +#ifndef __XML_EXPORTS_H__ +#define __XML_EXPORTS_H__ + +/** + * XMLPUBFUN, XMLPUBVAR, XMLCALL + * + * Macros which declare an exportable function, an exportable variable and + * the calling convention used for functions. + * + * Please use an extra block for every platform/compiler combination when + * modifying this, rather than overlong #ifdef lines. This helps + * readability as well as the fact that different compilers on the same + * platform might need different definitions. + */ + +/** + * XMLPUBFUN: + * + * Macros which declare an exportable function + */ +#define XMLPUBFUN +/** + * XMLPUBVAR: + * + * Macros which declare an exportable variable + */ +#define XMLPUBVAR extern +/** + * XMLCALL: + * + * Macros which declare the called convention for exported functions + */ +#define XMLCALL +/** + * XMLCDECL: + * + * Macro which declares the calling convention for exported functions that + * use '...'. + */ +#define XMLCDECL + +/** DOC_DISABLE */ + +/* Windows platform with MS compiler */ +#if defined(_WIN32) && defined(_MSC_VER) + #undef XMLPUBFUN + #undef XMLPUBVAR + #undef XMLCALL + #undef XMLCDECL + #if defined(IN_LIBXML) && !defined(LIBXML_STATIC) + #define XMLPUBFUN __declspec(dllexport) + #define XMLPUBVAR __declspec(dllexport) + #else + #define XMLPUBFUN + #if !defined(LIBXML_STATIC) + #define XMLPUBVAR __declspec(dllimport) extern + #else + #define XMLPUBVAR extern + #endif + #endif + #if defined(LIBXML_FASTCALL) + #define XMLCALL __fastcall + #else + #define XMLCALL __cdecl + #endif + #define XMLCDECL __cdecl + #if !defined _REENTRANT + #define _REENTRANT + #endif +#endif + +/* Windows platform with Borland compiler */ +#if defined(_WIN32) && defined(__BORLANDC__) + #undef XMLPUBFUN + #undef XMLPUBVAR + #undef XMLCALL + #undef XMLCDECL + #if defined(IN_LIBXML) && !defined(LIBXML_STATIC) + #define XMLPUBFUN __declspec(dllexport) + #define XMLPUBVAR __declspec(dllexport) extern + #else + #define XMLPUBFUN + #if !defined(LIBXML_STATIC) + #define XMLPUBVAR __declspec(dllimport) extern + #else + #define XMLPUBVAR extern + #endif + #endif + #define XMLCALL __cdecl + #define XMLCDECL __cdecl + #if !defined _REENTRANT + #define _REENTRANT + #endif +#endif + +/* Windows platform with GNU compiler (Mingw) */ +#if defined(_WIN32) && defined(__MINGW32__) + #undef XMLPUBFUN + #undef XMLPUBVAR + #undef XMLCALL + #undef XMLCDECL + /* + * if defined(IN_LIBXML) this raises problems on mingw with msys + * _imp__xmlFree listed as missing. Try to workaround the problem + * by also making that declaration when compiling client code. + */ + #if defined(IN_LIBXML) && !defined(LIBXML_STATIC) + #define XMLPUBFUN __declspec(dllexport) + #define XMLPUBVAR __declspec(dllexport) + #else + #define XMLPUBFUN + #if !defined(LIBXML_STATIC) + #define XMLPUBVAR __declspec(dllimport) extern + #else + #define XMLPUBVAR extern + #endif + #endif + #define XMLCALL __cdecl + #define XMLCDECL __cdecl + #if !defined _REENTRANT + #define _REENTRANT + #endif +#endif + +/* Cygwin platform, GNU compiler */ +#if defined(_WIN32) && defined(__CYGWIN__) + #undef XMLPUBFUN + #undef XMLPUBVAR + #undef XMLCALL + #undef XMLCDECL + #if defined(IN_LIBXML) && !defined(LIBXML_STATIC) + #define XMLPUBFUN __declspec(dllexport) + #define XMLPUBVAR __declspec(dllexport) + #else + #define XMLPUBFUN + #if !defined(LIBXML_STATIC) + #define XMLPUBVAR __declspec(dllimport) extern + #else + #define XMLPUBVAR + #endif + #endif + #define XMLCALL __cdecl + #define XMLCDECL __cdecl +#endif + +/* Compatibility */ +#if !defined(LIBXML_DLL_IMPORT) +#define LIBXML_DLL_IMPORT XMLPUBVAR +#endif + +#endif /* __XML_EXPORTS_H__ */ + + diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlmemory.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlmemory.h new file mode 100644 index 0000000000..17e375a3c9 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlmemory.h @@ -0,0 +1,224 @@ +/* + * Summary: interface for the memory allocator + * Description: provides interfaces for the memory allocator, + * including debugging capabilities. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + + +#ifndef __DEBUG_MEMORY_ALLOC__ +#define __DEBUG_MEMORY_ALLOC__ + +#include <stdio.h> +#include <libxml/xmlversion.h> + +/** + * DEBUG_MEMORY: + * + * DEBUG_MEMORY replaces the allocator with a collect and debug + * shell to the libc allocator. + * DEBUG_MEMORY should only be activated when debugging + * libxml i.e. if libxml has been configured with --with-debug-mem too. + */ +/* #define DEBUG_MEMORY_FREED */ +/* #define DEBUG_MEMORY_LOCATION */ + +#ifdef DEBUG +#ifndef DEBUG_MEMORY +#define DEBUG_MEMORY +#endif +#endif + +/** + * DEBUG_MEMORY_LOCATION: + * + * DEBUG_MEMORY_LOCATION should be activated only when debugging + * libxml i.e. if libxml has been configured with --with-debug-mem too. + */ +#ifdef DEBUG_MEMORY_LOCATION +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * The XML memory wrapper support 4 basic overloadable functions. + */ +/** + * xmlFreeFunc: + * @mem: an already allocated block of memory + * + * Signature for a free() implementation. + */ +typedef void (XMLCALL *xmlFreeFunc)(void *mem); +/** + * xmlMallocFunc: + * @size: the size requested in bytes + * + * Signature for a malloc() implementation. + * + * Returns a pointer to the newly allocated block or NULL in case of error. + */ +typedef void *(LIBXML_ATTR_ALLOC_SIZE(1) XMLCALL *xmlMallocFunc)(size_t size); + +/** + * xmlReallocFunc: + * @mem: an already allocated block of memory + * @size: the new size requested in bytes + * + * Signature for a realloc() implementation. + * + * Returns a pointer to the newly reallocated block or NULL in case of error. + */ +typedef void *(XMLCALL *xmlReallocFunc)(void *mem, size_t size); + +/** + * xmlStrdupFunc: + * @str: a zero terminated string + * + * Signature for an strdup() implementation. + * + * Returns the copy of the string or NULL in case of error. + */ +typedef char *(XMLCALL *xmlStrdupFunc)(const char *str); + +/* + * The 4 interfaces used for all memory handling within libxml. +LIBXML_DLL_IMPORT xmlFreeFunc xmlFree; +LIBXML_DLL_IMPORT xmlMallocFunc xmlMalloc; +LIBXML_DLL_IMPORT xmlMallocFunc xmlMallocAtomic; +LIBXML_DLL_IMPORT xmlReallocFunc xmlRealloc; +LIBXML_DLL_IMPORT xmlStrdupFunc xmlMemStrdup; + */ + +/* + * The way to overload the existing functions. + * The xmlGc function have an extra entry for atomic block + * allocations useful for garbage collected memory allocators + */ +XMLPUBFUN int XMLCALL + xmlMemSetup (xmlFreeFunc freeFunc, + xmlMallocFunc mallocFunc, + xmlReallocFunc reallocFunc, + xmlStrdupFunc strdupFunc); +XMLPUBFUN int XMLCALL + xmlMemGet (xmlFreeFunc *freeFunc, + xmlMallocFunc *mallocFunc, + xmlReallocFunc *reallocFunc, + xmlStrdupFunc *strdupFunc); +XMLPUBFUN int XMLCALL + xmlGcMemSetup (xmlFreeFunc freeFunc, + xmlMallocFunc mallocFunc, + xmlMallocFunc mallocAtomicFunc, + xmlReallocFunc reallocFunc, + xmlStrdupFunc strdupFunc); +XMLPUBFUN int XMLCALL + xmlGcMemGet (xmlFreeFunc *freeFunc, + xmlMallocFunc *mallocFunc, + xmlMallocFunc *mallocAtomicFunc, + xmlReallocFunc *reallocFunc, + xmlStrdupFunc *strdupFunc); + +/* + * Initialization of the memory layer. + */ +XMLPUBFUN int XMLCALL + xmlInitMemory (void); + +/* + * Cleanup of the memory layer. + */ +XMLPUBFUN void XMLCALL + xmlCleanupMemory (void); +/* + * These are specific to the XML debug memory wrapper. + */ +XMLPUBFUN int XMLCALL + xmlMemUsed (void); +XMLPUBFUN int XMLCALL + xmlMemBlocks (void); +XMLPUBFUN void XMLCALL + xmlMemDisplay (FILE *fp); +XMLPUBFUN void XMLCALL + xmlMemDisplayLast(FILE *fp, long nbBytes); +XMLPUBFUN void XMLCALL + xmlMemShow (FILE *fp, int nr); +XMLPUBFUN void XMLCALL + xmlMemoryDump (void); +XMLPUBFUN void * XMLCALL + xmlMemMalloc (size_t size) LIBXML_ATTR_ALLOC_SIZE(1); +XMLPUBFUN void * XMLCALL + xmlMemRealloc (void *ptr,size_t size); +XMLPUBFUN void XMLCALL + xmlMemFree (void *ptr); +XMLPUBFUN char * XMLCALL + xmlMemoryStrdup (const char *str); +XMLPUBFUN void * XMLCALL + xmlMallocLoc (size_t size, const char *file, int line) LIBXML_ATTR_ALLOC_SIZE(1); +XMLPUBFUN void * XMLCALL + xmlReallocLoc (void *ptr, size_t size, const char *file, int line); +XMLPUBFUN void * XMLCALL + xmlMallocAtomicLoc (size_t size, const char *file, int line) LIBXML_ATTR_ALLOC_SIZE(1); +XMLPUBFUN char * XMLCALL + xmlMemStrdupLoc (const char *str, const char *file, int line); + + +#ifdef DEBUG_MEMORY_LOCATION +/** + * xmlMalloc: + * @size: number of bytes to allocate + * + * Wrapper for the malloc() function used in the XML library. + * + * Returns the pointer to the allocated area or NULL in case of error. + */ +#define xmlMalloc(size) xmlMallocLoc((size), __FILE__, __LINE__) +/** + * xmlMallocAtomic: + * @size: number of bytes to allocate + * + * Wrapper for the malloc() function used in the XML library for allocation + * of block not containing pointers to other areas. + * + * Returns the pointer to the allocated area or NULL in case of error. + */ +#define xmlMallocAtomic(size) xmlMallocAtomicLoc((size), __FILE__, __LINE__) +/** + * xmlRealloc: + * @ptr: pointer to the existing allocated area + * @size: number of bytes to allocate + * + * Wrapper for the realloc() function used in the XML library. + * + * Returns the pointer to the allocated area or NULL in case of error. + */ +#define xmlRealloc(ptr, size) xmlReallocLoc((ptr), (size), __FILE__, __LINE__) +/** + * xmlMemStrdup: + * @str: pointer to the existing string + * + * Wrapper for the strdup() function, xmlStrdup() is usually preferred. + * + * Returns the pointer to the allocated area or NULL in case of error. + */ +#define xmlMemStrdup(str) xmlMemStrdupLoc((str), __FILE__, __LINE__) + +#endif /* DEBUG_MEMORY_LOCATION */ + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#ifndef __XML_GLOBALS_H +#ifndef __XML_THREADS_H__ +#include <libxml/threads.h> +#include <libxml/globals.h> +#endif +#endif + +#endif /* __DEBUG_MEMORY_ALLOC__ */ + diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlmodule.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlmodule.h new file mode 100644 index 0000000000..8f4a56035b --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlmodule.h @@ -0,0 +1,57 @@ +/* + * Summary: dynamic module loading + * Description: basic API for dynamic module loading, used by + * libexslt added in 2.6.17 + * + * Copy: See Copyright for the status of this software. + * + * Author: Joel W. Reed + */ + +#ifndef __XML_MODULE_H__ +#define __XML_MODULE_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_MODULES_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlModulePtr: + * + * A handle to a dynamically loaded module + */ +typedef struct _xmlModule xmlModule; +typedef xmlModule *xmlModulePtr; + +/** + * xmlModuleOption: + * + * enumeration of options that can be passed down to xmlModuleOpen() + */ +typedef enum { + XML_MODULE_LAZY = 1, /* lazy binding */ + XML_MODULE_LOCAL= 2 /* local binding */ +} xmlModuleOption; + +XMLPUBFUN xmlModulePtr XMLCALL xmlModuleOpen (const char *filename, + int options); + +XMLPUBFUN int XMLCALL xmlModuleSymbol (xmlModulePtr module, + const char* name, + void **result); + +XMLPUBFUN int XMLCALL xmlModuleClose (xmlModulePtr module); + +XMLPUBFUN int XMLCALL xmlModuleFree (xmlModulePtr module); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_MODULES_ENABLED */ + +#endif /*__XML_MODULE_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlreader.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlreader.h new file mode 100644 index 0000000000..696448258b --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlreader.h @@ -0,0 +1,424 @@ +/* + * Summary: the XMLReader implementation + * Description: API of the XML streaming API based on C# interfaces. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_XMLREADER_H__ +#define __XML_XMLREADER_H__ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> +#include <libxml/xmlIO.h> +#ifdef LIBXML_SCHEMAS_ENABLED +#include <libxml/relaxng.h> +#include <libxml/xmlschemas.h> +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlParserSeverities: + * + * How severe an error callback is when the per-reader error callback API + * is used. + */ +typedef enum { + XML_PARSER_SEVERITY_VALIDITY_WARNING = 1, + XML_PARSER_SEVERITY_VALIDITY_ERROR = 2, + XML_PARSER_SEVERITY_WARNING = 3, + XML_PARSER_SEVERITY_ERROR = 4 +} xmlParserSeverities; + +#ifdef LIBXML_READER_ENABLED + +/** + * xmlTextReaderMode: + * + * Internal state values for the reader. + */ +typedef enum { + XML_TEXTREADER_MODE_INITIAL = 0, + XML_TEXTREADER_MODE_INTERACTIVE = 1, + XML_TEXTREADER_MODE_ERROR = 2, + XML_TEXTREADER_MODE_EOF =3, + XML_TEXTREADER_MODE_CLOSED = 4, + XML_TEXTREADER_MODE_READING = 5 +} xmlTextReaderMode; + +/** + * xmlParserProperties: + * + * Some common options to use with xmlTextReaderSetParserProp, but it + * is better to use xmlParserOption and the xmlReaderNewxxx and + * xmlReaderForxxx APIs now. + */ +typedef enum { + XML_PARSER_LOADDTD = 1, + XML_PARSER_DEFAULTATTRS = 2, + XML_PARSER_VALIDATE = 3, + XML_PARSER_SUBST_ENTITIES = 4 +} xmlParserProperties; + +/** + * xmlReaderTypes: + * + * Predefined constants for the different types of nodes. + */ +typedef enum { + XML_READER_TYPE_NONE = 0, + XML_READER_TYPE_ELEMENT = 1, + XML_READER_TYPE_ATTRIBUTE = 2, + XML_READER_TYPE_TEXT = 3, + XML_READER_TYPE_CDATA = 4, + XML_READER_TYPE_ENTITY_REFERENCE = 5, + XML_READER_TYPE_ENTITY = 6, + XML_READER_TYPE_PROCESSING_INSTRUCTION = 7, + XML_READER_TYPE_COMMENT = 8, + XML_READER_TYPE_DOCUMENT = 9, + XML_READER_TYPE_DOCUMENT_TYPE = 10, + XML_READER_TYPE_DOCUMENT_FRAGMENT = 11, + XML_READER_TYPE_NOTATION = 12, + XML_READER_TYPE_WHITESPACE = 13, + XML_READER_TYPE_SIGNIFICANT_WHITESPACE = 14, + XML_READER_TYPE_END_ELEMENT = 15, + XML_READER_TYPE_END_ENTITY = 16, + XML_READER_TYPE_XML_DECLARATION = 17 +} xmlReaderTypes; + +/** + * xmlTextReader: + * + * Structure for an xmlReader context. + */ +typedef struct _xmlTextReader xmlTextReader; + +/** + * xmlTextReaderPtr: + * + * Pointer to an xmlReader context. + */ +typedef xmlTextReader *xmlTextReaderPtr; + +/* + * Constructors & Destructor + */ +XMLPUBFUN xmlTextReaderPtr XMLCALL + xmlNewTextReader (xmlParserInputBufferPtr input, + const char *URI); +XMLPUBFUN xmlTextReaderPtr XMLCALL + xmlNewTextReaderFilename(const char *URI); + +XMLPUBFUN void XMLCALL + xmlFreeTextReader (xmlTextReaderPtr reader); + +XMLPUBFUN int XMLCALL + xmlTextReaderSetup(xmlTextReaderPtr reader, + xmlParserInputBufferPtr input, const char *URL, + const char *encoding, int options); + +/* + * Iterators + */ +XMLPUBFUN int XMLCALL + xmlTextReaderRead (xmlTextReaderPtr reader); + +#ifdef LIBXML_WRITER_ENABLED +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderReadInnerXml (xmlTextReaderPtr reader); + +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderReadOuterXml (xmlTextReaderPtr reader); +#endif + +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderReadString (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderReadAttributeValue (xmlTextReaderPtr reader); + +/* + * Attributes of the node + */ +XMLPUBFUN int XMLCALL + xmlTextReaderAttributeCount(xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderDepth (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderHasAttributes(xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderHasValue(xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderIsDefault (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderIsEmptyElement(xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderNodeType (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderQuoteChar (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderReadState (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderIsNamespaceDecl(xmlTextReaderPtr reader); + +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstBaseUri (xmlTextReaderPtr reader); +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstLocalName (xmlTextReaderPtr reader); +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstName (xmlTextReaderPtr reader); +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstNamespaceUri(xmlTextReaderPtr reader); +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstPrefix (xmlTextReaderPtr reader); +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstXmlLang (xmlTextReaderPtr reader); +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstString (xmlTextReaderPtr reader, + const xmlChar *str); +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstValue (xmlTextReaderPtr reader); + +/* + * use the Const version of the routine for + * better performance and simpler code + */ +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderBaseUri (xmlTextReaderPtr reader); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderLocalName (xmlTextReaderPtr reader); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderName (xmlTextReaderPtr reader); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderNamespaceUri(xmlTextReaderPtr reader); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderPrefix (xmlTextReaderPtr reader); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderXmlLang (xmlTextReaderPtr reader); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderValue (xmlTextReaderPtr reader); + +/* + * Methods of the XmlTextReader + */ +XMLPUBFUN int XMLCALL + xmlTextReaderClose (xmlTextReaderPtr reader); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderGetAttributeNo (xmlTextReaderPtr reader, + int no); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderGetAttribute (xmlTextReaderPtr reader, + const xmlChar *name); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderGetAttributeNs (xmlTextReaderPtr reader, + const xmlChar *localName, + const xmlChar *namespaceURI); +XMLPUBFUN xmlParserInputBufferPtr XMLCALL + xmlTextReaderGetRemainder (xmlTextReaderPtr reader); +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderLookupNamespace(xmlTextReaderPtr reader, + const xmlChar *prefix); +XMLPUBFUN int XMLCALL + xmlTextReaderMoveToAttributeNo(xmlTextReaderPtr reader, + int no); +XMLPUBFUN int XMLCALL + xmlTextReaderMoveToAttribute(xmlTextReaderPtr reader, + const xmlChar *name); +XMLPUBFUN int XMLCALL + xmlTextReaderMoveToAttributeNs(xmlTextReaderPtr reader, + const xmlChar *localName, + const xmlChar *namespaceURI); +XMLPUBFUN int XMLCALL + xmlTextReaderMoveToFirstAttribute(xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderMoveToNextAttribute(xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderMoveToElement (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderNormalization (xmlTextReaderPtr reader); +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstEncoding (xmlTextReaderPtr reader); + +/* + * Extensions + */ +XMLPUBFUN int XMLCALL + xmlTextReaderSetParserProp (xmlTextReaderPtr reader, + int prop, + int value); +XMLPUBFUN int XMLCALL + xmlTextReaderGetParserProp (xmlTextReaderPtr reader, + int prop); +XMLPUBFUN xmlNodePtr XMLCALL + xmlTextReaderCurrentNode (xmlTextReaderPtr reader); + +XMLPUBFUN int XMLCALL + xmlTextReaderGetParserLineNumber(xmlTextReaderPtr reader); + +XMLPUBFUN int XMLCALL + xmlTextReaderGetParserColumnNumber(xmlTextReaderPtr reader); + +XMLPUBFUN xmlNodePtr XMLCALL + xmlTextReaderPreserve (xmlTextReaderPtr reader); +#ifdef LIBXML_PATTERN_ENABLED +XMLPUBFUN int XMLCALL + xmlTextReaderPreservePattern(xmlTextReaderPtr reader, + const xmlChar *pattern, + const xmlChar **namespaces); +#endif /* LIBXML_PATTERN_ENABLED */ +XMLPUBFUN xmlDocPtr XMLCALL + xmlTextReaderCurrentDoc (xmlTextReaderPtr reader); +XMLPUBFUN xmlNodePtr XMLCALL + xmlTextReaderExpand (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderNext (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderNextSibling (xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderIsValid (xmlTextReaderPtr reader); +#ifdef LIBXML_SCHEMAS_ENABLED +XMLPUBFUN int XMLCALL + xmlTextReaderRelaxNGValidate(xmlTextReaderPtr reader, + const char *rng); +XMLPUBFUN int XMLCALL + xmlTextReaderRelaxNGSetSchema(xmlTextReaderPtr reader, + xmlRelaxNGPtr schema); +XMLPUBFUN int XMLCALL + xmlTextReaderSchemaValidate (xmlTextReaderPtr reader, + const char *xsd); +XMLPUBFUN int XMLCALL + xmlTextReaderSchemaValidateCtxt(xmlTextReaderPtr reader, + xmlSchemaValidCtxtPtr ctxt, + int options); +XMLPUBFUN int XMLCALL + xmlTextReaderSetSchema (xmlTextReaderPtr reader, + xmlSchemaPtr schema); +#endif +XMLPUBFUN const xmlChar * XMLCALL + xmlTextReaderConstXmlVersion(xmlTextReaderPtr reader); +XMLPUBFUN int XMLCALL + xmlTextReaderStandalone (xmlTextReaderPtr reader); + + +/* + * Index lookup + */ +XMLPUBFUN long XMLCALL + xmlTextReaderByteConsumed (xmlTextReaderPtr reader); + +/* + * New more complete APIs for simpler creation and reuse of readers + */ +XMLPUBFUN xmlTextReaderPtr XMLCALL + xmlReaderWalker (xmlDocPtr doc); +XMLPUBFUN xmlTextReaderPtr XMLCALL + xmlReaderForDoc (const xmlChar * cur, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlTextReaderPtr XMLCALL + xmlReaderForFile (const char *filename, + const char *encoding, + int options); +XMLPUBFUN xmlTextReaderPtr XMLCALL + xmlReaderForMemory (const char *buffer, + int size, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlTextReaderPtr XMLCALL + xmlReaderForFd (int fd, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN xmlTextReaderPtr XMLCALL + xmlReaderForIO (xmlInputReadCallback ioread, + xmlInputCloseCallback ioclose, + void *ioctx, + const char *URL, + const char *encoding, + int options); + +XMLPUBFUN int XMLCALL + xmlReaderNewWalker (xmlTextReaderPtr reader, + xmlDocPtr doc); +XMLPUBFUN int XMLCALL + xmlReaderNewDoc (xmlTextReaderPtr reader, + const xmlChar * cur, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN int XMLCALL + xmlReaderNewFile (xmlTextReaderPtr reader, + const char *filename, + const char *encoding, + int options); +XMLPUBFUN int XMLCALL + xmlReaderNewMemory (xmlTextReaderPtr reader, + const char *buffer, + int size, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN int XMLCALL + xmlReaderNewFd (xmlTextReaderPtr reader, + int fd, + const char *URL, + const char *encoding, + int options); +XMLPUBFUN int XMLCALL + xmlReaderNewIO (xmlTextReaderPtr reader, + xmlInputReadCallback ioread, + xmlInputCloseCallback ioclose, + void *ioctx, + const char *URL, + const char *encoding, + int options); +/* + * Error handling extensions + */ +typedef void * xmlTextReaderLocatorPtr; + +/** + * xmlTextReaderErrorFunc: + * @arg: the user argument + * @msg: the message + * @severity: the severity of the error + * @locator: a locator indicating where the error occured + * + * Signature of an error callback from a reader parser + */ +typedef void (XMLCALL *xmlTextReaderErrorFunc)(void *arg, + const char *msg, + xmlParserSeverities severity, + xmlTextReaderLocatorPtr locator); +XMLPUBFUN int XMLCALL + xmlTextReaderLocatorLineNumber(xmlTextReaderLocatorPtr locator); +/*int xmlTextReaderLocatorLinePosition(xmlTextReaderLocatorPtr locator);*/ +XMLPUBFUN xmlChar * XMLCALL + xmlTextReaderLocatorBaseURI (xmlTextReaderLocatorPtr locator); +XMLPUBFUN void XMLCALL + xmlTextReaderSetErrorHandler(xmlTextReaderPtr reader, + xmlTextReaderErrorFunc f, + void *arg); +XMLPUBFUN void XMLCALL + xmlTextReaderSetStructuredErrorHandler(xmlTextReaderPtr reader, + xmlStructuredErrorFunc f, + void *arg); +XMLPUBFUN void XMLCALL + xmlTextReaderGetErrorHandler(xmlTextReaderPtr reader, + xmlTextReaderErrorFunc *f, + void **arg); + +#endif /* LIBXML_READER_ENABLED */ + +#ifdef __cplusplus +} +#endif + +#endif /* __XML_XMLREADER_H__ */ + diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlregexp.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlregexp.h new file mode 100644 index 0000000000..7009645a92 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlregexp.h @@ -0,0 +1,222 @@ +/* + * Summary: regular expressions handling + * Description: basic API for libxml regular expressions handling used + * for XML Schemas and validation. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_REGEXP_H__ +#define __XML_REGEXP_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_REGEXP_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlRegexpPtr: + * + * A libxml regular expression, they can actually be far more complex + * thank the POSIX regex expressions. + */ +typedef struct _xmlRegexp xmlRegexp; +typedef xmlRegexp *xmlRegexpPtr; + +/** + * xmlRegExecCtxtPtr: + * + * A libxml progressive regular expression evaluation context + */ +typedef struct _xmlRegExecCtxt xmlRegExecCtxt; +typedef xmlRegExecCtxt *xmlRegExecCtxtPtr; + +#ifdef __cplusplus +} +#endif +#include <libxml/tree.h> +#include <libxml/dict.h> +#ifdef __cplusplus +extern "C" { +#endif + +/* + * The POSIX like API + */ +XMLPUBFUN xmlRegexpPtr XMLCALL + xmlRegexpCompile (const xmlChar *regexp); +XMLPUBFUN void XMLCALL xmlRegFreeRegexp(xmlRegexpPtr regexp); +XMLPUBFUN int XMLCALL + xmlRegexpExec (xmlRegexpPtr comp, + const xmlChar *value); +XMLPUBFUN void XMLCALL + xmlRegexpPrint (FILE *output, + xmlRegexpPtr regexp); +XMLPUBFUN int XMLCALL + xmlRegexpIsDeterminist(xmlRegexpPtr comp); + +/** + * xmlRegExecCallbacks: + * @exec: the regular expression context + * @token: the current token string + * @transdata: transition data + * @inputdata: input data + * + * Callback function when doing a transition in the automata + */ +typedef void (*xmlRegExecCallbacks) (xmlRegExecCtxtPtr exec, + const xmlChar *token, + void *transdata, + void *inputdata); + +/* + * The progressive API + */ +XMLPUBFUN xmlRegExecCtxtPtr XMLCALL + xmlRegNewExecCtxt (xmlRegexpPtr comp, + xmlRegExecCallbacks callback, + void *data); +XMLPUBFUN void XMLCALL + xmlRegFreeExecCtxt (xmlRegExecCtxtPtr exec); +XMLPUBFUN int XMLCALL + xmlRegExecPushString(xmlRegExecCtxtPtr exec, + const xmlChar *value, + void *data); +XMLPUBFUN int XMLCALL + xmlRegExecPushString2(xmlRegExecCtxtPtr exec, + const xmlChar *value, + const xmlChar *value2, + void *data); + +XMLPUBFUN int XMLCALL + xmlRegExecNextValues(xmlRegExecCtxtPtr exec, + int *nbval, + int *nbneg, + xmlChar **values, + int *terminal); +XMLPUBFUN int XMLCALL + xmlRegExecErrInfo (xmlRegExecCtxtPtr exec, + const xmlChar **string, + int *nbval, + int *nbneg, + xmlChar **values, + int *terminal); +#ifdef LIBXML_EXPR_ENABLED +/* + * Formal regular expression handling + * Its goal is to do some formal work on content models + */ + +/* expressions are used within a context */ +typedef struct _xmlExpCtxt xmlExpCtxt; +typedef xmlExpCtxt *xmlExpCtxtPtr; + +XMLPUBFUN void XMLCALL + xmlExpFreeCtxt (xmlExpCtxtPtr ctxt); +XMLPUBFUN xmlExpCtxtPtr XMLCALL + xmlExpNewCtxt (int maxNodes, + xmlDictPtr dict); + +XMLPUBFUN int XMLCALL + xmlExpCtxtNbNodes(xmlExpCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlExpCtxtNbCons(xmlExpCtxtPtr ctxt); + +/* Expressions are trees but the tree is opaque */ +typedef struct _xmlExpNode xmlExpNode; +typedef xmlExpNode *xmlExpNodePtr; + +typedef enum { + XML_EXP_EMPTY = 0, + XML_EXP_FORBID = 1, + XML_EXP_ATOM = 2, + XML_EXP_SEQ = 3, + XML_EXP_OR = 4, + XML_EXP_COUNT = 5 +} xmlExpNodeType; + +/* + * 2 core expressions shared by all for the empty language set + * and for the set with just the empty token + */ +XMLPUBVAR xmlExpNodePtr forbiddenExp; +XMLPUBVAR xmlExpNodePtr emptyExp; + +/* + * Expressions are reference counted internally + */ +XMLPUBFUN void XMLCALL + xmlExpFree (xmlExpCtxtPtr ctxt, + xmlExpNodePtr expr); +XMLPUBFUN void XMLCALL + xmlExpRef (xmlExpNodePtr expr); + +/* + * constructors can be either manual or from a string + */ +XMLPUBFUN xmlExpNodePtr XMLCALL + xmlExpParse (xmlExpCtxtPtr ctxt, + const char *expr); +XMLPUBFUN xmlExpNodePtr XMLCALL + xmlExpNewAtom (xmlExpCtxtPtr ctxt, + const xmlChar *name, + int len); +XMLPUBFUN xmlExpNodePtr XMLCALL + xmlExpNewOr (xmlExpCtxtPtr ctxt, + xmlExpNodePtr left, + xmlExpNodePtr right); +XMLPUBFUN xmlExpNodePtr XMLCALL + xmlExpNewSeq (xmlExpCtxtPtr ctxt, + xmlExpNodePtr left, + xmlExpNodePtr right); +XMLPUBFUN xmlExpNodePtr XMLCALL + xmlExpNewRange (xmlExpCtxtPtr ctxt, + xmlExpNodePtr subset, + int min, + int max); +/* + * The really interesting APIs + */ +XMLPUBFUN int XMLCALL + xmlExpIsNillable(xmlExpNodePtr expr); +XMLPUBFUN int XMLCALL + xmlExpMaxToken (xmlExpNodePtr expr); +XMLPUBFUN int XMLCALL + xmlExpGetLanguage(xmlExpCtxtPtr ctxt, + xmlExpNodePtr expr, + const xmlChar**langList, + int len); +XMLPUBFUN int XMLCALL + xmlExpGetStart (xmlExpCtxtPtr ctxt, + xmlExpNodePtr expr, + const xmlChar**tokList, + int len); +XMLPUBFUN xmlExpNodePtr XMLCALL + xmlExpStringDerive(xmlExpCtxtPtr ctxt, + xmlExpNodePtr expr, + const xmlChar *str, + int len); +XMLPUBFUN xmlExpNodePtr XMLCALL + xmlExpExpDerive (xmlExpCtxtPtr ctxt, + xmlExpNodePtr expr, + xmlExpNodePtr sub); +XMLPUBFUN int XMLCALL + xmlExpSubsume (xmlExpCtxtPtr ctxt, + xmlExpNodePtr expr, + xmlExpNodePtr sub); +XMLPUBFUN void XMLCALL + xmlExpDump (xmlBufferPtr buf, + xmlExpNodePtr expr); +#endif /* LIBXML_EXPR_ENABLED */ +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_REGEXP_ENABLED */ + +#endif /*__XML_REGEXP_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlsave.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlsave.h new file mode 100644 index 0000000000..fb329b22db --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlsave.h @@ -0,0 +1,88 @@ +/* + * Summary: the XML document serializer + * Description: API to save document or subtree of document + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_XMLSAVE_H__ +#define __XML_XMLSAVE_H__ + +#include <libxml/xmlversion.h> +#include <libxml/tree.h> +#include <libxml/encoding.h> +#include <libxml/xmlIO.h> + +#ifdef LIBXML_OUTPUT_ENABLED +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlSaveOption: + * + * This is the set of XML save options that can be passed down + * to the xmlSaveToFd() and similar calls. + */ +typedef enum { + XML_SAVE_FORMAT = 1<<0, /* format save output */ + XML_SAVE_NO_DECL = 1<<1, /* drop the xml declaration */ + XML_SAVE_NO_EMPTY = 1<<2, /* no empty tags */ + XML_SAVE_NO_XHTML = 1<<3, /* disable XHTML1 specific rules */ + XML_SAVE_XHTML = 1<<4, /* force XHTML1 specific rules */ + XML_SAVE_AS_XML = 1<<5, /* force XML serialization on HTML doc */ + XML_SAVE_AS_HTML = 1<<6, /* force HTML serialization on XML doc */ + XML_SAVE_WSNONSIG = 1<<7 /* format with non-significant whitespace */ +} xmlSaveOption; + + +typedef struct _xmlSaveCtxt xmlSaveCtxt; +typedef xmlSaveCtxt *xmlSaveCtxtPtr; + +XMLPUBFUN xmlSaveCtxtPtr XMLCALL + xmlSaveToFd (int fd, + const char *encoding, + int options); +XMLPUBFUN xmlSaveCtxtPtr XMLCALL + xmlSaveToFilename (const char *filename, + const char *encoding, + int options); + +XMLPUBFUN xmlSaveCtxtPtr XMLCALL + xmlSaveToBuffer (xmlBufferPtr buffer, + const char *encoding, + int options); + +XMLPUBFUN xmlSaveCtxtPtr XMLCALL + xmlSaveToIO (xmlOutputWriteCallback iowrite, + xmlOutputCloseCallback ioclose, + void *ioctx, + const char *encoding, + int options); + +XMLPUBFUN long XMLCALL + xmlSaveDoc (xmlSaveCtxtPtr ctxt, + xmlDocPtr doc); +XMLPUBFUN long XMLCALL + xmlSaveTree (xmlSaveCtxtPtr ctxt, + xmlNodePtr node); + +XMLPUBFUN int XMLCALL + xmlSaveFlush (xmlSaveCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlSaveClose (xmlSaveCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlSaveSetEscape (xmlSaveCtxtPtr ctxt, + xmlCharEncodingOutputFunc escape); +XMLPUBFUN int XMLCALL + xmlSaveSetAttrEscape (xmlSaveCtxtPtr ctxt, + xmlCharEncodingOutputFunc escape); +#ifdef __cplusplus +} +#endif +#endif /* LIBXML_OUTPUT_ENABLED */ +#endif /* __XML_XMLSAVE_H__ */ + + diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlschemas.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlschemas.h new file mode 100644 index 0000000000..752bc3ad79 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlschemas.h @@ -0,0 +1,218 @@ +/* + * Summary: incomplete XML Schemas structure implementation + * Description: interface to the XML Schemas handling and schema validity + * checking, it is incomplete right now. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + + +#ifndef __XML_SCHEMA_H__ +#define __XML_SCHEMA_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_SCHEMAS_ENABLED + +#include <libxml/tree.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This error codes are obsolete; not used any more. + */ +typedef enum { + XML_SCHEMAS_ERR_OK = 0, + XML_SCHEMAS_ERR_NOROOT = 1, + XML_SCHEMAS_ERR_UNDECLAREDELEM, + XML_SCHEMAS_ERR_NOTTOPLEVEL, + XML_SCHEMAS_ERR_MISSING, + XML_SCHEMAS_ERR_WRONGELEM, + XML_SCHEMAS_ERR_NOTYPE, + XML_SCHEMAS_ERR_NOROLLBACK, + XML_SCHEMAS_ERR_ISABSTRACT, + XML_SCHEMAS_ERR_NOTEMPTY, + XML_SCHEMAS_ERR_ELEMCONT, + XML_SCHEMAS_ERR_HAVEDEFAULT, + XML_SCHEMAS_ERR_NOTNILLABLE, + XML_SCHEMAS_ERR_EXTRACONTENT, + XML_SCHEMAS_ERR_INVALIDATTR, + XML_SCHEMAS_ERR_INVALIDELEM, + XML_SCHEMAS_ERR_NOTDETERMINIST, + XML_SCHEMAS_ERR_CONSTRUCT, + XML_SCHEMAS_ERR_INTERNAL, + XML_SCHEMAS_ERR_NOTSIMPLE, + XML_SCHEMAS_ERR_ATTRUNKNOWN, + XML_SCHEMAS_ERR_ATTRINVALID, + XML_SCHEMAS_ERR_VALUE, + XML_SCHEMAS_ERR_FACET, + XML_SCHEMAS_ERR_, + XML_SCHEMAS_ERR_XXX +} xmlSchemaValidError; + +/* +* ATTENTION: Change xmlSchemaSetValidOptions's check +* for invalid values, if adding to the validation +* options below. +*/ +/** + * xmlSchemaValidOption: + * + * This is the set of XML Schema validation options. + */ +typedef enum { + XML_SCHEMA_VAL_VC_I_CREATE = 1<<0 + /* Default/fixed: create an attribute node + * or an element's text node on the instance. + */ +} xmlSchemaValidOption; + +/* + XML_SCHEMA_VAL_XSI_ASSEMBLE = 1<<1, + * assemble schemata using + * xsi:schemaLocation and + * xsi:noNamespaceSchemaLocation +*/ + +/** + * The schemas related types are kept internal + */ +typedef struct _xmlSchema xmlSchema; +typedef xmlSchema *xmlSchemaPtr; + +/** + * xmlSchemaValidityErrorFunc: + * @ctx: the validation context + * @msg: the message + * @...: extra arguments + * + * Signature of an error callback from an XSD validation + */ +typedef void (XMLCDECL *xmlSchemaValidityErrorFunc) (void *ctx, const char *msg, ...) LIBXML_ATTR_FORMAT(2,3); + +/** + * xmlSchemaValidityWarningFunc: + * @ctx: the validation context + * @msg: the message + * @...: extra arguments + * + * Signature of a warning callback from an XSD validation + */ +typedef void (XMLCDECL *xmlSchemaValidityWarningFunc) (void *ctx, const char *msg, ...) LIBXML_ATTR_FORMAT(2,3); + +/** + * A schemas validation context + */ +typedef struct _xmlSchemaParserCtxt xmlSchemaParserCtxt; +typedef xmlSchemaParserCtxt *xmlSchemaParserCtxtPtr; + +typedef struct _xmlSchemaValidCtxt xmlSchemaValidCtxt; +typedef xmlSchemaValidCtxt *xmlSchemaValidCtxtPtr; + +/* + * Interfaces for parsing. + */ +XMLPUBFUN xmlSchemaParserCtxtPtr XMLCALL + xmlSchemaNewParserCtxt (const char *URL); +XMLPUBFUN xmlSchemaParserCtxtPtr XMLCALL + xmlSchemaNewMemParserCtxt (const char *buffer, + int size); +XMLPUBFUN xmlSchemaParserCtxtPtr XMLCALL + xmlSchemaNewDocParserCtxt (xmlDocPtr doc); +XMLPUBFUN void XMLCALL + xmlSchemaFreeParserCtxt (xmlSchemaParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlSchemaSetParserErrors (xmlSchemaParserCtxtPtr ctxt, + xmlSchemaValidityErrorFunc err, + xmlSchemaValidityWarningFunc warn, + void *ctx); +XMLPUBFUN void XMLCALL + xmlSchemaSetParserStructuredErrors(xmlSchemaParserCtxtPtr ctxt, + xmlStructuredErrorFunc serror, + void *ctx); +XMLPUBFUN int XMLCALL + xmlSchemaGetParserErrors(xmlSchemaParserCtxtPtr ctxt, + xmlSchemaValidityErrorFunc * err, + xmlSchemaValidityWarningFunc * warn, + void **ctx); +XMLPUBFUN int XMLCALL + xmlSchemaIsValid (xmlSchemaValidCtxtPtr ctxt); + +XMLPUBFUN xmlSchemaPtr XMLCALL + xmlSchemaParse (xmlSchemaParserCtxtPtr ctxt); +XMLPUBFUN void XMLCALL + xmlSchemaFree (xmlSchemaPtr schema); +#ifdef LIBXML_OUTPUT_ENABLED +XMLPUBFUN void XMLCALL + xmlSchemaDump (FILE *output, + xmlSchemaPtr schema); +#endif /* LIBXML_OUTPUT_ENABLED */ +/* + * Interfaces for validating + */ +XMLPUBFUN void XMLCALL + xmlSchemaSetValidErrors (xmlSchemaValidCtxtPtr ctxt, + xmlSchemaValidityErrorFunc err, + xmlSchemaValidityWarningFunc warn, + void *ctx); +XMLPUBFUN void XMLCALL + xmlSchemaSetValidStructuredErrors(xmlSchemaValidCtxtPtr ctxt, + xmlStructuredErrorFunc serror, + void *ctx); +XMLPUBFUN int XMLCALL + xmlSchemaGetValidErrors (xmlSchemaValidCtxtPtr ctxt, + xmlSchemaValidityErrorFunc *err, + xmlSchemaValidityWarningFunc *warn, + void **ctx); +XMLPUBFUN int XMLCALL + xmlSchemaSetValidOptions (xmlSchemaValidCtxtPtr ctxt, + int options); +XMLPUBFUN int XMLCALL + xmlSchemaValidCtxtGetOptions(xmlSchemaValidCtxtPtr ctxt); + +XMLPUBFUN xmlSchemaValidCtxtPtr XMLCALL + xmlSchemaNewValidCtxt (xmlSchemaPtr schema); +XMLPUBFUN void XMLCALL + xmlSchemaFreeValidCtxt (xmlSchemaValidCtxtPtr ctxt); +XMLPUBFUN int XMLCALL + xmlSchemaValidateDoc (xmlSchemaValidCtxtPtr ctxt, + xmlDocPtr instance); +XMLPUBFUN int XMLCALL + xmlSchemaValidateOneElement (xmlSchemaValidCtxtPtr ctxt, + xmlNodePtr elem); +XMLPUBFUN int XMLCALL + xmlSchemaValidateStream (xmlSchemaValidCtxtPtr ctxt, + xmlParserInputBufferPtr input, + xmlCharEncoding enc, + xmlSAXHandlerPtr sax, + void *user_data); +XMLPUBFUN int XMLCALL + xmlSchemaValidateFile (xmlSchemaValidCtxtPtr ctxt, + const char * filename, + int options); + +XMLPUBFUN xmlParserCtxtPtr XMLCALL + xmlSchemaValidCtxtGetParserCtxt(xmlSchemaValidCtxtPtr ctxt); + +/* + * Interface to insert Schemas SAX validation in a SAX stream + */ +typedef struct _xmlSchemaSAXPlug xmlSchemaSAXPlugStruct; +typedef xmlSchemaSAXPlugStruct *xmlSchemaSAXPlugPtr; + +XMLPUBFUN xmlSchemaSAXPlugPtr XMLCALL + xmlSchemaSAXPlug (xmlSchemaValidCtxtPtr ctxt, + xmlSAXHandlerPtr *sax, + void **user_data); +XMLPUBFUN int XMLCALL + xmlSchemaSAXUnplug (xmlSchemaSAXPlugPtr plug); +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_SCHEMAS_ENABLED */ +#endif /* __XML_SCHEMA_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlschemastypes.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlschemastypes.h new file mode 100644 index 0000000000..9a3a7a175e --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlschemastypes.h @@ -0,0 +1,151 @@ +/* + * Summary: implementation of XML Schema Datatypes + * Description: module providing the XML Schema Datatypes implementation + * both definition and validity checking + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + + +#ifndef __XML_SCHEMA_TYPES_H__ +#define __XML_SCHEMA_TYPES_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_SCHEMAS_ENABLED + +#include <libxml/schemasInternals.h> +#include <libxml/xmlschemas.h> + +#ifdef __cplusplus +extern "C" { +#endif + +typedef enum { + XML_SCHEMA_WHITESPACE_UNKNOWN = 0, + XML_SCHEMA_WHITESPACE_PRESERVE = 1, + XML_SCHEMA_WHITESPACE_REPLACE = 2, + XML_SCHEMA_WHITESPACE_COLLAPSE = 3 +} xmlSchemaWhitespaceValueType; + +XMLPUBFUN void XMLCALL + xmlSchemaInitTypes (void); +XMLPUBFUN void XMLCALL + xmlSchemaCleanupTypes (void); +XMLPUBFUN xmlSchemaTypePtr XMLCALL + xmlSchemaGetPredefinedType (const xmlChar *name, + const xmlChar *ns); +XMLPUBFUN int XMLCALL + xmlSchemaValidatePredefinedType (xmlSchemaTypePtr type, + const xmlChar *value, + xmlSchemaValPtr *val); +XMLPUBFUN int XMLCALL + xmlSchemaValPredefTypeNode (xmlSchemaTypePtr type, + const xmlChar *value, + xmlSchemaValPtr *val, + xmlNodePtr node); +XMLPUBFUN int XMLCALL + xmlSchemaValidateFacet (xmlSchemaTypePtr base, + xmlSchemaFacetPtr facet, + const xmlChar *value, + xmlSchemaValPtr val); +XMLPUBFUN int XMLCALL + xmlSchemaValidateFacetWhtsp (xmlSchemaFacetPtr facet, + xmlSchemaWhitespaceValueType fws, + xmlSchemaValType valType, + const xmlChar *value, + xmlSchemaValPtr val, + xmlSchemaWhitespaceValueType ws); +XMLPUBFUN void XMLCALL + xmlSchemaFreeValue (xmlSchemaValPtr val); +XMLPUBFUN xmlSchemaFacetPtr XMLCALL + xmlSchemaNewFacet (void); +XMLPUBFUN int XMLCALL + xmlSchemaCheckFacet (xmlSchemaFacetPtr facet, + xmlSchemaTypePtr typeDecl, + xmlSchemaParserCtxtPtr ctxt, + const xmlChar *name); +XMLPUBFUN void XMLCALL + xmlSchemaFreeFacet (xmlSchemaFacetPtr facet); +XMLPUBFUN int XMLCALL + xmlSchemaCompareValues (xmlSchemaValPtr x, + xmlSchemaValPtr y); +XMLPUBFUN xmlSchemaTypePtr XMLCALL + xmlSchemaGetBuiltInListSimpleTypeItemType (xmlSchemaTypePtr type); +XMLPUBFUN int XMLCALL + xmlSchemaValidateListSimpleTypeFacet (xmlSchemaFacetPtr facet, + const xmlChar *value, + unsigned long actualLen, + unsigned long *expectedLen); +XMLPUBFUN xmlSchemaTypePtr XMLCALL + xmlSchemaGetBuiltInType (xmlSchemaValType type); +XMLPUBFUN int XMLCALL + xmlSchemaIsBuiltInTypeFacet (xmlSchemaTypePtr type, + int facetType); +XMLPUBFUN xmlChar * XMLCALL + xmlSchemaCollapseString (const xmlChar *value); +XMLPUBFUN xmlChar * XMLCALL + xmlSchemaWhiteSpaceReplace (const xmlChar *value); +XMLPUBFUN unsigned long XMLCALL + xmlSchemaGetFacetValueAsULong (xmlSchemaFacetPtr facet); +XMLPUBFUN int XMLCALL + xmlSchemaValidateLengthFacet (xmlSchemaTypePtr type, + xmlSchemaFacetPtr facet, + const xmlChar *value, + xmlSchemaValPtr val, + unsigned long *length); +XMLPUBFUN int XMLCALL + xmlSchemaValidateLengthFacetWhtsp(xmlSchemaFacetPtr facet, + xmlSchemaValType valType, + const xmlChar *value, + xmlSchemaValPtr val, + unsigned long *length, + xmlSchemaWhitespaceValueType ws); +XMLPUBFUN int XMLCALL + xmlSchemaValPredefTypeNodeNoNorm(xmlSchemaTypePtr type, + const xmlChar *value, + xmlSchemaValPtr *val, + xmlNodePtr node); +XMLPUBFUN int XMLCALL + xmlSchemaGetCanonValue (xmlSchemaValPtr val, + const xmlChar **retValue); +XMLPUBFUN int XMLCALL + xmlSchemaGetCanonValueWhtsp (xmlSchemaValPtr val, + const xmlChar **retValue, + xmlSchemaWhitespaceValueType ws); +XMLPUBFUN int XMLCALL + xmlSchemaValueAppend (xmlSchemaValPtr prev, + xmlSchemaValPtr cur); +XMLPUBFUN xmlSchemaValPtr XMLCALL + xmlSchemaValueGetNext (xmlSchemaValPtr cur); +XMLPUBFUN const xmlChar * XMLCALL + xmlSchemaValueGetAsString (xmlSchemaValPtr val); +XMLPUBFUN int XMLCALL + xmlSchemaValueGetAsBoolean (xmlSchemaValPtr val); +XMLPUBFUN xmlSchemaValPtr XMLCALL + xmlSchemaNewStringValue (xmlSchemaValType type, + const xmlChar *value); +XMLPUBFUN xmlSchemaValPtr XMLCALL + xmlSchemaNewNOTATIONValue (const xmlChar *name, + const xmlChar *ns); +XMLPUBFUN xmlSchemaValPtr XMLCALL + xmlSchemaNewQNameValue (const xmlChar *namespaceName, + const xmlChar *localName); +XMLPUBFUN int XMLCALL + xmlSchemaCompareValuesWhtsp (xmlSchemaValPtr x, + xmlSchemaWhitespaceValueType xws, + xmlSchemaValPtr y, + xmlSchemaWhitespaceValueType yws); +XMLPUBFUN xmlSchemaValPtr XMLCALL + xmlSchemaCopyValue (xmlSchemaValPtr val); +XMLPUBFUN xmlSchemaValType XMLCALL + xmlSchemaGetValType (xmlSchemaValPtr val); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_SCHEMAS_ENABLED */ +#endif /* __XML_SCHEMA_TYPES_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlstring.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlstring.h new file mode 100644 index 0000000000..0bc6888865 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlstring.h @@ -0,0 +1,140 @@ +/* + * Summary: set of routines to process strings + * Description: type and interfaces needed for the internal string handling + * of the library, especially UTF8 processing. + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_STRING_H__ +#define __XML_STRING_H__ + +#include <stdarg.h> +#include <libxml/xmlversion.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * xmlChar: + * + * This is a basic byte in an UTF-8 encoded string. + * It's unsigned allowing to pinpoint case where char * are assigned + * to xmlChar * (possibly making serialization back impossible). + */ +typedef unsigned char xmlChar; + +/** + * BAD_CAST: + * + * Macro to cast a string to an xmlChar * when one know its safe. + */ +#define BAD_CAST (xmlChar *) + +/* + * xmlChar handling + */ +XMLPUBFUN xmlChar * XMLCALL + xmlStrdup (const xmlChar *cur); +XMLPUBFUN xmlChar * XMLCALL + xmlStrndup (const xmlChar *cur, + int len); +XMLPUBFUN xmlChar * XMLCALL + xmlCharStrndup (const char *cur, + int len); +XMLPUBFUN xmlChar * XMLCALL + xmlCharStrdup (const char *cur); +XMLPUBFUN xmlChar * XMLCALL + xmlStrsub (const xmlChar *str, + int start, + int len); +XMLPUBFUN const xmlChar * XMLCALL + xmlStrchr (const xmlChar *str, + xmlChar val); +XMLPUBFUN const xmlChar * XMLCALL + xmlStrstr (const xmlChar *str, + const xmlChar *val); +XMLPUBFUN const xmlChar * XMLCALL + xmlStrcasestr (const xmlChar *str, + const xmlChar *val); +XMLPUBFUN int XMLCALL + xmlStrcmp (const xmlChar *str1, + const xmlChar *str2); +XMLPUBFUN int XMLCALL + xmlStrncmp (const xmlChar *str1, + const xmlChar *str2, + int len); +XMLPUBFUN int XMLCALL + xmlStrcasecmp (const xmlChar *str1, + const xmlChar *str2); +XMLPUBFUN int XMLCALL + xmlStrncasecmp (const xmlChar *str1, + const xmlChar *str2, + int len); +XMLPUBFUN int XMLCALL + xmlStrEqual (const xmlChar *str1, + const xmlChar *str2); +XMLPUBFUN int XMLCALL + xmlStrQEqual (const xmlChar *pref, + const xmlChar *name, + const xmlChar *str); +XMLPUBFUN int XMLCALL + xmlStrlen (const xmlChar *str); +XMLPUBFUN xmlChar * XMLCALL + xmlStrcat (xmlChar *cur, + const xmlChar *add); +XMLPUBFUN xmlChar * XMLCALL + xmlStrncat (xmlChar *cur, + const xmlChar *add, + int len); +XMLPUBFUN xmlChar * XMLCALL + xmlStrncatNew (const xmlChar *str1, + const xmlChar *str2, + int len); +XMLPUBFUN int XMLCALL + xmlStrPrintf (xmlChar *buf, + int len, + const xmlChar *msg, + ...); +XMLPUBFUN int XMLCALL + xmlStrVPrintf (xmlChar *buf, + int len, + const xmlChar *msg, + va_list ap); + +XMLPUBFUN int XMLCALL + xmlGetUTF8Char (const unsigned char *utf, + int *len); +XMLPUBFUN int XMLCALL + xmlCheckUTF8 (const unsigned char *utf); +XMLPUBFUN int XMLCALL + xmlUTF8Strsize (const xmlChar *utf, + int len); +XMLPUBFUN xmlChar * XMLCALL + xmlUTF8Strndup (const xmlChar *utf, + int len); +XMLPUBFUN const xmlChar * XMLCALL + xmlUTF8Strpos (const xmlChar *utf, + int pos); +XMLPUBFUN int XMLCALL + xmlUTF8Strloc (const xmlChar *utf, + const xmlChar *utfchar); +XMLPUBFUN xmlChar * XMLCALL + xmlUTF8Strsub (const xmlChar *utf, + int start, + int len); +XMLPUBFUN int XMLCALL + xmlUTF8Strlen (const xmlChar *utf); +XMLPUBFUN int XMLCALL + xmlUTF8Size (const xmlChar *utf); +XMLPUBFUN int XMLCALL + xmlUTF8Charcmp (const xmlChar *utf1, + const xmlChar *utf2); + +#ifdef __cplusplus +} +#endif +#endif /* __XML_STRING_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlunicode.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlunicode.h new file mode 100644 index 0000000000..01ac8b61f5 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlunicode.h @@ -0,0 +1,202 @@ +/* + * Summary: Unicode character APIs + * Description: API for the Unicode character APIs + * + * This file is automatically generated from the + * UCS description files of the Unicode Character Database + * http://www.unicode.org/Public/4.0-Update1/UCD-4.0.1.html + * using the genUnicode.py Python script. + * + * Generation date: Mon Mar 27 11:09:52 2006 + * Sources: Blocks-4.0.1.txt UnicodeData-4.0.1.txt + * Author: Daniel Veillard + */ + +#ifndef __XML_UNICODE_H__ +#define __XML_UNICODE_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_UNICODE_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code); +XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code); +XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code); +XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code); +XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code); +XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code); +XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code); +XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code); +XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code); +XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code); +XMLPUBFUN int XMLCALL xmlUCSIsBopomofo (int code); +XMLPUBFUN int XMLCALL xmlUCSIsBopomofoExtended (int code); +XMLPUBFUN int XMLCALL xmlUCSIsBoxDrawing (int code); +XMLPUBFUN int XMLCALL xmlUCSIsBraillePatterns (int code); +XMLPUBFUN int XMLCALL xmlUCSIsBuhid (int code); +XMLPUBFUN int XMLCALL xmlUCSIsByzantineMusicalSymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibility (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibilityForms (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibilityIdeographs (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibilityIdeographsSupplement (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCJKRadicalsSupplement (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCJKSymbolsandPunctuation (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCJKUnifiedIdeographs (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCJKUnifiedIdeographsExtensionA (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCJKUnifiedIdeographsExtensionB (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCherokee (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCombiningDiacriticalMarks (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCombiningDiacriticalMarksforSymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCombiningHalfMarks (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCombiningMarksforSymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsControlPictures (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCurrencySymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCypriotSyllabary (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCyrillic (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCyrillicSupplement (int code); +XMLPUBFUN int XMLCALL xmlUCSIsDeseret (int code); +XMLPUBFUN int XMLCALL xmlUCSIsDevanagari (int code); +XMLPUBFUN int XMLCALL xmlUCSIsDingbats (int code); +XMLPUBFUN int XMLCALL xmlUCSIsEnclosedAlphanumerics (int code); +XMLPUBFUN int XMLCALL xmlUCSIsEnclosedCJKLettersandMonths (int code); +XMLPUBFUN int XMLCALL xmlUCSIsEthiopic (int code); +XMLPUBFUN int XMLCALL xmlUCSIsGeneralPunctuation (int code); +XMLPUBFUN int XMLCALL xmlUCSIsGeometricShapes (int code); +XMLPUBFUN int XMLCALL xmlUCSIsGeorgian (int code); +XMLPUBFUN int XMLCALL xmlUCSIsGothic (int code); +XMLPUBFUN int XMLCALL xmlUCSIsGreek (int code); +XMLPUBFUN int XMLCALL xmlUCSIsGreekExtended (int code); +XMLPUBFUN int XMLCALL xmlUCSIsGreekandCoptic (int code); +XMLPUBFUN int XMLCALL xmlUCSIsGujarati (int code); +XMLPUBFUN int XMLCALL xmlUCSIsGurmukhi (int code); +XMLPUBFUN int XMLCALL xmlUCSIsHalfwidthandFullwidthForms (int code); +XMLPUBFUN int XMLCALL xmlUCSIsHangulCompatibilityJamo (int code); +XMLPUBFUN int XMLCALL xmlUCSIsHangulJamo (int code); +XMLPUBFUN int XMLCALL xmlUCSIsHangulSyllables (int code); +XMLPUBFUN int XMLCALL xmlUCSIsHanunoo (int code); +XMLPUBFUN int XMLCALL xmlUCSIsHebrew (int code); +XMLPUBFUN int XMLCALL xmlUCSIsHighPrivateUseSurrogates (int code); +XMLPUBFUN int XMLCALL xmlUCSIsHighSurrogates (int code); +XMLPUBFUN int XMLCALL xmlUCSIsHiragana (int code); +XMLPUBFUN int XMLCALL xmlUCSIsIPAExtensions (int code); +XMLPUBFUN int XMLCALL xmlUCSIsIdeographicDescriptionCharacters (int code); +XMLPUBFUN int XMLCALL xmlUCSIsKanbun (int code); +XMLPUBFUN int XMLCALL xmlUCSIsKangxiRadicals (int code); +XMLPUBFUN int XMLCALL xmlUCSIsKannada (int code); +XMLPUBFUN int XMLCALL xmlUCSIsKatakana (int code); +XMLPUBFUN int XMLCALL xmlUCSIsKatakanaPhoneticExtensions (int code); +XMLPUBFUN int XMLCALL xmlUCSIsKhmer (int code); +XMLPUBFUN int XMLCALL xmlUCSIsKhmerSymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLao (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLatin1Supplement (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLatinExtendedA (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLatinExtendedB (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLatinExtendedAdditional (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLetterlikeSymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLimbu (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLinearBIdeograms (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLinearBSyllabary (int code); +XMLPUBFUN int XMLCALL xmlUCSIsLowSurrogates (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMalayalam (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMathematicalAlphanumericSymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMathematicalOperators (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousMathematicalSymbolsA (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousMathematicalSymbolsB (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousSymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousSymbolsandArrows (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousTechnical (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMongolian (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMusicalSymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsMyanmar (int code); +XMLPUBFUN int XMLCALL xmlUCSIsNumberForms (int code); +XMLPUBFUN int XMLCALL xmlUCSIsOgham (int code); +XMLPUBFUN int XMLCALL xmlUCSIsOldItalic (int code); +XMLPUBFUN int XMLCALL xmlUCSIsOpticalCharacterRecognition (int code); +XMLPUBFUN int XMLCALL xmlUCSIsOriya (int code); +XMLPUBFUN int XMLCALL xmlUCSIsOsmanya (int code); +XMLPUBFUN int XMLCALL xmlUCSIsPhoneticExtensions (int code); +XMLPUBFUN int XMLCALL xmlUCSIsPrivateUse (int code); +XMLPUBFUN int XMLCALL xmlUCSIsPrivateUseArea (int code); +XMLPUBFUN int XMLCALL xmlUCSIsRunic (int code); +XMLPUBFUN int XMLCALL xmlUCSIsShavian (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSinhala (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSmallFormVariants (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSpacingModifierLetters (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSpecials (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSuperscriptsandSubscripts (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSupplementalArrowsA (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSupplementalArrowsB (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSupplementalMathematicalOperators (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSupplementaryPrivateUseAreaA (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSupplementaryPrivateUseAreaB (int code); +XMLPUBFUN int XMLCALL xmlUCSIsSyriac (int code); +XMLPUBFUN int XMLCALL xmlUCSIsTagalog (int code); +XMLPUBFUN int XMLCALL xmlUCSIsTagbanwa (int code); +XMLPUBFUN int XMLCALL xmlUCSIsTags (int code); +XMLPUBFUN int XMLCALL xmlUCSIsTaiLe (int code); +XMLPUBFUN int XMLCALL xmlUCSIsTaiXuanJingSymbols (int code); +XMLPUBFUN int XMLCALL xmlUCSIsTamil (int code); +XMLPUBFUN int XMLCALL xmlUCSIsTelugu (int code); +XMLPUBFUN int XMLCALL xmlUCSIsThaana (int code); +XMLPUBFUN int XMLCALL xmlUCSIsThai (int code); +XMLPUBFUN int XMLCALL xmlUCSIsTibetan (int code); +XMLPUBFUN int XMLCALL xmlUCSIsUgaritic (int code); +XMLPUBFUN int XMLCALL xmlUCSIsUnifiedCanadianAboriginalSyllabics (int code); +XMLPUBFUN int XMLCALL xmlUCSIsVariationSelectors (int code); +XMLPUBFUN int XMLCALL xmlUCSIsVariationSelectorsSupplement (int code); +XMLPUBFUN int XMLCALL xmlUCSIsYiRadicals (int code); +XMLPUBFUN int XMLCALL xmlUCSIsYiSyllables (int code); +XMLPUBFUN int XMLCALL xmlUCSIsYijingHexagramSymbols (int code); + +XMLPUBFUN int XMLCALL xmlUCSIsBlock (int code, const char *block); + +XMLPUBFUN int XMLCALL xmlUCSIsCatC (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatCc (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatCf (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatCo (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatCs (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatL (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatLl (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatLm (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatLo (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatLt (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatLu (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatM (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatMc (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatMe (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatMn (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatN (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatNd (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatNl (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatNo (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatP (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatPc (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatPd (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatPe (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatPf (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatPi (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatPo (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatPs (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatS (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatSc (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatSk (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatSm (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatSo (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatZ (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatZl (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatZp (int code); +XMLPUBFUN int XMLCALL xmlUCSIsCatZs (int code); + +XMLPUBFUN int XMLCALL xmlUCSIsCat (int code, const char *cat); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_UNICODE_ENABLED */ + +#endif /* __XML_UNICODE_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlversion.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlversion.h new file mode 100644 index 0000000000..c6d96e9e5d --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlversion.h @@ -0,0 +1,467 @@ +/* + * Summary: compile-time version informations + * Description: compile-time version informations for the XML library + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_VERSION_H__ +#define __XML_VERSION_H__ + +#include <libxml/xmlexports.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * use those to be sure nothing nasty will happen if + * your library and includes mismatch + */ +#ifndef LIBXML2_COMPILING_MSCCDEF +XMLPUBFUN void XMLCALL xmlCheckVersion(int version); +#endif /* LIBXML2_COMPILING_MSCCDEF */ + +/** + * LIBXML_DOTTED_VERSION: + * + * the version string like "1.2.3" + */ +#define LIBXML_DOTTED_VERSION "2.7.8" + +/** + * LIBXML_VERSION: + * + * the version number: 1.2.3 value is 10203 + */ +#define LIBXML_VERSION 20708 + +/** + * LIBXML_VERSION_STRING: + * + * the version number string, 1.2.3 value is "10203" + */ +#define LIBXML_VERSION_STRING "20708" + +/** + * LIBXML_VERSION_EXTRA: + * + * extra version information, used to show a CVS compilation + */ +#define LIBXML_VERSION_EXTRA "" + +/** + * LIBXML_TEST_VERSION: + * + * Macro to check that the libxml version in use is compatible with + * the version the software has been compiled against + */ +#define LIBXML_TEST_VERSION xmlCheckVersion(20708); + +#ifndef VMS +#if 0 +/** + * WITH_TRIO: + * + * defined if the trio support need to be configured in + */ +#define WITH_TRIO +#else +/** + * WITHOUT_TRIO: + * + * defined if the trio support should not be configured in + */ +#define WITHOUT_TRIO +#endif +#else /* VMS */ +/** + * WITH_TRIO: + * + * defined if the trio support need to be configured in + */ +#define WITH_TRIO 1 +#endif /* VMS */ + +/** + * LIBXML_THREAD_ENABLED: + * + * Whether the thread support is configured in + */ +#if 1 +#if defined(_REENTRANT) || defined(__MT__) || \ + (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L)) +#define LIBXML_THREAD_ENABLED +#endif +#endif + +/** + * LIBXML_TREE_ENABLED: + * + * Whether the DOM like tree manipulation API support is configured in + */ +#if 1 +#define LIBXML_TREE_ENABLED +#endif + +/** + * LIBXML_OUTPUT_ENABLED: + * + * Whether the serialization/saving support is configured in + */ +#if 1 +#define LIBXML_OUTPUT_ENABLED +#endif + +/** + * LIBXML_PUSH_ENABLED: + * + * Whether the push parsing interfaces are configured in + */ +#if 1 +#define LIBXML_PUSH_ENABLED +#endif + +/** + * LIBXML_READER_ENABLED: + * + * Whether the xmlReader parsing interface is configured in + */ +#if 1 +#define LIBXML_READER_ENABLED +#endif + +/** + * LIBXML_PATTERN_ENABLED: + * + * Whether the xmlPattern node selection interface is configured in + */ +#if 1 +#define LIBXML_PATTERN_ENABLED +#endif + +/** + * LIBXML_WRITER_ENABLED: + * + * Whether the xmlWriter saving interface is configured in + */ +#if 1 +#define LIBXML_WRITER_ENABLED +#endif + +/** + * LIBXML_SAX1_ENABLED: + * + * Whether the older SAX1 interface is configured in + */ +#if 1 +#define LIBXML_SAX1_ENABLED +#endif + +/** + * LIBXML_FTP_ENABLED: + * + * Whether the FTP support is configured in + */ +#if 1 +#define LIBXML_FTP_ENABLED +#endif + +/** + * LIBXML_HTTP_ENABLED: + * + * Whether the HTTP support is configured in + */ +#if 1 +#define LIBXML_HTTP_ENABLED +#endif + +/** + * LIBXML_VALID_ENABLED: + * + * Whether the DTD validation support is configured in + */ +#if 1 +#define LIBXML_VALID_ENABLED +#endif + +/** + * LIBXML_HTML_ENABLED: + * + * Whether the HTML support is configured in + */ +#if 1 +#define LIBXML_HTML_ENABLED +#endif + +/** + * LIBXML_LEGACY_ENABLED: + * + * Whether the deprecated APIs are compiled in for compatibility + */ +#if 1 +#define LIBXML_LEGACY_ENABLED +#endif + +/** + * LIBXML_C14N_ENABLED: + * + * Whether the Canonicalization support is configured in + */ +#if 1 +#define LIBXML_C14N_ENABLED +#endif + +/** + * LIBXML_CATALOG_ENABLED: + * + * Whether the Catalog support is configured in + */ +#if 1 +#define LIBXML_CATALOG_ENABLED +#endif + +/** + * LIBXML_DOCB_ENABLED: + * + * Whether the SGML Docbook support is configured in + */ +#if 1 +#define LIBXML_DOCB_ENABLED +#endif + +/** + * LIBXML_XPATH_ENABLED: + * + * Whether XPath is configured in + */ +#if 1 +#define LIBXML_XPATH_ENABLED +#endif + +/** + * LIBXML_XPTR_ENABLED: + * + * Whether XPointer is configured in + */ +#if 1 +#define LIBXML_XPTR_ENABLED +#endif + +/** + * LIBXML_XINCLUDE_ENABLED: + * + * Whether XInclude is configured in + */ +#if 1 +#define LIBXML_XINCLUDE_ENABLED +#endif + +/** + * LIBXML_ICONV_ENABLED: + * + * Whether iconv support is available + */ +#if 1 +#define LIBXML_ICONV_ENABLED +#endif + +/** + * LIBXML_ICU_ENABLED: + * + * Whether icu support is available + */ +#if 0 +#define LIBXML_ICU_ENABLED +#endif + +/** + * LIBXML_ISO8859X_ENABLED: + * + * Whether ISO-8859-* support is made available in case iconv is not + */ +#if 1 +#define LIBXML_ISO8859X_ENABLED +#endif + +/** + * LIBXML_DEBUG_ENABLED: + * + * Whether Debugging module is configured in + */ +#if 1 +#define LIBXML_DEBUG_ENABLED +#endif + +/** + * DEBUG_MEMORY_LOCATION: + * + * Whether the memory debugging is configured in + */ +#if 0 +#define DEBUG_MEMORY_LOCATION +#endif + +/** + * LIBXML_DEBUG_RUNTIME: + * + * Whether the runtime debugging is configured in + */ +#if 0 +#define LIBXML_DEBUG_RUNTIME +#endif + +/** + * LIBXML_UNICODE_ENABLED: + * + * Whether the Unicode related interfaces are compiled in + */ +#if 1 +#define LIBXML_UNICODE_ENABLED +#endif + +/** + * LIBXML_REGEXP_ENABLED: + * + * Whether the regular expressions interfaces are compiled in + */ +#if 1 +#define LIBXML_REGEXP_ENABLED +#endif + +/** + * LIBXML_AUTOMATA_ENABLED: + * + * Whether the automata interfaces are compiled in + */ +#if 1 +#define LIBXML_AUTOMATA_ENABLED +#endif + +/** + * LIBXML_EXPR_ENABLED: + * + * Whether the formal expressions interfaces are compiled in + */ +#if 1 +#define LIBXML_EXPR_ENABLED +#endif + +/** + * LIBXML_SCHEMAS_ENABLED: + * + * Whether the Schemas validation interfaces are compiled in + */ +#if 1 +#define LIBXML_SCHEMAS_ENABLED +#endif + +/** + * LIBXML_SCHEMATRON_ENABLED: + * + * Whether the Schematron validation interfaces are compiled in + */ +#if 1 +#define LIBXML_SCHEMATRON_ENABLED +#endif + +/** + * LIBXML_MODULES_ENABLED: + * + * Whether the module interfaces are compiled in + */ +#if 1 +#define LIBXML_MODULES_ENABLED +/** + * LIBXML_MODULE_EXTENSION: + * + * the string suffix used by dynamic modules (usually shared libraries) + */ +#define LIBXML_MODULE_EXTENSION ".so" +#endif + +/** + * LIBXML_ZLIB_ENABLED: + * + * Whether the Zlib support is compiled in + */ +#if 1 +#define LIBXML_ZLIB_ENABLED +#endif + +#ifdef __GNUC__ +#ifdef HAVE_ANSIDECL_H +#include <ansidecl.h> +#endif + +/** + * ATTRIBUTE_UNUSED: + * + * Macro used to signal to GCC unused function parameters + */ + +#ifndef ATTRIBUTE_UNUSED +#define ATTRIBUTE_UNUSED __attribute__((unused)) +#endif + +/** + * LIBXML_ATTR_ALLOC_SIZE: + * + * Macro used to indicate to GCC this is an allocator function + */ + +#ifndef LIBXML_ATTR_ALLOC_SIZE +# if ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3))) +# define LIBXML_ATTR_ALLOC_SIZE(x) __attribute__((alloc_size(x))) +# else +# define LIBXML_ATTR_ALLOC_SIZE(x) +# endif +#else +# define LIBXML_ATTR_ALLOC_SIZE(x) +#endif + +/** + * LIBXML_ATTR_FORMAT: + * + * Macro used to indicate to GCC the parameter are printf like + */ + +#ifndef LIBXML_ATTR_FORMAT +# if ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3))) +# define LIBXML_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args))) +# else +# define LIBXML_ATTR_FORMAT(fmt,args) +# endif +#else +# define LIBXML_ATTR_FORMAT(fmt,args) +#endif + +#else /* ! __GNUC__ */ +/** + * ATTRIBUTE_UNUSED: + * + * Macro used to signal to GCC unused function parameters + */ +#define ATTRIBUTE_UNUSED +/** + * LIBXML_ATTR_ALLOC_SIZE: + * + * Macro used to indicate to GCC this is an allocator function + */ +#define LIBXML_ATTR_ALLOC_SIZE(x) +/** + * LIBXML_ATTR_FORMAT: + * + * Macro used to indicate to GCC the parameter are printf like + */ +#define LIBXML_ATTR_FORMAT(fmt,args) +#endif /* __GNUC__ */ + +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#endif + + diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlversion.h.in b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlversion.h.in new file mode 100644 index 0000000000..9585654161 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlversion.h.in @@ -0,0 +1,467 @@ +/* + * Summary: compile-time version informations + * Description: compile-time version informations for the XML library + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_VERSION_H__ +#define __XML_VERSION_H__ + +#include <libxml/xmlexports.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * use those to be sure nothing nasty will happen if + * your library and includes mismatch + */ +#ifndef LIBXML2_COMPILING_MSCCDEF +XMLPUBFUN void XMLCALL xmlCheckVersion(int version); +#endif /* LIBXML2_COMPILING_MSCCDEF */ + +/** + * LIBXML_DOTTED_VERSION: + * + * the version string like "1.2.3" + */ +#define LIBXML_DOTTED_VERSION "@VERSION@" + +/** + * LIBXML_VERSION: + * + * the version number: 1.2.3 value is 10203 + */ +#define LIBXML_VERSION @LIBXML_VERSION_NUMBER@ + +/** + * LIBXML_VERSION_STRING: + * + * the version number string, 1.2.3 value is "10203" + */ +#define LIBXML_VERSION_STRING "@LIBXML_VERSION_NUMBER@" + +/** + * LIBXML_VERSION_EXTRA: + * + * extra version information, used to show a CVS compilation + */ +#define LIBXML_VERSION_EXTRA "@LIBXML_VERSION_EXTRA@" + +/** + * LIBXML_TEST_VERSION: + * + * Macro to check that the libxml version in use is compatible with + * the version the software has been compiled against + */ +#define LIBXML_TEST_VERSION xmlCheckVersion(@LIBXML_VERSION_NUMBER@); + +#ifndef VMS +#if @WITH_TRIO@ +/** + * WITH_TRIO: + * + * defined if the trio support need to be configured in + */ +#define WITH_TRIO +#else +/** + * WITHOUT_TRIO: + * + * defined if the trio support should not be configured in + */ +#define WITHOUT_TRIO +#endif +#else /* VMS */ +/** + * WITH_TRIO: + * + * defined if the trio support need to be configured in + */ +#define WITH_TRIO 1 +#endif /* VMS */ + +/** + * LIBXML_THREAD_ENABLED: + * + * Whether the thread support is configured in + */ +#if @WITH_THREADS@ +#if defined(_REENTRANT) || defined(__MT__) || \ + (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L)) +#define LIBXML_THREAD_ENABLED +#endif +#endif + +/** + * LIBXML_TREE_ENABLED: + * + * Whether the DOM like tree manipulation API support is configured in + */ +#if @WITH_TREE@ +#define LIBXML_TREE_ENABLED +#endif + +/** + * LIBXML_OUTPUT_ENABLED: + * + * Whether the serialization/saving support is configured in + */ +#if @WITH_OUTPUT@ +#define LIBXML_OUTPUT_ENABLED +#endif + +/** + * LIBXML_PUSH_ENABLED: + * + * Whether the push parsing interfaces are configured in + */ +#if @WITH_PUSH@ +#define LIBXML_PUSH_ENABLED +#endif + +/** + * LIBXML_READER_ENABLED: + * + * Whether the xmlReader parsing interface is configured in + */ +#if @WITH_READER@ +#define LIBXML_READER_ENABLED +#endif + +/** + * LIBXML_PATTERN_ENABLED: + * + * Whether the xmlPattern node selection interface is configured in + */ +#if @WITH_PATTERN@ +#define LIBXML_PATTERN_ENABLED +#endif + +/** + * LIBXML_WRITER_ENABLED: + * + * Whether the xmlWriter saving interface is configured in + */ +#if @WITH_WRITER@ +#define LIBXML_WRITER_ENABLED +#endif + +/** + * LIBXML_SAX1_ENABLED: + * + * Whether the older SAX1 interface is configured in + */ +#if @WITH_SAX1@ +#define LIBXML_SAX1_ENABLED +#endif + +/** + * LIBXML_FTP_ENABLED: + * + * Whether the FTP support is configured in + */ +#if @WITH_FTP@ +#define LIBXML_FTP_ENABLED +#endif + +/** + * LIBXML_HTTP_ENABLED: + * + * Whether the HTTP support is configured in + */ +#if @WITH_HTTP@ +#define LIBXML_HTTP_ENABLED +#endif + +/** + * LIBXML_VALID_ENABLED: + * + * Whether the DTD validation support is configured in + */ +#if @WITH_VALID@ +#define LIBXML_VALID_ENABLED +#endif + +/** + * LIBXML_HTML_ENABLED: + * + * Whether the HTML support is configured in + */ +#if @WITH_HTML@ +#define LIBXML_HTML_ENABLED +#endif + +/** + * LIBXML_LEGACY_ENABLED: + * + * Whether the deprecated APIs are compiled in for compatibility + */ +#if @WITH_LEGACY@ +#define LIBXML_LEGACY_ENABLED +#endif + +/** + * LIBXML_C14N_ENABLED: + * + * Whether the Canonicalization support is configured in + */ +#if @WITH_C14N@ +#define LIBXML_C14N_ENABLED +#endif + +/** + * LIBXML_CATALOG_ENABLED: + * + * Whether the Catalog support is configured in + */ +#if @WITH_CATALOG@ +#define LIBXML_CATALOG_ENABLED +#endif + +/** + * LIBXML_DOCB_ENABLED: + * + * Whether the SGML Docbook support is configured in + */ +#if @WITH_DOCB@ +#define LIBXML_DOCB_ENABLED +#endif + +/** + * LIBXML_XPATH_ENABLED: + * + * Whether XPath is configured in + */ +#if @WITH_XPATH@ +#define LIBXML_XPATH_ENABLED +#endif + +/** + * LIBXML_XPTR_ENABLED: + * + * Whether XPointer is configured in + */ +#if @WITH_XPTR@ +#define LIBXML_XPTR_ENABLED +#endif + +/** + * LIBXML_XINCLUDE_ENABLED: + * + * Whether XInclude is configured in + */ +#if @WITH_XINCLUDE@ +#define LIBXML_XINCLUDE_ENABLED +#endif + +/** + * LIBXML_ICONV_ENABLED: + * + * Whether iconv support is available + */ +#if @WITH_ICONV@ +#define LIBXML_ICONV_ENABLED +#endif + +/** + * LIBXML_ICU_ENABLED: + * + * Whether icu support is available + */ +#if @WITH_ICU@ +#define LIBXML_ICU_ENABLED +#endif + +/** + * LIBXML_ISO8859X_ENABLED: + * + * Whether ISO-8859-* support is made available in case iconv is not + */ +#if @WITH_ISO8859X@ +#define LIBXML_ISO8859X_ENABLED +#endif + +/** + * LIBXML_DEBUG_ENABLED: + * + * Whether Debugging module is configured in + */ +#if @WITH_DEBUG@ +#define LIBXML_DEBUG_ENABLED +#endif + +/** + * DEBUG_MEMORY_LOCATION: + * + * Whether the memory debugging is configured in + */ +#if @WITH_MEM_DEBUG@ +#define DEBUG_MEMORY_LOCATION +#endif + +/** + * LIBXML_DEBUG_RUNTIME: + * + * Whether the runtime debugging is configured in + */ +#if @WITH_RUN_DEBUG@ +#define LIBXML_DEBUG_RUNTIME +#endif + +/** + * LIBXML_UNICODE_ENABLED: + * + * Whether the Unicode related interfaces are compiled in + */ +#if @WITH_REGEXPS@ +#define LIBXML_UNICODE_ENABLED +#endif + +/** + * LIBXML_REGEXP_ENABLED: + * + * Whether the regular expressions interfaces are compiled in + */ +#if @WITH_REGEXPS@ +#define LIBXML_REGEXP_ENABLED +#endif + +/** + * LIBXML_AUTOMATA_ENABLED: + * + * Whether the automata interfaces are compiled in + */ +#if @WITH_REGEXPS@ +#define LIBXML_AUTOMATA_ENABLED +#endif + +/** + * LIBXML_EXPR_ENABLED: + * + * Whether the formal expressions interfaces are compiled in + */ +#if @WITH_SCHEMAS@ +#define LIBXML_EXPR_ENABLED +#endif + +/** + * LIBXML_SCHEMAS_ENABLED: + * + * Whether the Schemas validation interfaces are compiled in + */ +#if @WITH_SCHEMAS@ +#define LIBXML_SCHEMAS_ENABLED +#endif + +/** + * LIBXML_SCHEMATRON_ENABLED: + * + * Whether the Schematron validation interfaces are compiled in + */ +#if @WITH_SCHEMATRON@ +#define LIBXML_SCHEMATRON_ENABLED +#endif + +/** + * LIBXML_MODULES_ENABLED: + * + * Whether the module interfaces are compiled in + */ +#if @WITH_MODULES@ +#define LIBXML_MODULES_ENABLED +/** + * LIBXML_MODULE_EXTENSION: + * + * the string suffix used by dynamic modules (usually shared libraries) + */ +#define LIBXML_MODULE_EXTENSION "@MODULE_EXTENSION@" +#endif + +/** + * LIBXML_ZLIB_ENABLED: + * + * Whether the Zlib support is compiled in + */ +#if @WITH_ZLIB@ +#define LIBXML_ZLIB_ENABLED +#endif + +#ifdef __GNUC__ +#ifdef HAVE_ANSIDECL_H +#include <ansidecl.h> +#endif + +/** + * ATTRIBUTE_UNUSED: + * + * Macro used to signal to GCC unused function parameters + */ + +#ifndef ATTRIBUTE_UNUSED +#define ATTRIBUTE_UNUSED __attribute__((unused)) +#endif + +/** + * LIBXML_ATTR_ALLOC_SIZE: + * + * Macro used to indicate to GCC this is an allocator function + */ + +#ifndef LIBXML_ATTR_ALLOC_SIZE +# if ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3))) +# define LIBXML_ATTR_ALLOC_SIZE(x) __attribute__((alloc_size(x))) +# else +# define LIBXML_ATTR_ALLOC_SIZE(x) +# endif +#else +# define LIBXML_ATTR_ALLOC_SIZE(x) +#endif + +/** + * LIBXML_ATTR_FORMAT: + * + * Macro used to indicate to GCC the parameter are printf like + */ + +#ifndef LIBXML_ATTR_FORMAT +# if ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3))) +# define LIBXML_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args))) +# else +# define LIBXML_ATTR_FORMAT(fmt,args) +# endif +#else +# define LIBXML_ATTR_FORMAT(fmt,args) +#endif + +#else /* ! __GNUC__ */ +/** + * ATTRIBUTE_UNUSED: + * + * Macro used to signal to GCC unused function parameters + */ +#define ATTRIBUTE_UNUSED +/** + * LIBXML_ATTR_ALLOC_SIZE: + * + * Macro used to indicate to GCC this is an allocator function + */ +#define LIBXML_ATTR_ALLOC_SIZE(x) +/** + * LIBXML_ATTR_FORMAT: + * + * Macro used to indicate to GCC the parameter are printf like + */ +#define LIBXML_ATTR_FORMAT(fmt,args) +#endif /* __GNUC__ */ + +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#endif + + diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlwriter.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlwriter.h new file mode 100644 index 0000000000..91e683c88c --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xmlwriter.h @@ -0,0 +1,485 @@ + +/* + * Summary: text writing API for XML + * Description: text writing API for XML + * + * Copy: See Copyright for the status of this software. + * + * Author: Alfred Mickautsch <alfred@mickautsch.de> + */ + +#ifndef __XML_XMLWRITER_H__ +#define __XML_XMLWRITER_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_WRITER_ENABLED + +#include <stdarg.h> +#include <libxml/xmlIO.h> +#include <libxml/list.h> +#include <libxml/xmlstring.h> + +#ifdef __cplusplus +extern "C" { +#endif + + typedef struct _xmlTextWriter xmlTextWriter; + typedef xmlTextWriter *xmlTextWriterPtr; + +/* + * Constructors & Destructor + */ + XMLPUBFUN xmlTextWriterPtr XMLCALL + xmlNewTextWriter(xmlOutputBufferPtr out); + XMLPUBFUN xmlTextWriterPtr XMLCALL + xmlNewTextWriterFilename(const char *uri, int compression); + XMLPUBFUN xmlTextWriterPtr XMLCALL + xmlNewTextWriterMemory(xmlBufferPtr buf, int compression); + XMLPUBFUN xmlTextWriterPtr XMLCALL + xmlNewTextWriterPushParser(xmlParserCtxtPtr ctxt, int compression); + XMLPUBFUN xmlTextWriterPtr XMLCALL + xmlNewTextWriterDoc(xmlDocPtr * doc, int compression); + XMLPUBFUN xmlTextWriterPtr XMLCALL + xmlNewTextWriterTree(xmlDocPtr doc, xmlNodePtr node, + int compression); + XMLPUBFUN void XMLCALL xmlFreeTextWriter(xmlTextWriterPtr writer); + +/* + * Functions + */ + + +/* + * Document + */ + XMLPUBFUN int XMLCALL + xmlTextWriterStartDocument(xmlTextWriterPtr writer, + const char *version, + const char *encoding, + const char *standalone); + XMLPUBFUN int XMLCALL xmlTextWriterEndDocument(xmlTextWriterPtr + writer); + +/* + * Comments + */ + XMLPUBFUN int XMLCALL xmlTextWriterStartComment(xmlTextWriterPtr + writer); + XMLPUBFUN int XMLCALL xmlTextWriterEndComment(xmlTextWriterPtr writer); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatComment(xmlTextWriterPtr writer, + const char *format, ...) + LIBXML_ATTR_FORMAT(2,3); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatComment(xmlTextWriterPtr writer, + const char *format, + va_list argptr) + LIBXML_ATTR_FORMAT(2,0); + XMLPUBFUN int XMLCALL xmlTextWriterWriteComment(xmlTextWriterPtr + writer, + const xmlChar * + content); + +/* + * Elements + */ + XMLPUBFUN int XMLCALL + xmlTextWriterStartElement(xmlTextWriterPtr writer, + const xmlChar * name); + XMLPUBFUN int XMLCALL xmlTextWriterStartElementNS(xmlTextWriterPtr + writer, + const xmlChar * + prefix, + const xmlChar * name, + const xmlChar * + namespaceURI); + XMLPUBFUN int XMLCALL xmlTextWriterEndElement(xmlTextWriterPtr writer); + XMLPUBFUN int XMLCALL xmlTextWriterFullEndElement(xmlTextWriterPtr + writer); + +/* + * Elements conveniency functions + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatElement(xmlTextWriterPtr writer, + const xmlChar * name, + const char *format, ...) + LIBXML_ATTR_FORMAT(3,4); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatElement(xmlTextWriterPtr writer, + const xmlChar * name, + const char *format, + va_list argptr) + LIBXML_ATTR_FORMAT(3,0); + XMLPUBFUN int XMLCALL xmlTextWriterWriteElement(xmlTextWriterPtr + writer, + const xmlChar * name, + const xmlChar * + content); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatElementNS(xmlTextWriterPtr writer, + const xmlChar * prefix, + const xmlChar * name, + const xmlChar * namespaceURI, + const char *format, ...) + LIBXML_ATTR_FORMAT(5,6); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatElementNS(xmlTextWriterPtr writer, + const xmlChar * prefix, + const xmlChar * name, + const xmlChar * namespaceURI, + const char *format, + va_list argptr) + LIBXML_ATTR_FORMAT(5,0); + XMLPUBFUN int XMLCALL xmlTextWriterWriteElementNS(xmlTextWriterPtr + writer, + const xmlChar * + prefix, + const xmlChar * name, + const xmlChar * + namespaceURI, + const xmlChar * + content); + +/* + * Text + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatRaw(xmlTextWriterPtr writer, + const char *format, ...) + LIBXML_ATTR_FORMAT(2,3); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatRaw(xmlTextWriterPtr writer, + const char *format, va_list argptr) + LIBXML_ATTR_FORMAT(2,0); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteRawLen(xmlTextWriterPtr writer, + const xmlChar * content, int len); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteRaw(xmlTextWriterPtr writer, + const xmlChar * content); + XMLPUBFUN int XMLCALL xmlTextWriterWriteFormatString(xmlTextWriterPtr + writer, + const char + *format, ...) + LIBXML_ATTR_FORMAT(2,3); + XMLPUBFUN int XMLCALL xmlTextWriterWriteVFormatString(xmlTextWriterPtr + writer, + const char + *format, + va_list argptr) + LIBXML_ATTR_FORMAT(2,0); + XMLPUBFUN int XMLCALL xmlTextWriterWriteString(xmlTextWriterPtr writer, + const xmlChar * + content); + XMLPUBFUN int XMLCALL xmlTextWriterWriteBase64(xmlTextWriterPtr writer, + const char *data, + int start, int len); + XMLPUBFUN int XMLCALL xmlTextWriterWriteBinHex(xmlTextWriterPtr writer, + const char *data, + int start, int len); + +/* + * Attributes + */ + XMLPUBFUN int XMLCALL + xmlTextWriterStartAttribute(xmlTextWriterPtr writer, + const xmlChar * name); + XMLPUBFUN int XMLCALL xmlTextWriterStartAttributeNS(xmlTextWriterPtr + writer, + const xmlChar * + prefix, + const xmlChar * + name, + const xmlChar * + namespaceURI); + XMLPUBFUN int XMLCALL xmlTextWriterEndAttribute(xmlTextWriterPtr + writer); + +/* + * Attributes conveniency functions + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatAttribute(xmlTextWriterPtr writer, + const xmlChar * name, + const char *format, ...) + LIBXML_ATTR_FORMAT(3,4); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatAttribute(xmlTextWriterPtr writer, + const xmlChar * name, + const char *format, + va_list argptr) + LIBXML_ATTR_FORMAT(3,0); + XMLPUBFUN int XMLCALL xmlTextWriterWriteAttribute(xmlTextWriterPtr + writer, + const xmlChar * name, + const xmlChar * + content); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatAttributeNS(xmlTextWriterPtr writer, + const xmlChar * prefix, + const xmlChar * name, + const xmlChar * namespaceURI, + const char *format, ...) + LIBXML_ATTR_FORMAT(5,6); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatAttributeNS(xmlTextWriterPtr writer, + const xmlChar * prefix, + const xmlChar * name, + const xmlChar * namespaceURI, + const char *format, + va_list argptr) + LIBXML_ATTR_FORMAT(5,0); + XMLPUBFUN int XMLCALL xmlTextWriterWriteAttributeNS(xmlTextWriterPtr + writer, + const xmlChar * + prefix, + const xmlChar * + name, + const xmlChar * + namespaceURI, + const xmlChar * + content); + +/* + * PI's + */ + XMLPUBFUN int XMLCALL + xmlTextWriterStartPI(xmlTextWriterPtr writer, + const xmlChar * target); + XMLPUBFUN int XMLCALL xmlTextWriterEndPI(xmlTextWriterPtr writer); + +/* + * PI conveniency functions + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatPI(xmlTextWriterPtr writer, + const xmlChar * target, + const char *format, ...) + LIBXML_ATTR_FORMAT(3,4); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatPI(xmlTextWriterPtr writer, + const xmlChar * target, + const char *format, va_list argptr) + LIBXML_ATTR_FORMAT(3,0); + XMLPUBFUN int XMLCALL + xmlTextWriterWritePI(xmlTextWriterPtr writer, + const xmlChar * target, + const xmlChar * content); + +/** + * xmlTextWriterWriteProcessingInstruction: + * + * This macro maps to xmlTextWriterWritePI + */ +#define xmlTextWriterWriteProcessingInstruction xmlTextWriterWritePI + +/* + * CDATA + */ + XMLPUBFUN int XMLCALL xmlTextWriterStartCDATA(xmlTextWriterPtr writer); + XMLPUBFUN int XMLCALL xmlTextWriterEndCDATA(xmlTextWriterPtr writer); + +/* + * CDATA conveniency functions + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatCDATA(xmlTextWriterPtr writer, + const char *format, ...) + LIBXML_ATTR_FORMAT(2,3); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatCDATA(xmlTextWriterPtr writer, + const char *format, va_list argptr) + LIBXML_ATTR_FORMAT(2,0); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteCDATA(xmlTextWriterPtr writer, + const xmlChar * content); + +/* + * DTD + */ + XMLPUBFUN int XMLCALL + xmlTextWriterStartDTD(xmlTextWriterPtr writer, + const xmlChar * name, + const xmlChar * pubid, + const xmlChar * sysid); + XMLPUBFUN int XMLCALL xmlTextWriterEndDTD(xmlTextWriterPtr writer); + +/* + * DTD conveniency functions + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatDTD(xmlTextWriterPtr writer, + const xmlChar * name, + const xmlChar * pubid, + const xmlChar * sysid, + const char *format, ...) + LIBXML_ATTR_FORMAT(5,6); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatDTD(xmlTextWriterPtr writer, + const xmlChar * name, + const xmlChar * pubid, + const xmlChar * sysid, + const char *format, va_list argptr) + LIBXML_ATTR_FORMAT(5,0); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteDTD(xmlTextWriterPtr writer, + const xmlChar * name, + const xmlChar * pubid, + const xmlChar * sysid, + const xmlChar * subset); + +/** + * xmlTextWriterWriteDocType: + * + * this macro maps to xmlTextWriterWriteDTD + */ +#define xmlTextWriterWriteDocType xmlTextWriterWriteDTD + +/* + * DTD element definition + */ + XMLPUBFUN int XMLCALL + xmlTextWriterStartDTDElement(xmlTextWriterPtr writer, + const xmlChar * name); + XMLPUBFUN int XMLCALL xmlTextWriterEndDTDElement(xmlTextWriterPtr + writer); + +/* + * DTD element definition conveniency functions + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatDTDElement(xmlTextWriterPtr writer, + const xmlChar * name, + const char *format, ...) + LIBXML_ATTR_FORMAT(3,4); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatDTDElement(xmlTextWriterPtr writer, + const xmlChar * name, + const char *format, + va_list argptr) + LIBXML_ATTR_FORMAT(3,0); + XMLPUBFUN int XMLCALL xmlTextWriterWriteDTDElement(xmlTextWriterPtr + writer, + const xmlChar * + name, + const xmlChar * + content); + +/* + * DTD attribute list definition + */ + XMLPUBFUN int XMLCALL + xmlTextWriterStartDTDAttlist(xmlTextWriterPtr writer, + const xmlChar * name); + XMLPUBFUN int XMLCALL xmlTextWriterEndDTDAttlist(xmlTextWriterPtr + writer); + +/* + * DTD attribute list definition conveniency functions + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatDTDAttlist(xmlTextWriterPtr writer, + const xmlChar * name, + const char *format, ...) + LIBXML_ATTR_FORMAT(3,4); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatDTDAttlist(xmlTextWriterPtr writer, + const xmlChar * name, + const char *format, + va_list argptr) + LIBXML_ATTR_FORMAT(3,0); + XMLPUBFUN int XMLCALL xmlTextWriterWriteDTDAttlist(xmlTextWriterPtr + writer, + const xmlChar * + name, + const xmlChar * + content); + +/* + * DTD entity definition + */ + XMLPUBFUN int XMLCALL + xmlTextWriterStartDTDEntity(xmlTextWriterPtr writer, + int pe, const xmlChar * name); + XMLPUBFUN int XMLCALL xmlTextWriterEndDTDEntity(xmlTextWriterPtr + writer); + +/* + * DTD entity definition conveniency functions + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteFormatDTDInternalEntity(xmlTextWriterPtr writer, + int pe, + const xmlChar * name, + const char *format, ...) + LIBXML_ATTR_FORMAT(4,5); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteVFormatDTDInternalEntity(xmlTextWriterPtr writer, + int pe, + const xmlChar * name, + const char *format, + va_list argptr) + LIBXML_ATTR_FORMAT(4,0); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteDTDInternalEntity(xmlTextWriterPtr writer, + int pe, + const xmlChar * name, + const xmlChar * content); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteDTDExternalEntity(xmlTextWriterPtr writer, + int pe, + const xmlChar * name, + const xmlChar * pubid, + const xmlChar * sysid, + const xmlChar * ndataid); + XMLPUBFUN int XMLCALL + xmlTextWriterWriteDTDExternalEntityContents(xmlTextWriterPtr + writer, + const xmlChar * pubid, + const xmlChar * sysid, + const xmlChar * + ndataid); + XMLPUBFUN int XMLCALL xmlTextWriterWriteDTDEntity(xmlTextWriterPtr + writer, int pe, + const xmlChar * name, + const xmlChar * + pubid, + const xmlChar * + sysid, + const xmlChar * + ndataid, + const xmlChar * + content); + +/* + * DTD notation definition + */ + XMLPUBFUN int XMLCALL + xmlTextWriterWriteDTDNotation(xmlTextWriterPtr writer, + const xmlChar * name, + const xmlChar * pubid, + const xmlChar * sysid); + +/* + * Indentation + */ + XMLPUBFUN int XMLCALL + xmlTextWriterSetIndent(xmlTextWriterPtr writer, int indent); + XMLPUBFUN int XMLCALL + xmlTextWriterSetIndentString(xmlTextWriterPtr writer, + const xmlChar * str); + +/* + * misc + */ + XMLPUBFUN int XMLCALL xmlTextWriterFlush(xmlTextWriterPtr writer); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_WRITER_ENABLED */ + +#endif /* __XML_XMLWRITER_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xpath.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xpath.h new file mode 100644 index 0000000000..1a9e30eba1 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xpath.h @@ -0,0 +1,546 @@ +/* + * Summary: XML Path Language implementation + * Description: API for the XML Path Language implementation + * + * XML Path Language implementation + * XPath is a language for addressing parts of an XML document, + * designed to be used by both XSLT and XPointer + * http://www.w3.org/TR/xpath + * + * Implements + * W3C Recommendation 16 November 1999 + * http://www.w3.org/TR/1999/REC-xpath-19991116 + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_XPATH_H__ +#define __XML_XPATH_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_XPATH_ENABLED + +#include <libxml/xmlerror.h> +#include <libxml/tree.h> +#include <libxml/hash.h> +#endif /* LIBXML_XPATH_ENABLED */ + +#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) +#ifdef __cplusplus +extern "C" { +#endif +#endif /* LIBXML_XPATH_ENABLED or LIBXML_SCHEMAS_ENABLED */ + +#ifdef LIBXML_XPATH_ENABLED + +typedef struct _xmlXPathContext xmlXPathContext; +typedef xmlXPathContext *xmlXPathContextPtr; +typedef struct _xmlXPathParserContext xmlXPathParserContext; +typedef xmlXPathParserContext *xmlXPathParserContextPtr; + +/** + * The set of XPath error codes. + */ + +typedef enum { + XPATH_EXPRESSION_OK = 0, + XPATH_NUMBER_ERROR, + XPATH_UNFINISHED_LITERAL_ERROR, + XPATH_START_LITERAL_ERROR, + XPATH_VARIABLE_REF_ERROR, + XPATH_UNDEF_VARIABLE_ERROR, + XPATH_INVALID_PREDICATE_ERROR, + XPATH_EXPR_ERROR, + XPATH_UNCLOSED_ERROR, + XPATH_UNKNOWN_FUNC_ERROR, + XPATH_INVALID_OPERAND, + XPATH_INVALID_TYPE, + XPATH_INVALID_ARITY, + XPATH_INVALID_CTXT_SIZE, + XPATH_INVALID_CTXT_POSITION, + XPATH_MEMORY_ERROR, + XPTR_SYNTAX_ERROR, + XPTR_RESOURCE_ERROR, + XPTR_SUB_RESOURCE_ERROR, + XPATH_UNDEF_PREFIX_ERROR, + XPATH_ENCODING_ERROR, + XPATH_INVALID_CHAR_ERROR, + XPATH_INVALID_CTXT +} xmlXPathError; + +/* + * A node-set (an unordered collection of nodes without duplicates). + */ +typedef struct _xmlNodeSet xmlNodeSet; +typedef xmlNodeSet *xmlNodeSetPtr; +struct _xmlNodeSet { + int nodeNr; /* number of nodes in the set */ + int nodeMax; /* size of the array as allocated */ + xmlNodePtr *nodeTab; /* array of nodes in no particular order */ + /* @@ with_ns to check wether namespace nodes should be looked at @@ */ +}; + +/* + * An expression is evaluated to yield an object, which + * has one of the following four basic types: + * - node-set + * - boolean + * - number + * - string + * + * @@ XPointer will add more types ! + */ + +typedef enum { + XPATH_UNDEFINED = 0, + XPATH_NODESET = 1, + XPATH_BOOLEAN = 2, + XPATH_NUMBER = 3, + XPATH_STRING = 4, + XPATH_POINT = 5, + XPATH_RANGE = 6, + XPATH_LOCATIONSET = 7, + XPATH_USERS = 8, + XPATH_XSLT_TREE = 9 /* An XSLT value tree, non modifiable */ +} xmlXPathObjectType; + +typedef struct _xmlXPathObject xmlXPathObject; +typedef xmlXPathObject *xmlXPathObjectPtr; +struct _xmlXPathObject { + xmlXPathObjectType type; + xmlNodeSetPtr nodesetval; + int boolval; + double floatval; + xmlChar *stringval; + void *user; + int index; + void *user2; + int index2; +}; + +/** + * xmlXPathConvertFunc: + * @obj: an XPath object + * @type: the number of the target type + * + * A conversion function is associated to a type and used to cast + * the new type to primitive values. + * + * Returns -1 in case of error, 0 otherwise + */ +typedef int (*xmlXPathConvertFunc) (xmlXPathObjectPtr obj, int type); + +/* + * Extra type: a name and a conversion function. + */ + +typedef struct _xmlXPathType xmlXPathType; +typedef xmlXPathType *xmlXPathTypePtr; +struct _xmlXPathType { + const xmlChar *name; /* the type name */ + xmlXPathConvertFunc func; /* the conversion function */ +}; + +/* + * Extra variable: a name and a value. + */ + +typedef struct _xmlXPathVariable xmlXPathVariable; +typedef xmlXPathVariable *xmlXPathVariablePtr; +struct _xmlXPathVariable { + const xmlChar *name; /* the variable name */ + xmlXPathObjectPtr value; /* the value */ +}; + +/** + * xmlXPathEvalFunc: + * @ctxt: an XPath parser context + * @nargs: the number of arguments passed to the function + * + * An XPath evaluation function, the parameters are on the XPath context stack. + */ + +typedef void (*xmlXPathEvalFunc)(xmlXPathParserContextPtr ctxt, + int nargs); + +/* + * Extra function: a name and a evaluation function. + */ + +typedef struct _xmlXPathFunct xmlXPathFunct; +typedef xmlXPathFunct *xmlXPathFuncPtr; +struct _xmlXPathFunct { + const xmlChar *name; /* the function name */ + xmlXPathEvalFunc func; /* the evaluation function */ +}; + +/** + * xmlXPathAxisFunc: + * @ctxt: the XPath interpreter context + * @cur: the previous node being explored on that axis + * + * An axis traversal function. To traverse an axis, the engine calls + * the first time with cur == NULL and repeat until the function returns + * NULL indicating the end of the axis traversal. + * + * Returns the next node in that axis or NULL if at the end of the axis. + */ + +typedef xmlXPathObjectPtr (*xmlXPathAxisFunc) (xmlXPathParserContextPtr ctxt, + xmlXPathObjectPtr cur); + +/* + * Extra axis: a name and an axis function. + */ + +typedef struct _xmlXPathAxis xmlXPathAxis; +typedef xmlXPathAxis *xmlXPathAxisPtr; +struct _xmlXPathAxis { + const xmlChar *name; /* the axis name */ + xmlXPathAxisFunc func; /* the search function */ +}; + +/** + * xmlXPathFunction: + * @ctxt: the XPath interprestation context + * @nargs: the number of arguments + * + * An XPath function. + * The arguments (if any) are popped out from the context stack + * and the result is pushed on the stack. + */ + +typedef void (*xmlXPathFunction) (xmlXPathParserContextPtr ctxt, int nargs); + +/* + * Function and Variable Lookup. + */ + +/** + * xmlXPathVariableLookupFunc: + * @ctxt: an XPath context + * @name: name of the variable + * @ns_uri: the namespace name hosting this variable + * + * Prototype for callbacks used to plug variable lookup in the XPath + * engine. + * + * Returns the XPath object value or NULL if not found. + */ +typedef xmlXPathObjectPtr (*xmlXPathVariableLookupFunc) (void *ctxt, + const xmlChar *name, + const xmlChar *ns_uri); + +/** + * xmlXPathFuncLookupFunc: + * @ctxt: an XPath context + * @name: name of the function + * @ns_uri: the namespace name hosting this function + * + * Prototype for callbacks used to plug function lookup in the XPath + * engine. + * + * Returns the XPath function or NULL if not found. + */ +typedef xmlXPathFunction (*xmlXPathFuncLookupFunc) (void *ctxt, + const xmlChar *name, + const xmlChar *ns_uri); + +/** + * xmlXPathFlags: + * Flags for XPath engine compilation and runtime + */ +/** + * XML_XPATH_CHECKNS: + * + * check namespaces at compilation + */ +#define XML_XPATH_CHECKNS (1<<0) +/** + * XML_XPATH_NOVAR: + * + * forbid variables in expression + */ +#define XML_XPATH_NOVAR (1<<1) + +/** + * xmlXPathContext: + * + * Expression evaluation occurs with respect to a context. + * he context consists of: + * - a node (the context node) + * - a node list (the context node list) + * - a set of variable bindings + * - a function library + * - the set of namespace declarations in scope for the expression + * Following the switch to hash tables, this need to be trimmed up at + * the next binary incompatible release. + * The node may be modified when the context is passed to libxml2 + * for an XPath evaluation so you may need to initialize it again + * before the next call. + */ + +struct _xmlXPathContext { + xmlDocPtr doc; /* The current document */ + xmlNodePtr node; /* The current node */ + + int nb_variables_unused; /* unused (hash table) */ + int max_variables_unused; /* unused (hash table) */ + xmlHashTablePtr varHash; /* Hash table of defined variables */ + + int nb_types; /* number of defined types */ + int max_types; /* max number of types */ + xmlXPathTypePtr types; /* Array of defined types */ + + int nb_funcs_unused; /* unused (hash table) */ + int max_funcs_unused; /* unused (hash table) */ + xmlHashTablePtr funcHash; /* Hash table of defined funcs */ + + int nb_axis; /* number of defined axis */ + int max_axis; /* max number of axis */ + xmlXPathAxisPtr axis; /* Array of defined axis */ + + /* the namespace nodes of the context node */ + xmlNsPtr *namespaces; /* Array of namespaces */ + int nsNr; /* number of namespace in scope */ + void *user; /* function to free */ + + /* extra variables */ + int contextSize; /* the context size */ + int proximityPosition; /* the proximity position */ + + /* extra stuff for XPointer */ + int xptr; /* is this an XPointer context? */ + xmlNodePtr here; /* for here() */ + xmlNodePtr origin; /* for origin() */ + + /* the set of namespace declarations in scope for the expression */ + xmlHashTablePtr nsHash; /* The namespaces hash table */ + xmlXPathVariableLookupFunc varLookupFunc;/* variable lookup func */ + void *varLookupData; /* variable lookup data */ + + /* Possibility to link in an extra item */ + void *extra; /* needed for XSLT */ + + /* The function name and URI when calling a function */ + const xmlChar *function; + const xmlChar *functionURI; + + /* function lookup function and data */ + xmlXPathFuncLookupFunc funcLookupFunc;/* function lookup func */ + void *funcLookupData; /* function lookup data */ + + /* temporary namespace lists kept for walking the namespace axis */ + xmlNsPtr *tmpNsList; /* Array of namespaces */ + int tmpNsNr; /* number of namespaces in scope */ + + /* error reporting mechanism */ + void *userData; /* user specific data block */ + xmlStructuredErrorFunc error; /* the callback in case of errors */ + xmlError lastError; /* the last error */ + xmlNodePtr debugNode; /* the source node XSLT */ + + /* dictionary */ + xmlDictPtr dict; /* dictionary if any */ + + int flags; /* flags to control compilation */ + + /* Cache for reusal of XPath objects */ + void *cache; +}; + +/* + * The structure of a compiled expression form is not public. + */ + +typedef struct _xmlXPathCompExpr xmlXPathCompExpr; +typedef xmlXPathCompExpr *xmlXPathCompExprPtr; + +/** + * xmlXPathParserContext: + * + * An XPath parser context. It contains pure parsing informations, + * an xmlXPathContext, and the stack of objects. + */ +struct _xmlXPathParserContext { + const xmlChar *cur; /* the current char being parsed */ + const xmlChar *base; /* the full expression */ + + int error; /* error code */ + + xmlXPathContextPtr context; /* the evaluation context */ + xmlXPathObjectPtr value; /* the current value */ + int valueNr; /* number of values stacked */ + int valueMax; /* max number of values stacked */ + xmlXPathObjectPtr *valueTab; /* stack of values */ + + xmlXPathCompExprPtr comp; /* the precompiled expression */ + int xptr; /* it this an XPointer expression */ + xmlNodePtr ancestor; /* used for walking preceding axis */ +}; + +/************************************************************************ + * * + * Public API * + * * + ************************************************************************/ + +/** + * Objects and Nodesets handling + */ + +XMLPUBVAR double xmlXPathNAN; +XMLPUBVAR double xmlXPathPINF; +XMLPUBVAR double xmlXPathNINF; + +/* These macros may later turn into functions */ +/** + * xmlXPathNodeSetGetLength: + * @ns: a node-set + * + * Implement a functionality similar to the DOM NodeList.length. + * + * Returns the number of nodes in the node-set. + */ +#define xmlXPathNodeSetGetLength(ns) ((ns) ? (ns)->nodeNr : 0) +/** + * xmlXPathNodeSetItem: + * @ns: a node-set + * @index: index of a node in the set + * + * Implements a functionality similar to the DOM NodeList.item(). + * + * Returns the xmlNodePtr at the given @index in @ns or NULL if + * @index is out of range (0 to length-1) + */ +#define xmlXPathNodeSetItem(ns, index) \ + ((((ns) != NULL) && \ + ((index) >= 0) && ((index) < (ns)->nodeNr)) ? \ + (ns)->nodeTab[(index)] \ + : NULL) +/** + * xmlXPathNodeSetIsEmpty: + * @ns: a node-set + * + * Checks whether @ns is empty or not. + * + * Returns %TRUE if @ns is an empty node-set. + */ +#define xmlXPathNodeSetIsEmpty(ns) \ + (((ns) == NULL) || ((ns)->nodeNr == 0) || ((ns)->nodeTab == NULL)) + + +XMLPUBFUN void XMLCALL + xmlXPathFreeObject (xmlXPathObjectPtr obj); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathNodeSetCreate (xmlNodePtr val); +XMLPUBFUN void XMLCALL + xmlXPathFreeNodeSetList (xmlXPathObjectPtr obj); +XMLPUBFUN void XMLCALL + xmlXPathFreeNodeSet (xmlNodeSetPtr obj); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathObjectCopy (xmlXPathObjectPtr val); +XMLPUBFUN int XMLCALL + xmlXPathCmpNodes (xmlNodePtr node1, + xmlNodePtr node2); +/** + * Conversion functions to basic types. + */ +XMLPUBFUN int XMLCALL + xmlXPathCastNumberToBoolean (double val); +XMLPUBFUN int XMLCALL + xmlXPathCastStringToBoolean (const xmlChar * val); +XMLPUBFUN int XMLCALL + xmlXPathCastNodeSetToBoolean(xmlNodeSetPtr ns); +XMLPUBFUN int XMLCALL + xmlXPathCastToBoolean (xmlXPathObjectPtr val); + +XMLPUBFUN double XMLCALL + xmlXPathCastBooleanToNumber (int val); +XMLPUBFUN double XMLCALL + xmlXPathCastStringToNumber (const xmlChar * val); +XMLPUBFUN double XMLCALL + xmlXPathCastNodeToNumber (xmlNodePtr node); +XMLPUBFUN double XMLCALL + xmlXPathCastNodeSetToNumber (xmlNodeSetPtr ns); +XMLPUBFUN double XMLCALL + xmlXPathCastToNumber (xmlXPathObjectPtr val); + +XMLPUBFUN xmlChar * XMLCALL + xmlXPathCastBooleanToString (int val); +XMLPUBFUN xmlChar * XMLCALL + xmlXPathCastNumberToString (double val); +XMLPUBFUN xmlChar * XMLCALL + xmlXPathCastNodeToString (xmlNodePtr node); +XMLPUBFUN xmlChar * XMLCALL + xmlXPathCastNodeSetToString (xmlNodeSetPtr ns); +XMLPUBFUN xmlChar * XMLCALL + xmlXPathCastToString (xmlXPathObjectPtr val); + +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathConvertBoolean (xmlXPathObjectPtr val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathConvertNumber (xmlXPathObjectPtr val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathConvertString (xmlXPathObjectPtr val); + +/** + * Context handling. + */ +XMLPUBFUN xmlXPathContextPtr XMLCALL + xmlXPathNewContext (xmlDocPtr doc); +XMLPUBFUN void XMLCALL + xmlXPathFreeContext (xmlXPathContextPtr ctxt); +XMLPUBFUN int XMLCALL + xmlXPathContextSetCache(xmlXPathContextPtr ctxt, + int active, + int value, + int options); +/** + * Evaluation functions. + */ +XMLPUBFUN long XMLCALL + xmlXPathOrderDocElems (xmlDocPtr doc); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathEval (const xmlChar *str, + xmlXPathContextPtr ctx); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathEvalExpression (const xmlChar *str, + xmlXPathContextPtr ctxt); +XMLPUBFUN int XMLCALL + xmlXPathEvalPredicate (xmlXPathContextPtr ctxt, + xmlXPathObjectPtr res); +/** + * Separate compilation/evaluation entry points. + */ +XMLPUBFUN xmlXPathCompExprPtr XMLCALL + xmlXPathCompile (const xmlChar *str); +XMLPUBFUN xmlXPathCompExprPtr XMLCALL + xmlXPathCtxtCompile (xmlXPathContextPtr ctxt, + const xmlChar *str); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathCompiledEval (xmlXPathCompExprPtr comp, + xmlXPathContextPtr ctx); +XMLPUBFUN int XMLCALL + xmlXPathCompiledEvalToBoolean(xmlXPathCompExprPtr comp, + xmlXPathContextPtr ctxt); +XMLPUBFUN void XMLCALL + xmlXPathFreeCompExpr (xmlXPathCompExprPtr comp); +#endif /* LIBXML_XPATH_ENABLED */ +#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) +XMLPUBFUN void XMLCALL + xmlXPathInit (void); +XMLPUBFUN int XMLCALL + xmlXPathIsNaN (double val); +XMLPUBFUN int XMLCALL + xmlXPathIsInf (double val); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_XPATH_ENABLED or LIBXML_SCHEMAS_ENABLED*/ +#endif /* ! __XML_XPATH_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xpathInternals.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xpathInternals.h new file mode 100644 index 0000000000..dcd524343e --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xpathInternals.h @@ -0,0 +1,630 @@ +/* + * Summary: internal interfaces for XML Path Language implementation + * Description: internal interfaces for XML Path Language implementation + * used to build new modules on top of XPath like XPointer and + * XSLT + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_XPATH_INTERNALS_H__ +#define __XML_XPATH_INTERNALS_H__ + +#include <libxml/xmlversion.h> +#include <libxml/xpath.h> + +#ifdef LIBXML_XPATH_ENABLED + +#ifdef __cplusplus +extern "C" { +#endif + +/************************************************************************ + * * + * Helpers * + * * + ************************************************************************/ + +/* + * Many of these macros may later turn into functions. They + * shouldn't be used in #ifdef's preprocessor instructions. + */ +/** + * xmlXPathSetError: + * @ctxt: an XPath parser context + * @err: an xmlXPathError code + * + * Raises an error. + */ +#define xmlXPathSetError(ctxt, err) \ + { xmlXPatherror((ctxt), __FILE__, __LINE__, (err)); \ + if ((ctxt) != NULL) (ctxt)->error = (err); } + +/** + * xmlXPathSetArityError: + * @ctxt: an XPath parser context + * + * Raises an XPATH_INVALID_ARITY error. + */ +#define xmlXPathSetArityError(ctxt) \ + xmlXPathSetError((ctxt), XPATH_INVALID_ARITY) + +/** + * xmlXPathSetTypeError: + * @ctxt: an XPath parser context + * + * Raises an XPATH_INVALID_TYPE error. + */ +#define xmlXPathSetTypeError(ctxt) \ + xmlXPathSetError((ctxt), XPATH_INVALID_TYPE) + +/** + * xmlXPathGetError: + * @ctxt: an XPath parser context + * + * Get the error code of an XPath context. + * + * Returns the context error. + */ +#define xmlXPathGetError(ctxt) ((ctxt)->error) + +/** + * xmlXPathCheckError: + * @ctxt: an XPath parser context + * + * Check if an XPath error was raised. + * + * Returns true if an error has been raised, false otherwise. + */ +#define xmlXPathCheckError(ctxt) ((ctxt)->error != XPATH_EXPRESSION_OK) + +/** + * xmlXPathGetDocument: + * @ctxt: an XPath parser context + * + * Get the document of an XPath context. + * + * Returns the context document. + */ +#define xmlXPathGetDocument(ctxt) ((ctxt)->context->doc) + +/** + * xmlXPathGetContextNode: + * @ctxt: an XPath parser context + * + * Get the context node of an XPath context. + * + * Returns the context node. + */ +#define xmlXPathGetContextNode(ctxt) ((ctxt)->context->node) + +XMLPUBFUN int XMLCALL + xmlXPathPopBoolean (xmlXPathParserContextPtr ctxt); +XMLPUBFUN double XMLCALL + xmlXPathPopNumber (xmlXPathParserContextPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlXPathPopString (xmlXPathParserContextPtr ctxt); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathPopNodeSet (xmlXPathParserContextPtr ctxt); +XMLPUBFUN void * XMLCALL + xmlXPathPopExternal (xmlXPathParserContextPtr ctxt); + +/** + * xmlXPathReturnBoolean: + * @ctxt: an XPath parser context + * @val: a boolean + * + * Pushes the boolean @val on the context stack. + */ +#define xmlXPathReturnBoolean(ctxt, val) \ + valuePush((ctxt), xmlXPathNewBoolean(val)) + +/** + * xmlXPathReturnTrue: + * @ctxt: an XPath parser context + * + * Pushes true on the context stack. + */ +#define xmlXPathReturnTrue(ctxt) xmlXPathReturnBoolean((ctxt), 1) + +/** + * xmlXPathReturnFalse: + * @ctxt: an XPath parser context + * + * Pushes false on the context stack. + */ +#define xmlXPathReturnFalse(ctxt) xmlXPathReturnBoolean((ctxt), 0) + +/** + * xmlXPathReturnNumber: + * @ctxt: an XPath parser context + * @val: a double + * + * Pushes the double @val on the context stack. + */ +#define xmlXPathReturnNumber(ctxt, val) \ + valuePush((ctxt), xmlXPathNewFloat(val)) + +/** + * xmlXPathReturnString: + * @ctxt: an XPath parser context + * @str: a string + * + * Pushes the string @str on the context stack. + */ +#define xmlXPathReturnString(ctxt, str) \ + valuePush((ctxt), xmlXPathWrapString(str)) + +/** + * xmlXPathReturnEmptyString: + * @ctxt: an XPath parser context + * + * Pushes an empty string on the stack. + */ +#define xmlXPathReturnEmptyString(ctxt) \ + valuePush((ctxt), xmlXPathNewCString("")) + +/** + * xmlXPathReturnNodeSet: + * @ctxt: an XPath parser context + * @ns: a node-set + * + * Pushes the node-set @ns on the context stack. + */ +#define xmlXPathReturnNodeSet(ctxt, ns) \ + valuePush((ctxt), xmlXPathWrapNodeSet(ns)) + +/** + * xmlXPathReturnEmptyNodeSet: + * @ctxt: an XPath parser context + * + * Pushes an empty node-set on the context stack. + */ +#define xmlXPathReturnEmptyNodeSet(ctxt) \ + valuePush((ctxt), xmlXPathNewNodeSet(NULL)) + +/** + * xmlXPathReturnExternal: + * @ctxt: an XPath parser context + * @val: user data + * + * Pushes user data on the context stack. + */ +#define xmlXPathReturnExternal(ctxt, val) \ + valuePush((ctxt), xmlXPathWrapExternal(val)) + +/** + * xmlXPathStackIsNodeSet: + * @ctxt: an XPath parser context + * + * Check if the current value on the XPath stack is a node set or + * an XSLT value tree. + * + * Returns true if the current object on the stack is a node-set. + */ +#define xmlXPathStackIsNodeSet(ctxt) \ + (((ctxt)->value != NULL) \ + && (((ctxt)->value->type == XPATH_NODESET) \ + || ((ctxt)->value->type == XPATH_XSLT_TREE))) + +/** + * xmlXPathStackIsExternal: + * @ctxt: an XPath parser context + * + * Checks if the current value on the XPath stack is an external + * object. + * + * Returns true if the current object on the stack is an external + * object. + */ +#define xmlXPathStackIsExternal(ctxt) \ + ((ctxt->value != NULL) && (ctxt->value->type == XPATH_USERS)) + +/** + * xmlXPathEmptyNodeSet: + * @ns: a node-set + * + * Empties a node-set. + */ +#define xmlXPathEmptyNodeSet(ns) \ + { while ((ns)->nodeNr > 0) (ns)->nodeTab[(ns)->nodeNr--] = NULL; } + +/** + * CHECK_ERROR: + * + * Macro to return from the function if an XPath error was detected. + */ +#define CHECK_ERROR \ + if (ctxt->error != XPATH_EXPRESSION_OK) return + +/** + * CHECK_ERROR0: + * + * Macro to return 0 from the function if an XPath error was detected. + */ +#define CHECK_ERROR0 \ + if (ctxt->error != XPATH_EXPRESSION_OK) return(0) + +/** + * XP_ERROR: + * @X: the error code + * + * Macro to raise an XPath error and return. + */ +#define XP_ERROR(X) \ + { xmlXPathErr(ctxt, X); return; } + +/** + * XP_ERROR0: + * @X: the error code + * + * Macro to raise an XPath error and return 0. + */ +#define XP_ERROR0(X) \ + { xmlXPathErr(ctxt, X); return(0); } + +/** + * CHECK_TYPE: + * @typeval: the XPath type + * + * Macro to check that the value on top of the XPath stack is of a given + * type. + */ +#define CHECK_TYPE(typeval) \ + if ((ctxt->value == NULL) || (ctxt->value->type != typeval)) \ + XP_ERROR(XPATH_INVALID_TYPE) + +/** + * CHECK_TYPE0: + * @typeval: the XPath type + * + * Macro to check that the value on top of the XPath stack is of a given + * type. Return(0) in case of failure + */ +#define CHECK_TYPE0(typeval) \ + if ((ctxt->value == NULL) || (ctxt->value->type != typeval)) \ + XP_ERROR0(XPATH_INVALID_TYPE) + +/** + * CHECK_ARITY: + * @x: the number of expected args + * + * Macro to check that the number of args passed to an XPath function matches. + */ +#define CHECK_ARITY(x) \ + if (ctxt == NULL) return; \ + if (nargs != (x)) \ + XP_ERROR(XPATH_INVALID_ARITY); + +/** + * CAST_TO_STRING: + * + * Macro to try to cast the value on the top of the XPath stack to a string. + */ +#define CAST_TO_STRING \ + if ((ctxt->value != NULL) && (ctxt->value->type != XPATH_STRING)) \ + xmlXPathStringFunction(ctxt, 1); + +/** + * CAST_TO_NUMBER: + * + * Macro to try to cast the value on the top of the XPath stack to a number. + */ +#define CAST_TO_NUMBER \ + if ((ctxt->value != NULL) && (ctxt->value->type != XPATH_NUMBER)) \ + xmlXPathNumberFunction(ctxt, 1); + +/** + * CAST_TO_BOOLEAN: + * + * Macro to try to cast the value on the top of the XPath stack to a boolean. + */ +#define CAST_TO_BOOLEAN \ + if ((ctxt->value != NULL) && (ctxt->value->type != XPATH_BOOLEAN)) \ + xmlXPathBooleanFunction(ctxt, 1); + +/* + * Variable Lookup forwarding. + */ + +XMLPUBFUN void XMLCALL + xmlXPathRegisterVariableLookup (xmlXPathContextPtr ctxt, + xmlXPathVariableLookupFunc f, + void *data); + +/* + * Function Lookup forwarding. + */ + +XMLPUBFUN void XMLCALL + xmlXPathRegisterFuncLookup (xmlXPathContextPtr ctxt, + xmlXPathFuncLookupFunc f, + void *funcCtxt); + +/* + * Error reporting. + */ +XMLPUBFUN void XMLCALL + xmlXPatherror (xmlXPathParserContextPtr ctxt, + const char *file, + int line, + int no); + +XMLPUBFUN void XMLCALL + xmlXPathErr (xmlXPathParserContextPtr ctxt, + int error); + +#ifdef LIBXML_DEBUG_ENABLED +XMLPUBFUN void XMLCALL + xmlXPathDebugDumpObject (FILE *output, + xmlXPathObjectPtr cur, + int depth); +XMLPUBFUN void XMLCALL + xmlXPathDebugDumpCompExpr(FILE *output, + xmlXPathCompExprPtr comp, + int depth); +#endif +/** + * NodeSet handling. + */ +XMLPUBFUN int XMLCALL + xmlXPathNodeSetContains (xmlNodeSetPtr cur, + xmlNodePtr val); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathDifference (xmlNodeSetPtr nodes1, + xmlNodeSetPtr nodes2); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathIntersection (xmlNodeSetPtr nodes1, + xmlNodeSetPtr nodes2); + +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathDistinctSorted (xmlNodeSetPtr nodes); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathDistinct (xmlNodeSetPtr nodes); + +XMLPUBFUN int XMLCALL + xmlXPathHasSameNodes (xmlNodeSetPtr nodes1, + xmlNodeSetPtr nodes2); + +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathNodeLeadingSorted (xmlNodeSetPtr nodes, + xmlNodePtr node); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathLeadingSorted (xmlNodeSetPtr nodes1, + xmlNodeSetPtr nodes2); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathNodeLeading (xmlNodeSetPtr nodes, + xmlNodePtr node); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathLeading (xmlNodeSetPtr nodes1, + xmlNodeSetPtr nodes2); + +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathNodeTrailingSorted (xmlNodeSetPtr nodes, + xmlNodePtr node); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathTrailingSorted (xmlNodeSetPtr nodes1, + xmlNodeSetPtr nodes2); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathNodeTrailing (xmlNodeSetPtr nodes, + xmlNodePtr node); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathTrailing (xmlNodeSetPtr nodes1, + xmlNodeSetPtr nodes2); + + +/** + * Extending a context. + */ + +XMLPUBFUN int XMLCALL + xmlXPathRegisterNs (xmlXPathContextPtr ctxt, + const xmlChar *prefix, + const xmlChar *ns_uri); +XMLPUBFUN const xmlChar * XMLCALL + xmlXPathNsLookup (xmlXPathContextPtr ctxt, + const xmlChar *prefix); +XMLPUBFUN void XMLCALL + xmlXPathRegisteredNsCleanup (xmlXPathContextPtr ctxt); + +XMLPUBFUN int XMLCALL + xmlXPathRegisterFunc (xmlXPathContextPtr ctxt, + const xmlChar *name, + xmlXPathFunction f); +XMLPUBFUN int XMLCALL + xmlXPathRegisterFuncNS (xmlXPathContextPtr ctxt, + const xmlChar *name, + const xmlChar *ns_uri, + xmlXPathFunction f); +XMLPUBFUN int XMLCALL + xmlXPathRegisterVariable (xmlXPathContextPtr ctxt, + const xmlChar *name, + xmlXPathObjectPtr value); +XMLPUBFUN int XMLCALL + xmlXPathRegisterVariableNS (xmlXPathContextPtr ctxt, + const xmlChar *name, + const xmlChar *ns_uri, + xmlXPathObjectPtr value); +XMLPUBFUN xmlXPathFunction XMLCALL + xmlXPathFunctionLookup (xmlXPathContextPtr ctxt, + const xmlChar *name); +XMLPUBFUN xmlXPathFunction XMLCALL + xmlXPathFunctionLookupNS (xmlXPathContextPtr ctxt, + const xmlChar *name, + const xmlChar *ns_uri); +XMLPUBFUN void XMLCALL + xmlXPathRegisteredFuncsCleanup (xmlXPathContextPtr ctxt); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathVariableLookup (xmlXPathContextPtr ctxt, + const xmlChar *name); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathVariableLookupNS (xmlXPathContextPtr ctxt, + const xmlChar *name, + const xmlChar *ns_uri); +XMLPUBFUN void XMLCALL + xmlXPathRegisteredVariablesCleanup(xmlXPathContextPtr ctxt); + +/** + * Utilities to extend XPath. + */ +XMLPUBFUN xmlXPathParserContextPtr XMLCALL + xmlXPathNewParserContext (const xmlChar *str, + xmlXPathContextPtr ctxt); +XMLPUBFUN void XMLCALL + xmlXPathFreeParserContext (xmlXPathParserContextPtr ctxt); + +/* TODO: remap to xmlXPathValuePop and Push. */ +XMLPUBFUN xmlXPathObjectPtr XMLCALL + valuePop (xmlXPathParserContextPtr ctxt); +XMLPUBFUN int XMLCALL + valuePush (xmlXPathParserContextPtr ctxt, + xmlXPathObjectPtr value); + +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathNewString (const xmlChar *val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathNewCString (const char *val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathWrapString (xmlChar *val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathWrapCString (char * val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathNewFloat (double val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathNewBoolean (int val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathNewNodeSet (xmlNodePtr val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathNewValueTree (xmlNodePtr val); +XMLPUBFUN void XMLCALL + xmlXPathNodeSetAdd (xmlNodeSetPtr cur, + xmlNodePtr val); +XMLPUBFUN void XMLCALL + xmlXPathNodeSetAddUnique (xmlNodeSetPtr cur, + xmlNodePtr val); +XMLPUBFUN void XMLCALL + xmlXPathNodeSetAddNs (xmlNodeSetPtr cur, + xmlNodePtr node, + xmlNsPtr ns); +XMLPUBFUN void XMLCALL + xmlXPathNodeSetSort (xmlNodeSetPtr set); + +XMLPUBFUN void XMLCALL + xmlXPathRoot (xmlXPathParserContextPtr ctxt); +XMLPUBFUN void XMLCALL + xmlXPathEvalExpr (xmlXPathParserContextPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlXPathParseName (xmlXPathParserContextPtr ctxt); +XMLPUBFUN xmlChar * XMLCALL + xmlXPathParseNCName (xmlXPathParserContextPtr ctxt); + +/* + * Existing functions. + */ +XMLPUBFUN double XMLCALL + xmlXPathStringEvalNumber (const xmlChar *str); +XMLPUBFUN int XMLCALL + xmlXPathEvaluatePredicateResult (xmlXPathParserContextPtr ctxt, + xmlXPathObjectPtr res); +XMLPUBFUN void XMLCALL + xmlXPathRegisterAllFunctions (xmlXPathContextPtr ctxt); +XMLPUBFUN xmlNodeSetPtr XMLCALL + xmlXPathNodeSetMerge (xmlNodeSetPtr val1, + xmlNodeSetPtr val2); +XMLPUBFUN void XMLCALL + xmlXPathNodeSetDel (xmlNodeSetPtr cur, + xmlNodePtr val); +XMLPUBFUN void XMLCALL + xmlXPathNodeSetRemove (xmlNodeSetPtr cur, + int val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathNewNodeSetList (xmlNodeSetPtr val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathWrapNodeSet (xmlNodeSetPtr val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPathWrapExternal (void *val); + +XMLPUBFUN int XMLCALL xmlXPathEqualValues(xmlXPathParserContextPtr ctxt); +XMLPUBFUN int XMLCALL xmlXPathNotEqualValues(xmlXPathParserContextPtr ctxt); +XMLPUBFUN int XMLCALL xmlXPathCompareValues(xmlXPathParserContextPtr ctxt, int inf, int strict); +XMLPUBFUN void XMLCALL xmlXPathValueFlipSign(xmlXPathParserContextPtr ctxt); +XMLPUBFUN void XMLCALL xmlXPathAddValues(xmlXPathParserContextPtr ctxt); +XMLPUBFUN void XMLCALL xmlXPathSubValues(xmlXPathParserContextPtr ctxt); +XMLPUBFUN void XMLCALL xmlXPathMultValues(xmlXPathParserContextPtr ctxt); +XMLPUBFUN void XMLCALL xmlXPathDivValues(xmlXPathParserContextPtr ctxt); +XMLPUBFUN void XMLCALL xmlXPathModValues(xmlXPathParserContextPtr ctxt); + +XMLPUBFUN int XMLCALL xmlXPathIsNodeType(const xmlChar *name); + +/* + * Some of the axis navigation routines. + */ +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextSelf(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextChild(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextDescendant(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextDescendantOrSelf(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextParent(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextAncestorOrSelf(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextFollowingSibling(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextFollowing(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextNamespace(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextAttribute(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextPreceding(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextAncestor(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextPrecedingSibling(xmlXPathParserContextPtr ctxt, + xmlNodePtr cur); +/* + * The official core of XPath functions. + */ +XMLPUBFUN void XMLCALL xmlXPathLastFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathPositionFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathCountFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathIdFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathLocalNameFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathNamespaceURIFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathStringFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathStringLengthFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathConcatFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathContainsFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathStartsWithFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathSubstringFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathSubstringBeforeFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathSubstringAfterFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathNormalizeFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathTranslateFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathNotFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathTrueFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathFalseFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathLangFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathNumberFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathSumFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathFloorFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathCeilingFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathRoundFunction(xmlXPathParserContextPtr ctxt, int nargs); +XMLPUBFUN void XMLCALL xmlXPathBooleanFunction(xmlXPathParserContextPtr ctxt, int nargs); + +/** + * Really internal functions + */ +XMLPUBFUN void XMLCALL xmlXPathNodeSetFreeNs(xmlNsPtr ns); + +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_XPATH_ENABLED */ +#endif /* ! __XML_XPATH_INTERNALS_H__ */ diff --git a/cocos2dx/platform/third_party/linux/libxml2/libxml/xpointer.h b/cocos2dx/platform/third_party/linux/libxml2/libxml/xpointer.h new file mode 100644 index 0000000000..dde1dfb3d1 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libxml2/libxml/xpointer.h @@ -0,0 +1,114 @@ +/* + * Summary: API to handle XML Pointers + * Description: API to handle XML Pointers + * Base implementation was made accordingly to + * W3C Candidate Recommendation 7 June 2000 + * http://www.w3.org/TR/2000/CR-xptr-20000607 + * + * Added support for the element() scheme described in: + * W3C Proposed Recommendation 13 November 2002 + * http://www.w3.org/TR/2002/PR-xptr-element-20021113/ + * + * Copy: See Copyright for the status of this software. + * + * Author: Daniel Veillard + */ + +#ifndef __XML_XPTR_H__ +#define __XML_XPTR_H__ + +#include <libxml/xmlversion.h> + +#ifdef LIBXML_XPTR_ENABLED + +#include <libxml/tree.h> +#include <libxml/xpath.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * A Location Set + */ +typedef struct _xmlLocationSet xmlLocationSet; +typedef xmlLocationSet *xmlLocationSetPtr; +struct _xmlLocationSet { + int locNr; /* number of locations in the set */ + int locMax; /* size of the array as allocated */ + xmlXPathObjectPtr *locTab;/* array of locations */ +}; + +/* + * Handling of location sets. + */ + +XMLPUBFUN xmlLocationSetPtr XMLCALL + xmlXPtrLocationSetCreate (xmlXPathObjectPtr val); +XMLPUBFUN void XMLCALL + xmlXPtrFreeLocationSet (xmlLocationSetPtr obj); +XMLPUBFUN xmlLocationSetPtr XMLCALL + xmlXPtrLocationSetMerge (xmlLocationSetPtr val1, + xmlLocationSetPtr val2); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrNewRange (xmlNodePtr start, + int startindex, + xmlNodePtr end, + int endindex); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrNewRangePoints (xmlXPathObjectPtr start, + xmlXPathObjectPtr end); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrNewRangeNodePoint (xmlNodePtr start, + xmlXPathObjectPtr end); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrNewRangePointNode (xmlXPathObjectPtr start, + xmlNodePtr end); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrNewRangeNodes (xmlNodePtr start, + xmlNodePtr end); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrNewLocationSetNodes (xmlNodePtr start, + xmlNodePtr end); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrNewLocationSetNodeSet(xmlNodeSetPtr set); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrNewRangeNodeObject (xmlNodePtr start, + xmlXPathObjectPtr end); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrNewCollapsedRange (xmlNodePtr start); +XMLPUBFUN void XMLCALL + xmlXPtrLocationSetAdd (xmlLocationSetPtr cur, + xmlXPathObjectPtr val); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrWrapLocationSet (xmlLocationSetPtr val); +XMLPUBFUN void XMLCALL + xmlXPtrLocationSetDel (xmlLocationSetPtr cur, + xmlXPathObjectPtr val); +XMLPUBFUN void XMLCALL + xmlXPtrLocationSetRemove (xmlLocationSetPtr cur, + int val); + +/* + * Functions. + */ +XMLPUBFUN xmlXPathContextPtr XMLCALL + xmlXPtrNewContext (xmlDocPtr doc, + xmlNodePtr here, + xmlNodePtr origin); +XMLPUBFUN xmlXPathObjectPtr XMLCALL + xmlXPtrEval (const xmlChar *str, + xmlXPathContextPtr ctx); +XMLPUBFUN void XMLCALL + xmlXPtrRangeToFunction (xmlXPathParserContextPtr ctxt, + int nargs); +XMLPUBFUN xmlNodePtr XMLCALL + xmlXPtrBuildNodeList (xmlXPathObjectPtr obj); +XMLPUBFUN void XMLCALL + xmlXPtrEvalRangePredicate (xmlXPathParserContextPtr ctxt); +#ifdef __cplusplus +} +#endif + +#endif /* LIBXML_XPTR_ENABLED */ +#endif /* __XML_XPTR_H__ */ From 0958b2aaf601ab41f215165430c4037356c8adcf Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Thu, 25 Aug 2011 19:11:06 +0800 Subject: [PATCH 15/31] new file: HelloWorld/Classes/AppDelegate.cpp new file: HelloWorld/Classes/AppDelegate.h new file: HelloWorld/Classes/HelloWorldScene.cpp new file: HelloWorld/Classes/HelloWorldScene.h new file: HelloWorld/postCompiled.sh --- HelloWorld/Classes/AppDelegate.cpp | 115 +++++++++++++++++++++++++ HelloWorld/Classes/AppDelegate.h | 43 +++++++++ HelloWorld/Classes/HelloWorldScene.cpp | 82 ++++++++++++++++++ HelloWorld/Classes/HelloWorldScene.h | 22 +++++ HelloWorld/postCompiled.sh | 44 ++++++++++ 5 files changed, 306 insertions(+) create mode 100644 HelloWorld/Classes/AppDelegate.cpp create mode 100644 HelloWorld/Classes/AppDelegate.h create mode 100644 HelloWorld/Classes/HelloWorldScene.cpp create mode 100644 HelloWorld/Classes/HelloWorldScene.h create mode 100644 HelloWorld/postCompiled.sh diff --git a/HelloWorld/Classes/AppDelegate.cpp b/HelloWorld/Classes/AppDelegate.cpp new file mode 100644 index 0000000000..80fd446ce8 --- /dev/null +++ b/HelloWorld/Classes/AppDelegate.cpp @@ -0,0 +1,115 @@ +#include "AppDelegate.h" + +#include "cocos2d.h" +#include "HelloWorldScene.h" + +#include "CCEGLView.h" + +USING_NS_CC; + +AppDelegate::AppDelegate() { + +} + +AppDelegate::~AppDelegate() { +} + +bool AppDelegate::initInstance() { + bool bRet = false; + do { +#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) + + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView * pMainWnd = new CCEGLView(); + CC_BREAK_IF(! pMainWnd + || ! pMainWnd->Create(TEXT("cocos2d: Hello World"), 480, 320)); + +#endif // CC_PLATFORM_WIN32 +#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) + + // OpenGLView initialized in testsAppDelegate.mm on ios platform, nothing need to do here. + +#endif // CC_PLATFORM_IOS +#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) + + // OpenGLView initialized in HelloWorld/android/jni/helloworld/main.cpp + // the default setting is to create a fullscreen view + // if you want to use auto-scale, please enable view->create(320,480) in main.cpp + // if the resources under '/sdcard" or other writeable path, set it. + // warning: the audio source should in assets/ + // cocos2d::CCFileUtils::setResourcePath("/sdcard"); + +#endif // CC_PLATFORM_ANDROID +#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) + + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView* pMainWnd = new CCEGLView(this); + CC_BREAK_IF(! pMainWnd || ! pMainWnd->Create(320,480, WM_WINDOW_ROTATE_MODE_CW)); + +#ifndef _TRANZDA_VM_ + // on wophone emulator, we copy resources files to Work7/NEWPLUS/TDA_DATA/Data/ folder instead of zip file + cocos2d::CCFileUtils::setResource("HelloWorld.zip"); +#endif + +#endif // CC_PLATFORM_WOPHONE +#if (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) + // MaxAksenov said it's NOT a very elegant solution. I agree, haha + CCDirector::sharedDirector()->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); +#endif +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + + // Initialize OpenGLView instance, that release by CCDirector when application terminate. + // The HelloWorld is designed as HVGA. + CCEGLView * pMainWnd = new CCEGLView(); + CC_BREAK_IF(! pMainWnd + || ! pMainWnd->Create("cocos2d: Hello World", 800, 480,480, 320)); + +#endif // CC_PLATFORM_LINUX + bRet = true; + } while (0); + return bRet; +} + +bool AppDelegate::applicationDidFinishLaunching() { + // initialize director + CCDirector *pDirector = CCDirector::sharedDirector(); + + pDirector->setOpenGLView(&CCEGLView::sharedOpenGLView()); + + // enable High Resource Mode(2x, such as iphone4) and maintains low resource on other devices. +// pDirector->enableRetinaDisplay(true); + + // turn on display FPS + pDirector->setDisplayFPS(true); + + // pDirector->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); + + // set FPS. the default value is 1.0/60 if you don't call this + pDirector->setAnimationInterval(1.0 / 60); + + // create a scene. it's an autorelease object + CCScene *pScene = HelloWorld::scene(); + + // run + pDirector->runWithScene(pScene); + + return true; +} + +// This function will be called when the app is inactive. When comes a phone call,it's be invoked too +void AppDelegate::applicationDidEnterBackground() { + CCDirector::sharedDirector()->pause(); + + // if you use SimpleAudioEngine, it must be pause + // SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); +} + +// this function will be called when the app is active again +void AppDelegate::applicationWillEnterForeground() { + CCDirector::sharedDirector()->resume(); + + // if you use SimpleAudioEngine, it must resume here + // SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); +} diff --git a/HelloWorld/Classes/AppDelegate.h b/HelloWorld/Classes/AppDelegate.h new file mode 100644 index 0000000000..6a7b537389 --- /dev/null +++ b/HelloWorld/Classes/AppDelegate.h @@ -0,0 +1,43 @@ +#ifndef _APP_DELEGATE_H_ +#define _APP_DELEGATE_H_ + +#include "CCApplication.h" + +/** +@brief The cocos2d Application. + +The reason for implement as private inheritance is to hide some interface call by CCDirector. +*/ +class AppDelegate : private cocos2d::CCApplication +{ +public: + AppDelegate(); + virtual ~AppDelegate(); + + /** + @brief Implement for initialize OpenGL instance, set source path, etc... + */ + virtual bool initInstance(); + + /** + @brief Implement CCDirector and CCScene init code here. + @return true Initialize success, app continue. + @return false Initialize failed, app terminate. + */ + virtual bool applicationDidFinishLaunching(); + + /** + @brief The function be called when the application enter background + @param the pointer of the application + */ + virtual void applicationDidEnterBackground(); + + /** + @brief The function be called when the application enter foreground + @param the pointer of the application + */ + virtual void applicationWillEnterForeground(); +}; + +#endif // _APP_DELEGATE_H_ + diff --git a/HelloWorld/Classes/HelloWorldScene.cpp b/HelloWorld/Classes/HelloWorldScene.cpp new file mode 100644 index 0000000000..794823e80f --- /dev/null +++ b/HelloWorld/Classes/HelloWorldScene.cpp @@ -0,0 +1,82 @@ +#include "HelloWorldScene.h" + +USING_NS_CC; + +CCScene* HelloWorld::scene() +{ + // 'scene' is an autorelease object + CCScene *scene = CCScene::node(); + + // 'layer' is an autorelease object + HelloWorld *layer = HelloWorld::node(); + + // add layer as a child to scene + scene->addChild(layer); + + // return the scene + return scene; +} + +// on "init" you need to initialize your instance +bool HelloWorld::init() +{ + ////////////////////////////// + // 1. super init first + if ( !CCLayer::init() ) + { + return false; + } + + ///////////////////////////// + // 2. add a menu item with "X" image, which is clicked to quit the program + // you may modify it. + + // add a "close" icon to exit the progress. it's an autorelease object + CCMenuItemImage *pCloseItem = CCMenuItemImage::itemFromNormalImage( + "CloseNormal.png", + "CloseSelected.png", + this, + menu_selector(HelloWorld::menuCloseCallback) ); + pCloseItem->setPosition( ccp(CCDirector::sharedDirector()->getWinSize().width - 20, 20) ); + + // create menu, it's an autorelease object + CCMenu* pMenu = CCMenu::menuWithItems(pCloseItem, NULL); + pMenu->setPosition( CCPointZero ); + this->addChild(pMenu, 1); + + ///////////////////////////// + // 3. add your codes below... + + // add a label shows "Hello World" + // create and initialize a label + CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello\nWorld", CCSize(0,0), CCTextAlignmentCenter,"Materhorn.", 34); + + // ask director the window size + CCSize size = CCDirector::sharedDirector()->getWinSize(); + + // position the label on the center of the screen + pLabel->setPosition( ccp(size.width / 2, size.height - 200) ); + + // add the label as a child to this layer + this->addChild(pLabel, 1); + + // add "HelloWorld" splash screen" + CCSprite* pSprite = CCSprite::spriteWithFile("HelloWorld.png"); + + // position the sprite on the center of the screen + pSprite->setPosition( ccp(size.width/2, size.height/2) ); + + // add the sprite as a child to this layer + this->addChild(pSprite, 0); + + return true; +} + +void HelloWorld::menuCloseCallback(CCObject* pSender) +{ + CCDirector::sharedDirector()->end(); + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) + exit(0); +#endif +} diff --git a/HelloWorld/Classes/HelloWorldScene.h b/HelloWorld/Classes/HelloWorldScene.h new file mode 100644 index 0000000000..274a176df0 --- /dev/null +++ b/HelloWorld/Classes/HelloWorldScene.h @@ -0,0 +1,22 @@ +#ifndef __HELLOWORLD_SCENE_H__ +#define __HELLOWORLD_SCENE_H__ + +#include "cocos2d.h" + +class HelloWorld : public cocos2d::CCLayer +{ +public: + // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone + virtual bool init(); + + // there's no 'id' in cpp, so we recommand to return the exactly class pointer + static cocos2d::CCScene* scene(); + + // a selector callback + virtual void menuCloseCallback(CCObject* pSender); + + // implement the "static node()" method manually + LAYER_NODE_FUNC(HelloWorld); +}; + +#endif // __HELLOWORLD_SCENE_H__ diff --git a/HelloWorld/postCompiled.sh b/HelloWorld/postCompiled.sh new file mode 100644 index 0000000000..467ba2fe40 --- /dev/null +++ b/HelloWorld/postCompiled.sh @@ -0,0 +1,44 @@ +#!/bin/bash +#arguments +#1 is the config name +#2 is the project name +#3 is the cocos2d sdk base folder +#4 is the resource folder name if it has + +mode="Release" +originRes="Resource" +echo $# +if [ $# > 2 ]; then + echo "ok" +else + echo "configname or proj name do not assign" + exit +fi + +if echo $1 | grep "Debug"; then + mode="Debug" +fi; + +if [ -d "../android/libs/armeabi" ];then + echo "create libs" +else + mkdir ../android/libs/armeabi +fi +#move game lib into android/libs/armeabi +cp -f lib$2.so ../android/libs/armeabi/ + +#move cocos2d lib into android/libs/armeabi +cp -f $3/lib/android/$mode/lib*.so ../android/libs/armeabi/ + +#link the resource folder +if [ -L ../android/assets ];then + exit +fi + +if [ $# == '4' ];then + originRes=$4 +fi + +echo `pwd`/../$originRes +ln -s `pwd`/../$originRes ../android/assets + From 08c81fda90b6c2f95671d4cb79ebc9ab8ef76d28 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Thu, 25 Aug 2011 19:11:35 +0800 Subject: [PATCH 16/31] new file: installLinuxLib.sh HelloWorld/android/assets --- installLinuxLib.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 installLinuxLib.sh diff --git a/installLinuxLib.sh b/installLinuxLib.sh new file mode 100755 index 0000000000..d42ef0e3e0 --- /dev/null +++ b/installLinuxLib.sh @@ -0,0 +1,20 @@ +#!/bin/bash +linuxLibFolder="Release" +if [ "$1" = "Debug" ];then + echo "debug" + linuxLibFolder="Debug" +fi +cp lib/linux/$linuxLibFolder/libcocos*.so /usr/lib/ +if [ -d "/usr/include/cocos2dx" ];then + echo "exist" +else + echo "build cocos2dx folder" + mkdir /usr/include/cocos2dx +fi + +if [ "$2" = "move" ];then +cp cocos2dx/*.h /usr/include/cocos2dx/ +cp -rf cocos2dx/include /usr/include/cocos2dx/ +cp -f cocos2dx/platform/*.h /usr/include/cocos2dx/platform +cp -f cocos2dx/platform/Linux/*.h /usr/include/cocos2dx/platform/Linux/ +fi From 71c442b79cefc665ab92740f9194dfae7c12994e Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Sun, 28 Aug 2011 14:28:24 +0800 Subject: [PATCH 17/31] chipmunk/CMakeCache.txt chipmunk/CMakeFiles/ chipmunk/CMakeLists.txt chipmunk/Makefile chipmunk/cmake_install.cmake chipmunk/src/CMakeFiles/ chipmunk/src/Makefile chipmunk/src/cmake_install.cmake cocos2dx/platform/third_party/linux/curl/ cocos2dx/platform/third_party/linux/libraries/libcurl.a --- Box2D/lib/linux/libBox2D.a.REMOVED.git-id | 1 + chipmunk/lib/linux/libchipmunk.a.REMOVED.git-id | 1 + 2 files changed, 2 insertions(+) create mode 100644 Box2D/lib/linux/libBox2D.a.REMOVED.git-id create mode 100644 chipmunk/lib/linux/libchipmunk.a.REMOVED.git-id diff --git a/Box2D/lib/linux/libBox2D.a.REMOVED.git-id b/Box2D/lib/linux/libBox2D.a.REMOVED.git-id new file mode 100644 index 0000000000..35f0d7f894 --- /dev/null +++ b/Box2D/lib/linux/libBox2D.a.REMOVED.git-id @@ -0,0 +1 @@ +05569f7633bf44a60894b602d7c1b94d85daba60 \ No newline at end of file diff --git a/chipmunk/lib/linux/libchipmunk.a.REMOVED.git-id b/chipmunk/lib/linux/libchipmunk.a.REMOVED.git-id new file mode 100644 index 0000000000..2ed4d402a5 --- /dev/null +++ b/chipmunk/lib/linux/libchipmunk.a.REMOVED.git-id @@ -0,0 +1 @@ +6c804dd2e0af59d8022260167299ec8806a8629c \ No newline at end of file From 1ac3fdebcab77c64dded695d092c23a3324c4cf0 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Sun, 28 Aug 2011 14:33:04 +0800 Subject: [PATCH 18/31] deleted: Box2D/Box2DConfig.cmake deleted: Box2D/CMakeLists.txt new file: CocosDenshion/.cproject new file: CocosDenshion/.project deleted: HelloCocos2dx/AndroidDebug/Classes/AppDelegate.d deleted: HelloCocos2dx/AndroidDebug/Classes/AppDelegate.o deleted: HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.d deleted: HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o deleted: HelloCocos2dx/AndroidDebug/Classes/subdir.mk deleted: HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d deleted: HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o deleted: HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk deleted: HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so deleted: HelloCocos2dx/AndroidDebug/makefile deleted: HelloCocos2dx/AndroidDebug/objects.mk deleted: HelloCocos2dx/AndroidDebug/sources.mk deleted: HelloCocos2dx/AndroidRelease/Classes/AppDelegate.d deleted: HelloCocos2dx/AndroidRelease/Classes/AppDelegate.o deleted: HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.d deleted: HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o deleted: HelloCocos2dx/AndroidRelease/Classes/subdir.mk deleted: HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d deleted: HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o deleted: HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk deleted: HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so deleted: HelloCocos2dx/AndroidRelease/makefile deleted: HelloCocos2dx/AndroidRelease/objects.mk deleted: HelloCocos2dx/AndroidRelease/sources.mk deleted: HelloCocos2dx/Classes/AppDelegate.cpp deleted: HelloCocos2dx/Classes/AppDelegate.h deleted: HelloCocos2dx/Classes/HelloWorldScene.cpp deleted: HelloCocos2dx/Classes/HelloWorldScene.h deleted: HelloCocos2dx/Linux/main.cpp deleted: HelloCocos2dx/Linux/main.h deleted: HelloCocos2dx/Resource/CloseNormal.png deleted: HelloCocos2dx/Resource/CloseSelected.png deleted: HelloCocos2dx/Resource/HelloWorld.png deleted: HelloCocos2dx/Resource/Icon.png deleted: HelloCocos2dx/Resource/app.config.txt deleted: HelloCocos2dx/android/AndroidManifest.xml deleted: HelloCocos2dx/android/build.properties deleted: HelloCocos2dx/android/build.xml deleted: HelloCocos2dx/android/build_native.sh deleted: HelloCocos2dx/android/default.properties deleted: HelloCocos2dx/android/gen/org/cocos2dx/application/R.java deleted: HelloCocos2dx/android/jni/helloworld/main.cpp deleted: HelloCocos2dx/android/local.properties deleted: HelloCocos2dx/android/proguard.cfg deleted: HelloCocos2dx/android/res/drawable-hdpi/icon.png deleted: HelloCocos2dx/android/res/drawable-ldpi/icon.png deleted: HelloCocos2dx/android/res/drawable-mdpi/icon.png deleted: HelloCocos2dx/android/res/layout/game_demo.xml deleted: HelloCocos2dx/android/res/layout/helloworld_demo.xml deleted: HelloCocos2dx/android/res/values/strings.xml deleted: HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java deleted: HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java deleted: HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxActivity.java deleted: HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxBitmap.java deleted: HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java deleted: HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxMusic.java deleted: HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxRenderer.java deleted: HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxSound.java modified: HelloWorld/Classes/AppDelegate.cpp deleted: HelloWorld/Linux/CloseNormal.png deleted: HelloWorld/Linux/CloseSelected.png deleted: HelloWorld/Linux/HelloWorld.png deleted: HelloWorld/Linux/Icon.png deleted: HelloWorld/Linux/Materhorn.ttf deleted: HelloWorld/Linux/app.config.txt deleted: HelloWorld/Linux/cocos2dx-hello deleted: HelloWorld/Linux/libcocos2dx.so modified: cocos2dx/.cproject modified: lib/linux/Debug/libcocos2d.so modified: lib/linux/Release/libcocos2d.so modified: template/android/mycopy_files.sh new file: tests/test.linux/.cproject new file: tests/test.linux/.project modified: tests/tests/ChipmunkTest/cocos2dChipmunkDemo.cpp modified: tests/tests/controller.cpp modified: tests/tests/tests.h --- Box2D/Box2DConfig.cmake | 3 - Box2D/CMakeLists.txt | 178 ---- CocosDenshion/.cproject | 294 ++++++ CocosDenshion/.project | 83 ++ .../AndroidDebug/Classes/AppDelegate.d | 346 ------- .../AndroidDebug/Classes/HelloWorldScene.d | 343 ------- .../Classes/HelloWorldScene.o.REMOVED.git-id | 1 - HelloCocos2dx/AndroidDebug/Classes/subdir.mk | 27 - .../android/jni/helloworld/main.d | 344 ------- .../jni/helloworld/main.o.REMOVED.git-id | 1 - .../android/jni/helloworld/subdir.mk | 24 - .../libHelloCocos2dx.so.REMOVED.git-id | 1 - HelloCocos2dx/AndroidDebug/makefile | 66 -- HelloCocos2dx/AndroidDebug/objects.mk | 8 - HelloCocos2dx/AndroidDebug/sources.mk | 28 - .../AndroidRelease/Classes/AppDelegate.d | 346 ------- .../AndroidRelease/Classes/HelloWorldScene.d | 343 ------- .../Classes/HelloWorldScene.o.REMOVED.git-id | 1 - .../AndroidRelease/Classes/subdir.mk | 27 - .../android/jni/helloworld/main.d | 344 ------- .../jni/helloworld/main.o.REMOVED.git-id | 1 - .../android/jni/helloworld/subdir.mk | 24 - .../libHelloCocos2dx.so.REMOVED.git-id | 1 - HelloCocos2dx/AndroidRelease/makefile | 66 -- HelloCocos2dx/AndroidRelease/objects.mk | 8 - HelloCocos2dx/AndroidRelease/sources.mk | 28 - HelloCocos2dx/Classes/AppDelegate.cpp | 117 --- HelloCocos2dx/Classes/AppDelegate.h | 43 - HelloCocos2dx/Classes/HelloWorldScene.cpp | 82 -- HelloCocos2dx/Classes/HelloWorldScene.h | 22 - HelloCocos2dx/Linux/main.cpp | 13 - HelloCocos2dx/Linux/main.h | 13 - HelloCocos2dx/Resource/app.config.txt | 5 - HelloCocos2dx/android/AndroidManifest.xml | 22 - HelloCocos2dx/android/build.properties | 17 - HelloCocos2dx/android/build.xml | 79 -- HelloCocos2dx/android/build_native.sh | 29 - HelloCocos2dx/android/default.properties | 11 - .../gen/org/cocos2dx/application/R.java | 28 - HelloCocos2dx/android/jni/helloworld/main.cpp | 34 - HelloCocos2dx/android/local.properties | 10 - HelloCocos2dx/android/proguard.cfg | 40 - .../android/res/layout/game_demo.xml | 13 - .../android/res/layout/helloworld_demo.xml | 13 - HelloCocos2dx/android/res/values/strings.xml | 4 - .../cocos2dx/application/ApplicationDemo.java | 50 - .../cocos2dx/lib/Cocos2dxAccelerometer.java | 71 -- .../org/cocos2dx/lib/Cocos2dxActivity.java | 257 ----- .../src/org/cocos2dx/lib/Cocos2dxBitmap.java | 354 ------- .../cocos2dx/lib/Cocos2dxGLSurfaceView.java | 384 -------- .../src/org/cocos2dx/lib/Cocos2dxMusic.java | 177 ---- .../org/cocos2dx/lib/Cocos2dxRenderer.java | 107 --- .../src/org/cocos2dx/lib/Cocos2dxSound.java | 160 ---- HelloWorld/Classes/AppDelegate.cpp | 2 + HelloWorld/Linux/app.config.txt | 5 - .../Linux/cocos2dx-hello.REMOVED.git-id | 1 - .../Linux/libcocos2dx.so.REMOVED.git-id | 1 - cocos2dx/.cproject | 2 + lib/linux/Debug/libcocos2d.so.REMOVED.git-id | 2 +- .../Release/libcocos2d.so.REMOVED.git-id | 2 +- template/android/mycopy_files.sh | 2 +- tests/test.linux/.cproject | 203 ++++ tests/test.linux/.project | 880 ++++++++++++++++++ .../ChipmunkTest/cocos2dChipmunkDemo.cpp | 5 + tests/tests/controller.cpp | 4 +- tests/tests/tests.h | 4 +- 66 files changed, 1476 insertions(+), 4728 deletions(-) delete mode 100644 Box2D/Box2DConfig.cmake delete mode 100644 Box2D/CMakeLists.txt create mode 100644 CocosDenshion/.cproject create mode 100644 CocosDenshion/.project delete mode 100644 HelloCocos2dx/AndroidDebug/Classes/AppDelegate.d delete mode 100644 HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.d delete mode 100644 HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id delete mode 100644 HelloCocos2dx/AndroidDebug/Classes/subdir.mk delete mode 100644 HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d delete mode 100644 HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id delete mode 100644 HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk delete mode 100644 HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id delete mode 100644 HelloCocos2dx/AndroidDebug/makefile delete mode 100644 HelloCocos2dx/AndroidDebug/objects.mk delete mode 100644 HelloCocos2dx/AndroidDebug/sources.mk delete mode 100644 HelloCocos2dx/AndroidRelease/Classes/AppDelegate.d delete mode 100644 HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.d delete mode 100644 HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id delete mode 100644 HelloCocos2dx/AndroidRelease/Classes/subdir.mk delete mode 100644 HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d delete mode 100644 HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id delete mode 100644 HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk delete mode 100644 HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id delete mode 100644 HelloCocos2dx/AndroidRelease/makefile delete mode 100644 HelloCocos2dx/AndroidRelease/objects.mk delete mode 100644 HelloCocos2dx/AndroidRelease/sources.mk delete mode 100644 HelloCocos2dx/Classes/AppDelegate.cpp delete mode 100644 HelloCocos2dx/Classes/AppDelegate.h delete mode 100644 HelloCocos2dx/Classes/HelloWorldScene.cpp delete mode 100644 HelloCocos2dx/Classes/HelloWorldScene.h delete mode 100644 HelloCocos2dx/Linux/main.cpp delete mode 100644 HelloCocos2dx/Linux/main.h delete mode 100644 HelloCocos2dx/Resource/app.config.txt delete mode 100644 HelloCocos2dx/android/AndroidManifest.xml delete mode 100644 HelloCocos2dx/android/build.properties delete mode 100644 HelloCocos2dx/android/build.xml delete mode 100644 HelloCocos2dx/android/build_native.sh delete mode 100644 HelloCocos2dx/android/default.properties delete mode 100644 HelloCocos2dx/android/gen/org/cocos2dx/application/R.java delete mode 100644 HelloCocos2dx/android/jni/helloworld/main.cpp delete mode 100644 HelloCocos2dx/android/local.properties delete mode 100644 HelloCocos2dx/android/proguard.cfg delete mode 100644 HelloCocos2dx/android/res/layout/game_demo.xml delete mode 100644 HelloCocos2dx/android/res/layout/helloworld_demo.xml delete mode 100644 HelloCocos2dx/android/res/values/strings.xml delete mode 100644 HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java delete mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java delete mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxActivity.java delete mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxBitmap.java delete mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java delete mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxMusic.java delete mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxRenderer.java delete mode 100644 HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxSound.java delete mode 100644 HelloWorld/Linux/app.config.txt delete mode 100644 HelloWorld/Linux/cocos2dx-hello.REMOVED.git-id delete mode 100644 HelloWorld/Linux/libcocos2dx.so.REMOVED.git-id create mode 100644 tests/test.linux/.cproject create mode 100644 tests/test.linux/.project diff --git a/Box2D/Box2DConfig.cmake b/Box2D/Box2DConfig.cmake deleted file mode 100644 index b567c17d14..0000000000 --- a/Box2D/Box2DConfig.cmake +++ /dev/null @@ -1,3 +0,0 @@ -get_filename_component(SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) -include(${SELF_DIR}/Box2D-targets.cmake) -get_filename_component(Box2D_INCLUDE_DIRS "${SELF_DIR}/../../include" ABSOLUTE) diff --git a/Box2D/CMakeLists.txt b/Box2D/CMakeLists.txt deleted file mode 100644 index e0122b1b56..0000000000 --- a/Box2D/CMakeLists.txt +++ /dev/null @@ -1,178 +0,0 @@ -cmake_minimum_required(VERSION 2.8) -set(BOX2D_Collision_SRCS - Collision/b2BroadPhase.cpp - Collision/b2CollideCircle.cpp - Collision/b2CollidePolygon.cpp - Collision/b2Collision.cpp - Collision/b2Distance.cpp - Collision/b2DynamicTree.cpp - Collision/b2TimeOfImpact.cpp -) -set(BOX2D_Collision_HDRS - Collision/b2BroadPhase.h - Collision/b2Collision.h - Collision/b2Distance.h - Collision/b2DynamicTree.h - Collision/b2TimeOfImpact.h -) -set(BOX2D_Shapes_SRCS - Collision/Shapes/b2CircleShape.cpp - Collision/Shapes/b2PolygonShape.cpp -) -set(BOX2D_Shapes_HDRS - Collision/Shapes/b2CircleShape.h - Collision/Shapes/b2PolygonShape.h - Collision/Shapes/b2Shape.h -) -set(BOX2D_Common_SRCS - Common/b2BlockAllocator.cpp - Common/b2Math.cpp - Common/b2Settings.cpp - Common/b2StackAllocator.cpp -) -set(BOX2D_Common_HDRS - Common/b2BlockAllocator.h - Common/b2Math.h - Common/b2Settings.h - Common/b2StackAllocator.h -) -set(BOX2D_Dynamics_SRCS - Dynamics/b2Body.cpp - Dynamics/b2ContactManager.cpp - Dynamics/b2Fixture.cpp - Dynamics/b2Island.cpp - Dynamics/b2World.cpp - Dynamics/b2WorldCallbacks.cpp -) -set(BOX2D_Dynamics_HDRS - Dynamics/b2Body.h - Dynamics/b2ContactManager.h - Dynamics/b2Fixture.h - Dynamics/b2Island.h - Dynamics/b2TimeStep.h - Dynamics/b2World.h - Dynamics/b2WorldCallbacks.h -) -set(BOX2D_Contacts_SRCS - Dynamics/Contacts/b2CircleContact.cpp - Dynamics/Contacts/b2Contact.cpp - Dynamics/Contacts/b2ContactSolver.cpp - Dynamics/Contacts/b2PolygonAndCircleContact.cpp - Dynamics/Contacts/b2PolygonContact.cpp - Dynamics/Contacts/b2TOISolver.cpp -) -set(BOX2D_Contacts_HDRS - Dynamics/Contacts/b2CircleContact.h - Dynamics/Contacts/b2Contact.h - Dynamics/Contacts/b2ContactSolver.h - Dynamics/Contacts/b2PolygonAndCircleContact.h - Dynamics/Contacts/b2PolygonContact.h - Dynamics/Contacts/b2TOISolver.h -) -set(BOX2D_Joints_SRCS - Dynamics/Joints/b2DistanceJoint.cpp - Dynamics/Joints/b2FrictionJoint.cpp - Dynamics/Joints/b2GearJoint.cpp - Dynamics/Joints/b2Joint.cpp - Dynamics/Joints/b2LineJoint.cpp - Dynamics/Joints/b2MouseJoint.cpp - Dynamics/Joints/b2PrismaticJoint.cpp - Dynamics/Joints/b2PulleyJoint.cpp - Dynamics/Joints/b2RevoluteJoint.cpp - Dynamics/Joints/b2WeldJoint.cpp -) -set(BOX2D_Joints_HDRS - Dynamics/Joints/b2DistanceJoint.h - Dynamics/Joints/b2FrictionJoint.h - Dynamics/Joints/b2GearJoint.h - Dynamics/Joints/b2Joint.h - Dynamics/Joints/b2LineJoint.h - Dynamics/Joints/b2MouseJoint.h - Dynamics/Joints/b2PrismaticJoint.h - Dynamics/Joints/b2PulleyJoint.h - Dynamics/Joints/b2RevoluteJoint.h - Dynamics/Joints/b2WeldJoint.h -) -set(BOX2D_General_HDRS - Box2D.h -) -include_directories( ../ ) - -if(BOX2D_BUILD_SHARED) - add_library(Box2D_shared SHARED - ${BOX2D_General_HDRS} - ${BOX2D_Joints_SRCS} - ${BOX2D_Joints_HDRS} - ${BOX2D_Contacts_SRCS} - ${BOX2D_Contacts_HDRS} - ${BOX2D_Dynamics_SRCS} - ${BOX2D_Dynamics_HDRS} - ${BOX2D_Common_SRCS} - ${BOX2D_Common_HDRS} - ${BOX2D_Shapes_SRCS} - ${BOX2D_Shapes_HDRS} - ${BOX2D_Collision_SRCS} - ${BOX2D_Collision_HDRS} - ) - set_target_properties(Box2D_shared PROPERTIES - OUTPUT_NAME "Box2D" - CLEAN_DIRECT_OUTPUT 1 - VERSION ${BOX2D_VERSION} - ) -endif() - -if(BOX2D_BUILD_STATIC) - add_library(Box2D STATIC - ${BOX2D_General_HDRS} - ${BOX2D_Joints_SRCS} - ${BOX2D_Joints_HDRS} - ${BOX2D_Contacts_SRCS} - ${BOX2D_Contacts_HDRS} - ${BOX2D_Dynamics_SRCS} - ${BOX2D_Dynamics_HDRS} - ${BOX2D_Common_SRCS} - ${BOX2D_Common_HDRS} - ${BOX2D_Shapes_SRCS} - ${BOX2D_Shapes_HDRS} - ${BOX2D_Collision_SRCS} - ${BOX2D_Collision_HDRS} - ) - set_target_properties(Box2D PROPERTIES - CLEAN_DIRECT_OUTPUT 1 - VERSION ${BOX2D_VERSION} - ) -endif() - -if(MSVC) - # These are used to create visual studio folders. - source_group(Collision FILES ${BOX2D_Collision_SRCS} ${BOX2D_Collision_HDRS}) - source_group(Collision\\Shapes FILES ${BOX2D_Shapes_SRCS} ${BOX2D_Shapes_HDRS}) - source_group(Common FILES ${BOX2D_Common_SRCS} ${BOX2D_Common_HDRS}) - source_group(Dynamics FILES ${BOX2D_Dynamics_SRCS} ${BOX2D_Dynamics_HDRS}) - source_group(Dynamics\\Contacts FILES ${BOX2D_Contacts_SRCS} ${BOX2D_Contacts_HDRS}) - source_group(Dynamics\\Joints FILES ${BOX2D_Joints_SRCS} ${BOX2D_Joints_HDRS}) - source_group(Include FILES ${BOX2D_General_HDRS}) -endif() - -if(BOX2D_INSTALL) - # install headers - install(FILES ${BOX2D_General_HDRS} DESTINATION include/Box2D) - install(FILES ${BOX2D_Collision_HDRS} DESTINATION include/Box2D/Collision) - install(FILES ${BOX2D_Shapes_HDRS} DESTINATION include/Box2D/Collision/Shapes) - install(FILES ${BOX2D_Common_HDRS} DESTINATION include/Box2D/Common) - install(FILES ${BOX2D_Dynamics_HDRS} DESTINATION include/Box2D/Dynamics) - install(FILES ${BOX2D_Contacts_HDRS} DESTINATION include/Box2D/Dynamics/Contacts) - install(FILES ${BOX2D_Joints_HDRS} DESTINATION include/Box2D/Dynamics/Joints) - - # install libraries - if(BOX2D_BUILD_SHARED) - install(TARGETS Box2D_shared EXPORT Box2D-targets DESTINATION lib) - endif() - if(BOX2D_BUILD_STATIC) - install(TARGETS Box2D EXPORT Box2D-targets DESTINATION lib) - endif() - - # install build system hooks for third-party apps - install(EXPORT Box2D-targets DESTINATION lib/Box2D) - install(FILES Box2DConfig.cmake DESTINATION lib/Box2D) -endif(BOX2D_INSTALL) diff --git a/CocosDenshion/.cproject b/CocosDenshion/.cproject new file mode 100644 index 0000000000..85c4d51b12 --- /dev/null +++ b/CocosDenshion/.cproject @@ -0,0 +1,294 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<?fileVersion 4.0.0?> + +<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> + <storageModule moduleId="org.eclipse.cdt.core.settings"> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1982681102"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1982681102" moduleId="org.eclipse.cdt.core.settings" name="Debug"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/Debug"/> + <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1982681102" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../post.sh ${ProjName} cocosdenshion"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1982681102." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1290289406" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.1343594495" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/CocosDenshion/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.2041927999" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool id="cdt.managedbuild.tool.gnu.archiver.base.1293331295" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2092876171" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.2020537008" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.886209200" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1002280254" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1604049990" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1178240227" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.206236808" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.828037565" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.985313341" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.370598124" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1145844969" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> + <option defaultValue="true" id="gnu.c.link.option.shared.1822605485" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1767253018" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option id="gnu.cpp.link.option.libs.956474372" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="fmodex"/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.430688089" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1207468004" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1192863353" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.2047527740" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="android|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.509246766"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.509246766" moduleId="org.eclipse.cdt.core.settings" name="Release"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/Release"/> + <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.509246766" name="Release" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../post.sh ${ProjName} cocosdenshion"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.release.509246766." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.305868874" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.506287391" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> + <builder buildPath="${workspace_loc:/CocosDenshion/Release}" id="cdt.managedbuild.target.gnu.builder.exe.release.1316417033" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> + <tool id="cdt.managedbuild.tool.gnu.archiver.base.1125358518" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.222121229" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> + <option id="gnu.cpp.compiler.exe.release.option.optimization.level.1962013303" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.release.option.debugging.level.2015755429" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1414683978" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1557365568" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1919066836" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> + <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1295172282" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.release.option.debugging.level.1006696632" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.92938039" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.757092405" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.release.490094345" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> + <option defaultValue="true" id="gnu.c.link.option.shared.2114715478" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1107958294" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> + <option id="gnu.cpp.link.option.libs.1450744481" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="fmodex"/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.1840009551" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1952243970" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.86394856" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.895909947" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="android|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209" moduleId="org.eclipse.cdt.core.settings" name="AndroidDebug"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/AndroidDebug"/> + <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209" name="AndroidDebug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../post.sh ${ProjName} cocosdenshion"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1558765061" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.620879821" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/CocosDenshion/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.507120743" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.40387952" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.792840741" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.976541662" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.1307745860" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.438026184" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.2045722816" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1567615028" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.879455147" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.1476208622" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.554440625" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.260627685" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1900603638" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> + <option defaultValue="true" id="gnu.c.link.option.shared.1038390402" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.303615758" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option id="gnu.cpp.link.option.libs.1196370704" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="log"/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.1009537507" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.331207899" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1169174011" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.776530056" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="third_party|Linux|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575" moduleId="org.eclipse.cdt.core.settings" name="AndroidRelease"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/AndroidRelease"/> + <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575" name="AndroidRelease" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../post.sh ${ProjName} cocosdenshion"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.885182269" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.1280043208" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> + <builder buildPath="${workspace_loc:/CocosDenshion/Release}" id="cdt.managedbuild.target.gnu.builder.exe.release.474969838" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.509102503" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1702337749" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> + <option id="gnu.cpp.compiler.exe.release.option.optimization.level.44964931" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.release.option.debugging.level.2138571216" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1983104201" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1493650421" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1390354356" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> + <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.923425099" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.release.option.debugging.level.1422867368" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.1675694653" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.858170289" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.release.168343506" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> + <option defaultValue="true" id="gnu.c.link.option.shared.2128797843" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.2083694616" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> + <option id="gnu.cpp.link.option.libs.1657717164" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="log"/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.21289368" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.258929024" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.1157573136" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.980689040" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="third_party|Linux|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <project id="CocosDenshion.cdt.managedbuild.target.gnu.exe.346390339" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/> + </storageModule> + <storageModule moduleId="scannerConfiguration"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1982681102;cdt.managedbuild.config.gnu.exe.debug.1982681102.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1178240227;cdt.managedbuild.tool.gnu.c.compiler.input.370598124"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1982681102;cdt.managedbuild.config.gnu.exe.debug.1982681102.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2092876171;cdt.managedbuild.tool.gnu.cpp.compiler.input.1604049990"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.509246766;cdt.managedbuild.config.gnu.exe.release.509246766.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.1919066836;cdt.managedbuild.tool.gnu.c.compiler.input.757092405"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.509246766;cdt.managedbuild.config.gnu.exe.release.509246766.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.222121229;cdt.managedbuild.tool.gnu.cpp.compiler.input.1557365568"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + </storageModule> + <storageModule moduleId="refreshScope"/> +</cproject> diff --git a/CocosDenshion/.project b/CocosDenshion/.project new file mode 100644 index 0000000000..7ea064a7ad --- /dev/null +++ b/CocosDenshion/.project @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>CocosDenshion</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> + <triggers>clean,full,incremental,</triggers> + <arguments> + <dictionary> + <key>?name?</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.append_environment</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.autoBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildArguments</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildCommand</key> + <value>make</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildLocation</key> + <value>${workspace_loc:/CocosDenshion/Debug}</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.cleanBuildTarget</key> + <value>clean</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.contents</key> + <value>org.eclipse.cdt.make.core.activeConfigSettings</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableAutoBuild</key> + <value>false</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableCleanBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableFullBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.fullBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.stopOnError</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> + <value>true</value> + </dictionary> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> + <triggers>full,incremental,</triggers> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.cdt.core.cnature</nature> + <nature>org.eclipse.cdt.core.ccnature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> + </natures> +</projectDescription> diff --git a/HelloCocos2dx/AndroidDebug/Classes/AppDelegate.d b/HelloCocos2dx/AndroidDebug/Classes/AppDelegate.d deleted file mode 100644 index 50b8ef2bb8..0000000000 --- a/HelloCocos2dx/AndroidDebug/Classes/AppDelegate.d +++ /dev/null @@ -1,346 +0,0 @@ -Classes/AppDelegate.d Classes/AppDelegate.o: ../Classes/AppDelegate.cpp \ - ../Classes/AppDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - ../Classes/HelloWorldScene.h - -../Classes/AppDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -../Classes/HelloWorldScene.h: diff --git a/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.d b/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.d deleted file mode 100644 index 22d2300968..0000000000 --- a/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.d +++ /dev/null @@ -1,343 +0,0 @@ -Classes/HelloWorldScene.d Classes/HelloWorldScene.o: \ - ../Classes/HelloWorldScene.cpp ../Classes/HelloWorldScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h - -../Classes/HelloWorldScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id b/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id deleted file mode 100644 index e221f421f8..0000000000 --- a/HelloCocos2dx/AndroidDebug/Classes/HelloWorldScene.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -78435769b6dc52e742295817bc2ba43400432cfd \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/Classes/subdir.mk b/HelloCocos2dx/AndroidDebug/Classes/subdir.mk deleted file mode 100644 index 6533054a66..0000000000 --- a/HelloCocos2dx/AndroidDebug/Classes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Classes/AppDelegate.cpp \ -../Classes/HelloWorldScene.cpp - -OBJS += \ -./Classes/AppDelegate.o \ -./Classes/HelloWorldScene.o - -CPP_DEPS += \ -./Classes/AppDelegate.d \ -./Classes/HelloWorldScene.d - - -# Each subdirectory must supply rules for building sources it contributes -Classes/%.o: ../Classes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d deleted file mode 100644 index 84169efede..0000000000 --- a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.d +++ /dev/null @@ -1,344 +0,0 @@ -android/jni/helloworld/main.d android/jni/helloworld/main.o: \ - ../android/jni/helloworld/main.cpp \ - /home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes/AppDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h - -/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes/AppDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id deleted file mode 100644 index 6b303311f2..0000000000 --- a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/main.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -4330544731a84b2e6d0a8fe9da5f26919e09c19f \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk b/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk deleted file mode 100644 index 60ec2a8fbb..0000000000 --- a/HelloCocos2dx/AndroidDebug/android/jni/helloworld/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../android/jni/helloworld/main.cpp - -OBJS += \ -./android/jni/helloworld/main.o - -CPP_DEPS += \ -./android/jni/helloworld/main.d - - -# Each subdirectory must supply rules for building sources it contributes -android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id b/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id deleted file mode 100644 index 6e1f1db672..0000000000 --- a/HelloCocos2dx/AndroidDebug/libHelloCocos2dx.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -ece2ba6a510b124dba424cd549570d05ad8482ed \ No newline at end of file diff --git a/HelloCocos2dx/AndroidDebug/makefile b/HelloCocos2dx/AndroidDebug/makefile deleted file mode 100644 index bfe085f019..0000000000 --- a/HelloCocos2dx/AndroidDebug/makefile +++ /dev/null @@ -1,66 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include android/jni/helloworld/subdir.mk --include Classes/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: libHelloCocos2dx.so - -# Tool invocations -libHelloCocos2dx.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/lib/android/Debug/" -shared -o "libHelloCocos2dx.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libHelloCocos2dx.so - -@echo ' ' - -post-build: - -@echo 'move required lib into android/libs automatically' - -sh ../postCompiled.sh AndroidDebug HelloCocos2dx /home/laschweinski/git/cocos2d-x - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets diff --git a/HelloCocos2dx/AndroidDebug/objects.mk b/HelloCocos2dx/AndroidDebug/objects.mk deleted file mode 100644 index 028c82493e..0000000000 --- a/HelloCocos2dx/AndroidDebug/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -LIBS := -lcocos2d -lcocosdenshion - diff --git a/HelloCocos2dx/AndroidDebug/sources.mk b/HelloCocos2dx/AndroidDebug/sources.mk deleted file mode 100644 index 74691bfe18..0000000000 --- a/HelloCocos2dx/AndroidDebug/sources.mk +++ /dev/null @@ -1,28 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -android/jni/helloworld \ -Classes \ - diff --git a/HelloCocos2dx/AndroidRelease/Classes/AppDelegate.d b/HelloCocos2dx/AndroidRelease/Classes/AppDelegate.d deleted file mode 100644 index 50b8ef2bb8..0000000000 --- a/HelloCocos2dx/AndroidRelease/Classes/AppDelegate.d +++ /dev/null @@ -1,346 +0,0 @@ -Classes/AppDelegate.d Classes/AppDelegate.o: ../Classes/AppDelegate.cpp \ - ../Classes/AppDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - ../Classes/HelloWorldScene.h - -../Classes/AppDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -../Classes/HelloWorldScene.h: diff --git a/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.d b/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.d deleted file mode 100644 index 22d2300968..0000000000 --- a/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.d +++ /dev/null @@ -1,343 +0,0 @@ -Classes/HelloWorldScene.d Classes/HelloWorldScene.o: \ - ../Classes/HelloWorldScene.cpp ../Classes/HelloWorldScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h - -../Classes/HelloWorldScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id b/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id deleted file mode 100644 index 3dd60254cf..0000000000 --- a/HelloCocos2dx/AndroidRelease/Classes/HelloWorldScene.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -6860430294917685d44747b03858b35bda1066bf \ No newline at end of file diff --git a/HelloCocos2dx/AndroidRelease/Classes/subdir.mk b/HelloCocos2dx/AndroidRelease/Classes/subdir.mk deleted file mode 100644 index 6533054a66..0000000000 --- a/HelloCocos2dx/AndroidRelease/Classes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Classes/AppDelegate.cpp \ -../Classes/HelloWorldScene.cpp - -OBJS += \ -./Classes/AppDelegate.o \ -./Classes/HelloWorldScene.o - -CPP_DEPS += \ -./Classes/AppDelegate.d \ -./Classes/HelloWorldScene.d - - -# Each subdirectory must supply rules for building sources it contributes -Classes/%.o: ../Classes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d deleted file mode 100644 index 84169efede..0000000000 --- a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.d +++ /dev/null @@ -1,344 +0,0 @@ -android/jni/helloworld/main.d android/jni/helloworld/main.o: \ - ../android/jni/helloworld/main.cpp \ - /home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes/AppDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h - -/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes/AppDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id deleted file mode 100644 index 99e3a305d6..0000000000 --- a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/main.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -78500e568b8ec72bfff2e753dd20a77408a2d9a8 \ No newline at end of file diff --git a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk b/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk deleted file mode 100644 index 60ec2a8fbb..0000000000 --- a/HelloCocos2dx/AndroidRelease/android/jni/helloworld/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../android/jni/helloworld/main.cpp - -OBJS += \ -./android/jni/helloworld/main.o - -CPP_DEPS += \ -./android/jni/helloworld/main.d - - -# Each subdirectory must supply rules for building sources it contributes -android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloCocos2dx/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id b/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id deleted file mode 100644 index a6f32bcab2..0000000000 --- a/HelloCocos2dx/AndroidRelease/libHelloCocos2dx.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -b2f6fa8c671555d49d1e36f4efb60f783e546b76 \ No newline at end of file diff --git a/HelloCocos2dx/AndroidRelease/makefile b/HelloCocos2dx/AndroidRelease/makefile deleted file mode 100644 index 54b9a1cc7b..0000000000 --- a/HelloCocos2dx/AndroidRelease/makefile +++ /dev/null @@ -1,66 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include android/jni/helloworld/subdir.mk --include Classes/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: libHelloCocos2dx.so - -# Tool invocations -libHelloCocos2dx.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/lib/android/Release/" -shared -o "libHelloCocos2dx.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libHelloCocos2dx.so - -@echo ' ' - -post-build: - -@echo 'move required lib into android/libs automatically' - -sh ../postCompiled.sh AndroidRelease HelloCocos2dx /home/laschweinski/git/cocos2d-x - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets diff --git a/HelloCocos2dx/AndroidRelease/objects.mk b/HelloCocos2dx/AndroidRelease/objects.mk deleted file mode 100644 index 028c82493e..0000000000 --- a/HelloCocos2dx/AndroidRelease/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -LIBS := -lcocos2d -lcocosdenshion - diff --git a/HelloCocos2dx/AndroidRelease/sources.mk b/HelloCocos2dx/AndroidRelease/sources.mk deleted file mode 100644 index 74691bfe18..0000000000 --- a/HelloCocos2dx/AndroidRelease/sources.mk +++ /dev/null @@ -1,28 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -android/jni/helloworld \ -Classes \ - diff --git a/HelloCocos2dx/Classes/AppDelegate.cpp b/HelloCocos2dx/Classes/AppDelegate.cpp deleted file mode 100644 index b403f1f400..0000000000 --- a/HelloCocos2dx/Classes/AppDelegate.cpp +++ /dev/null @@ -1,117 +0,0 @@ -#include "AppDelegate.h" - -#include "cocos2d.h" -#include "HelloWorldScene.h" - -#include "CCEGLView.h" - -USING_NS_CC; - -AppDelegate::AppDelegate() { - -} - -AppDelegate::~AppDelegate() { -} - -bool AppDelegate::initInstance() { - bool bRet = false; - do { -#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) - - // Initialize OpenGLView instance, that release by CCDirector when application terminate. - // The HelloWorld is designed as HVGA. - CCEGLView * pMainWnd = new CCEGLView(); - CC_BREAK_IF(! pMainWnd - || ! pMainWnd->Create(TEXT("cocos2d: Hello World"), 480, 320)); - -#endif // CC_PLATFORM_WIN32 -#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) - - // OpenGLView initialized in testsAppDelegate.mm on ios platform, nothing need to do here. - -#endif // CC_PLATFORM_IOS -#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) - - // OpenGLView initialized in HelloWorld/android/jni/helloworld/main.cpp - // the default setting is to create a fullscreen view - // if you want to use auto-scale, please enable view->create(320,480) in main.cpp - // if the resources under '/sdcard" or other writeable path, set it. - // warning: the audio source should in assets/ - // cocos2d::CCFileUtils::setResourcePath("/sdcard"); - -#endif // CC_PLATFORM_ANDROID -#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) - - // Initialize OpenGLView instance, that release by CCDirector when application terminate. - // The HelloWorld is designed as HVGA. - CCEGLView* pMainWnd = new CCEGLView(this); - CC_BREAK_IF(! pMainWnd || ! pMainWnd->Create(320,480, WM_WINDOW_ROTATE_MODE_CW)); - -#ifndef _TRANZDA_VM_ - // on wophone emulator, we copy resources files to Work7/NEWPLUS/TDA_DATA/Data/ folder instead of zip file - cocos2d::CCFileUtils::setResource("HelloWorld.zip"); -#endif - -#endif // CC_PLATFORM_WOPHONE -#if (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY) - // MaxAksenov said it's NOT a very elegant solution. I agree, haha - CCDirector::sharedDirector()->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); -#endif -#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) - - // Initialize OpenGLView instance, that release by CCDirector when application terminate. - // The HelloWorld is designed as HVGA. - CCEGLView * pMainWnd = new CCEGLView(); - CC_BREAK_IF(! pMainWnd - || ! pMainWnd->Create("cocos2d: Hello World", 800, 480,480, 320)); - - CCFileUtils::setResourcePath("Resource/"); - -#endif // CC_PLATFORM_LINUX - bRet = true; - } while (0); - return bRet; -} - -bool AppDelegate::applicationDidFinishLaunching() { - // initialize director - CCDirector *pDirector = CCDirector::sharedDirector(); - - pDirector->setOpenGLView(&CCEGLView::sharedOpenGLView()); - - // enable High Resource Mode(2x, such as iphone4) and maintains low resource on other devices. -// pDirector->enableRetinaDisplay(true); - - // turn on display FPS - pDirector->setDisplayFPS(true); - - // pDirector->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft); - - // set FPS. the default value is 1.0/60 if you don't call this - pDirector->setAnimationInterval(1.0 / 60); - - // create a scene. it's an autorelease object - CCScene *pScene = HelloWorld::scene(); - - // run - pDirector->runWithScene(pScene); - - return true; -} - -// This function will be called when the app is inactive. When comes a phone call,it's be invoked too -void AppDelegate::applicationDidEnterBackground() { - CCDirector::sharedDirector()->pause(); - - // if you use SimpleAudioEngine, it must be pause - // SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); -} - -// this function will be called when the app is active again -void AppDelegate::applicationWillEnterForeground() { - CCDirector::sharedDirector()->resume(); - - // if you use SimpleAudioEngine, it must resume here - // SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); -} diff --git a/HelloCocos2dx/Classes/AppDelegate.h b/HelloCocos2dx/Classes/AppDelegate.h deleted file mode 100644 index 6a7b537389..0000000000 --- a/HelloCocos2dx/Classes/AppDelegate.h +++ /dev/null @@ -1,43 +0,0 @@ -#ifndef _APP_DELEGATE_H_ -#define _APP_DELEGATE_H_ - -#include "CCApplication.h" - -/** -@brief The cocos2d Application. - -The reason for implement as private inheritance is to hide some interface call by CCDirector. -*/ -class AppDelegate : private cocos2d::CCApplication -{ -public: - AppDelegate(); - virtual ~AppDelegate(); - - /** - @brief Implement for initialize OpenGL instance, set source path, etc... - */ - virtual bool initInstance(); - - /** - @brief Implement CCDirector and CCScene init code here. - @return true Initialize success, app continue. - @return false Initialize failed, app terminate. - */ - virtual bool applicationDidFinishLaunching(); - - /** - @brief The function be called when the application enter background - @param the pointer of the application - */ - virtual void applicationDidEnterBackground(); - - /** - @brief The function be called when the application enter foreground - @param the pointer of the application - */ - virtual void applicationWillEnterForeground(); -}; - -#endif // _APP_DELEGATE_H_ - diff --git a/HelloCocos2dx/Classes/HelloWorldScene.cpp b/HelloCocos2dx/Classes/HelloWorldScene.cpp deleted file mode 100644 index 794823e80f..0000000000 --- a/HelloCocos2dx/Classes/HelloWorldScene.cpp +++ /dev/null @@ -1,82 +0,0 @@ -#include "HelloWorldScene.h" - -USING_NS_CC; - -CCScene* HelloWorld::scene() -{ - // 'scene' is an autorelease object - CCScene *scene = CCScene::node(); - - // 'layer' is an autorelease object - HelloWorld *layer = HelloWorld::node(); - - // add layer as a child to scene - scene->addChild(layer); - - // return the scene - return scene; -} - -// on "init" you need to initialize your instance -bool HelloWorld::init() -{ - ////////////////////////////// - // 1. super init first - if ( !CCLayer::init() ) - { - return false; - } - - ///////////////////////////// - // 2. add a menu item with "X" image, which is clicked to quit the program - // you may modify it. - - // add a "close" icon to exit the progress. it's an autorelease object - CCMenuItemImage *pCloseItem = CCMenuItemImage::itemFromNormalImage( - "CloseNormal.png", - "CloseSelected.png", - this, - menu_selector(HelloWorld::menuCloseCallback) ); - pCloseItem->setPosition( ccp(CCDirector::sharedDirector()->getWinSize().width - 20, 20) ); - - // create menu, it's an autorelease object - CCMenu* pMenu = CCMenu::menuWithItems(pCloseItem, NULL); - pMenu->setPosition( CCPointZero ); - this->addChild(pMenu, 1); - - ///////////////////////////// - // 3. add your codes below... - - // add a label shows "Hello World" - // create and initialize a label - CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello\nWorld", CCSize(0,0), CCTextAlignmentCenter,"Materhorn.", 34); - - // ask director the window size - CCSize size = CCDirector::sharedDirector()->getWinSize(); - - // position the label on the center of the screen - pLabel->setPosition( ccp(size.width / 2, size.height - 200) ); - - // add the label as a child to this layer - this->addChild(pLabel, 1); - - // add "HelloWorld" splash screen" - CCSprite* pSprite = CCSprite::spriteWithFile("HelloWorld.png"); - - // position the sprite on the center of the screen - pSprite->setPosition( ccp(size.width/2, size.height/2) ); - - // add the sprite as a child to this layer - this->addChild(pSprite, 0); - - return true; -} - -void HelloWorld::menuCloseCallback(CCObject* pSender) -{ - CCDirector::sharedDirector()->end(); - -#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) - exit(0); -#endif -} diff --git a/HelloCocos2dx/Classes/HelloWorldScene.h b/HelloCocos2dx/Classes/HelloWorldScene.h deleted file mode 100644 index 274a176df0..0000000000 --- a/HelloCocos2dx/Classes/HelloWorldScene.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef __HELLOWORLD_SCENE_H__ -#define __HELLOWORLD_SCENE_H__ - -#include "cocos2d.h" - -class HelloWorld : public cocos2d::CCLayer -{ -public: - // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone - virtual bool init(); - - // there's no 'id' in cpp, so we recommand to return the exactly class pointer - static cocos2d::CCScene* scene(); - - // a selector callback - virtual void menuCloseCallback(CCObject* pSender); - - // implement the "static node()" method manually - LAYER_NODE_FUNC(HelloWorld); -}; - -#endif // __HELLOWORLD_SCENE_H__ diff --git a/HelloCocos2dx/Linux/main.cpp b/HelloCocos2dx/Linux/main.cpp deleted file mode 100644 index 1fac7f0f95..0000000000 --- a/HelloCocos2dx/Linux/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "main.h" - -#include "AppDelegate.h" - -int main(int argc, char **argv) { - - // create the application instance - - - AppDelegate app; - - return cocos2d::CCApplication::sharedApplication().run(); -} diff --git a/HelloCocos2dx/Linux/main.h b/HelloCocos2dx/Linux/main.h deleted file mode 100644 index 86022e430a..0000000000 --- a/HelloCocos2dx/Linux/main.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef __MAIN_H__ -#define __MAIN_H__ - -#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers - -// Windows Header Files: -//#include <windows.h> -//#include <tchar.h> - -// C RunTime Header Files -#include "CCStdC.h" - -#endif // __MAIN_H__ diff --git a/HelloCocos2dx/Resource/app.config.txt b/HelloCocos2dx/Resource/app.config.txt deleted file mode 100644 index 104530ed60..0000000000 --- a/HelloCocos2dx/Resource/app.config.txt +++ /dev/null @@ -1,5 +0,0 @@ -[Trace] -GAME <0 or 1> Game Channel - -[Assert] -GAME <0 or 1> Game Assert Channel \ No newline at end of file diff --git a/HelloCocos2dx/android/AndroidManifest.xml b/HelloCocos2dx/android/AndroidManifest.xml deleted file mode 100644 index 787e349005..0000000000 --- a/HelloCocos2dx/android/AndroidManifest.xml +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="org.cocos2dx.application" - android:versionCode="1" - android:versionName="1.0"> - <application android:label="@string/app_name" android:debuggable="true" android:icon="@drawable/icon"> - <activity android:name=".ApplicationDemo" - android:label="@string/app_name" - android:screenOrientation="landscape" - android:theme="@android:style/Theme.NoTitleBar.Fullscreen" - android:configChanges="orientation"> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> - </application> - <supports-screens android:largeScreens="true" - android:smallScreens="true" - android:anyDensity="true" - android:normalScreens="true"/> -</manifest> diff --git a/HelloCocos2dx/android/build.properties b/HelloCocos2dx/android/build.properties deleted file mode 100644 index ee52d86d94..0000000000 --- a/HelloCocos2dx/android/build.properties +++ /dev/null @@ -1,17 +0,0 @@ -# This file is used to override default values used by the Ant build system. -# -# This file must be checked in Version Control Systems, as it is -# integral to the build system of your project. - -# This file is only used by the Ant script. - -# You can use this to override default values such as -# 'source.dir' for the location of your java source folder and -# 'out.dir' for the location of your output folder. - -# You can also use it define how the release builds are signed by declaring -# the following properties: -# 'key.store' for the location of your keystore and -# 'key.alias' for the name of the key to use. -# The password will be asked during the build when you use the 'release' target. - diff --git a/HelloCocos2dx/android/build.xml b/HelloCocos2dx/android/build.xml deleted file mode 100644 index 768294d19c..0000000000 --- a/HelloCocos2dx/android/build.xml +++ /dev/null @@ -1,79 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project name="HelloWorld" default="help"> - -<!-- The local.properties file is created and updated by the 'android' - tool. - It contains the path to the SDK. It should *NOT* be checked into - Version Control Systems. --> - <property file="local.properties" /> - - <!-- The build.properties file can be created by you and is never touched - by the 'android' tool. This is the place to change some of the - default property values used by the Ant rules. - Here are some properties you may want to change/update: - - source.dir - The name of the source directory. Default is 'src'. - out.dir - The name of the output directory. Default is 'bin'. - - Properties related to the SDK location or the project target should - be updated using the 'android' tool with the 'update' action. - - This file is an integral part of the build system for your - application and should be checked into Version Control Systems. - - --> - <property file="build.properties" /> - - <!-- The default.properties file is created and updated by the 'android' - tool, as well as ADT. - This file is an integral part of the build system for your - application and should be checked into Version Control Systems. --> - <property file="default.properties" /> - - - <!-- Required pre-setup import --> - <import file="${sdk.dir}/tools/ant/pre_setup.xml" /> - - -<!-- extension targets. Uncomment the ones where you want to do custom work - in between standard targets --> -<!-- - <target name="-pre-build"> - </target> - <target name="-pre-compile"> - </target> - - [This is typically used for code obfuscation. - Compiled code location: ${out.classes.absolute.dir} - If this is not done in place, override ${out.dex.input.absolute.dir}] - <target name="-post-compile"> - </target> ---> - - <!-- Execute the Android Setup task that will setup some properties - specific to the target, and import the build rules files. - - The rules file is imported from - <SDK>/tools/ant/ - Depending on the project type it can be either: - - main_rules.xml - - lib_rules.xml - - test_rules.xml - - To customize existing targets, there are two options: - - Customize only one target: - - copy/paste the target into this file, *before* the - <setup> task. - - customize it to your needs. - - Customize the whole script. - - copy/paste the content of the rules files (minus the top node) - into this file, *after* the <setup> task - - disable the import of the rules by changing the setup task - below to <setup import="false" />. - - customize to your needs. - --> - <setup /> - -</project> diff --git a/HelloCocos2dx/android/build_native.sh b/HelloCocos2dx/android/build_native.sh deleted file mode 100644 index 5e1db3e435..0000000000 --- a/HelloCocos2dx/android/build_native.sh +++ /dev/null @@ -1,29 +0,0 @@ -# set params -ANDROID_NDK_ROOT=/cygdrive/e/android-ndk-r5 -COCOS2DX_ROOT=/cygdrive/d/Work7/cocos2d-x -HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloWorld/android - -# make sure assets is exist -if [ -d $HELLOWORLD_ROOT/assets ]; then - rm -rf $HELLOWORLD_ROOT/assets -fi - -mkdir $HELLOWORLD_ROOT/assets - -# copy resources -for file in $COCOS2DX_ROOT/HelloWorld/Resource/* -do - if [ -d $file ]; then - cp -rf $file $HELLOWORLD_ROOT/assets - fi - - if [ -f $file ]; then - cp $file $HELLOWORLD_ROOT/assets - fi -done - -# build -pushd $ANDROID_NDK_ROOT -./ndk-build -C $HELLOWORLD_ROOT $* -popd - diff --git a/HelloCocos2dx/android/default.properties b/HelloCocos2dx/android/default.properties deleted file mode 100644 index 0b9250e021..0000000000 --- a/HelloCocos2dx/android/default.properties +++ /dev/null @@ -1,11 +0,0 @@ -# This file is automatically generated by Android Tools. -# Do not modify this file -- YOUR CHANGES WILL BE ERASED! -# -# This file must be checked in Version Control Systems. -# -# To customize properties used by the Ant build system use, -# "build.properties", and override values to adapt the script to your -# project structure. - -# Project target. -target=android-8 diff --git a/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java b/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java deleted file mode 100644 index 23565718cd..0000000000 --- a/HelloCocos2dx/android/gen/org/cocos2dx/application/R.java +++ /dev/null @@ -1,28 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ - -package org.cocos2dx.application; - -public final class R { - public static final class attr { - } - public static final class drawable { - public static final int icon=0x7f020000; - } - public static final class id { - public static final int game_gl_surfaceview=0x7f050001; - public static final int helloworld_gl_surfaceview=0x7f050002; - public static final int textField=0x7f050000; - } - public static final class layout { - public static final int game_demo=0x7f030000; - public static final int helloworld_demo=0x7f030001; - } - public static final class string { - public static final int app_name=0x7f040000; - } -} diff --git a/HelloCocos2dx/android/jni/helloworld/main.cpp b/HelloCocos2dx/android/jni/helloworld/main.cpp deleted file mode 100644 index e4ceb2f4ea..0000000000 --- a/HelloCocos2dx/android/jni/helloworld/main.cpp +++ /dev/null @@ -1,34 +0,0 @@ -#include "AppDelegate.h" -#include "cocos2d.h" -#include <jni.h> -#include <android/log.h> - -#define LOG_TAG "main" -#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__) - -using namespace cocos2d; - -extern "C" -{ - -void Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeInit(JNIEnv* env, jobject thiz, jint w, jint h) -{ - if (!cocos2d::CCDirector::sharedDirector()->getOpenGLView()) - { - cocos2d::CCEGLView *view = &cocos2d::CCEGLView::sharedOpenGLView(); - view->setFrameWidthAndHeight(w, h); - // if you want to run in WVGA with HVGA resource, set it - // view->create(480, 320); - cocos2d::CCDirector::sharedDirector()->setOpenGLView(view); - - AppDelegate *pAppDelegate = new AppDelegate(); - cocos2d::CCApplication::sharedApplication().run(); - } - else - { - cocos2d::CCTextureCache::reloadAllTextures(); - cocos2d::CCDirector::sharedDirector()->setGLDefaultValues(); - } -} - -} diff --git a/HelloCocos2dx/android/local.properties b/HelloCocos2dx/android/local.properties deleted file mode 100644 index ba25bfda91..0000000000 --- a/HelloCocos2dx/android/local.properties +++ /dev/null @@ -1,10 +0,0 @@ -# This file is automatically generated by Android Tools. -# Do not modify this file -- YOUR CHANGES WILL BE ERASED! -# -# This file must *NOT* be checked in Version Control Systems, -# as it contains information specific to your local configuration. - -# location of the SDK. This is only used by Ant -# For customization when using a Version Control System, please read the -# header note. -sdk.dir=/home/laschweinski/android/android-sdk-linux_86 diff --git a/HelloCocos2dx/android/proguard.cfg b/HelloCocos2dx/android/proguard.cfg deleted file mode 100644 index b1cdf17b5b..0000000000 --- a/HelloCocos2dx/android/proguard.cfg +++ /dev/null @@ -1,40 +0,0 @@ --optimizationpasses 5 --dontusemixedcaseclassnames --dontskipnonpubliclibraryclasses --dontpreverify --verbose --optimizations !code/simplification/arithmetic,!field/*,!class/merging/* - --keep public class * extends android.app.Activity --keep public class * extends android.app.Application --keep public class * extends android.app.Service --keep public class * extends android.content.BroadcastReceiver --keep public class * extends android.content.ContentProvider --keep public class * extends android.app.backup.BackupAgentHelper --keep public class * extends android.preference.Preference --keep public class com.android.vending.licensing.ILicensingService - --keepclasseswithmembernames class * { - native <methods>; -} - --keepclasseswithmembers class * { - public <init>(android.content.Context, android.util.AttributeSet); -} - --keepclasseswithmembers class * { - public <init>(android.content.Context, android.util.AttributeSet, int); -} - --keepclassmembers class * extends android.app.Activity { - public void *(android.view.View); -} - --keepclassmembers enum * { - public static **[] values(); - public static ** valueOf(java.lang.String); -} - --keep class * implements android.os.Parcelable { - public static final android.os.Parcelable$Creator *; -} diff --git a/HelloCocos2dx/android/res/layout/game_demo.xml b/HelloCocos2dx/android/res/layout/game_demo.xml deleted file mode 100644 index 7fd5ed4b76..0000000000 --- a/HelloCocos2dx/android/res/layout/game_demo.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:orientation="vertical" android:layout_gravity="bottom"> - <EditText android:id="@+id/textField" android:layout_height="wrap_content" android:layout_weight="0" android:layout_width="fill_parent"></EditText> - - <org.cocos2dx.lib.Cocos2dxGLSurfaceView - android:id="@+id/game_gl_surfaceview" - android:layout_width="fill_parent" - android:layout_height="fill_parent"/> - -</LinearLayout> diff --git a/HelloCocos2dx/android/res/layout/helloworld_demo.xml b/HelloCocos2dx/android/res/layout/helloworld_demo.xml deleted file mode 100644 index f63c70b11e..0000000000 --- a/HelloCocos2dx/android/res/layout/helloworld_demo.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:orientation="vertical" android:layout_gravity="bottom"> - <EditText android:id="@+id/textField" android:layout_height="wrap_content" android:layout_weight="0" android:layout_width="fill_parent"></EditText> - - <org.cocos2dx.lib.Cocos2dxGLSurfaceView - android:id="@+id/helloworld_gl_surfaceview" - android:layout_width="fill_parent" - android:layout_height="fill_parent"/> - -</LinearLayout> diff --git a/HelloCocos2dx/android/res/values/strings.xml b/HelloCocos2dx/android/res/values/strings.xml deleted file mode 100644 index 5efa161ddd..0000000000 --- a/HelloCocos2dx/android/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<resources> - <string name="app_name">helloworld</string> -</resources> diff --git a/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java b/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java deleted file mode 100644 index 49a0db8889..0000000000 --- a/HelloCocos2dx/android/src/org/cocos2dx/application/ApplicationDemo.java +++ /dev/null @@ -1,50 +0,0 @@ -package org.cocos2dx.application; -import org.cocos2dx.lib.Cocos2dxActivity; -import org.cocos2dx.lib.Cocos2dxGLSurfaceView; - -import android.os.Bundle; -import android.widget.EditText; - -public class ApplicationDemo extends Cocos2dxActivity{ - private Cocos2dxGLSurfaceView mGLView; - - protected void onCreate(Bundle savedInstanceState){ - super.onCreate(savedInstanceState); - - // get the packageName,it's used to set the resource path - String packageName = getApplication().getPackageName(); - super.setPackageName(packageName); - - setContentView(R.layout.helloworld_demo); - mGLView = (Cocos2dxGLSurfaceView) findViewById(R.id.helloworld_gl_surfaceview); - mGLView.setTextField((EditText)findViewById(R.id.textField)); - - // Get the size of the mGLView after the layout happens - mGLView.post(new Runnable() { - - @Override - public void run() { - Cocos2dxActivity.screenHeight = mGLView.getHeight(); - Cocos2dxActivity.screenWidth = mGLView.getWidth(); - } - }); - } - - @Override - protected void onPause() { - super.onPause(); - mGLView.onPause(); - } - - @Override - protected void onResume() { - super.onResume(); - mGLView.onResume(); - } - - static { - System.loadLibrary("cocos2d"); - System.loadLibrary("cocosdenshion"); - System.loadLibrary("HelloCocos2dx"); - } -} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java deleted file mode 100644 index a3a7a7f46f..0000000000 --- a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java +++ /dev/null @@ -1,71 +0,0 @@ -package org.cocos2dx.lib; - -import android.content.Context; -import android.content.res.Configuration; -import android.hardware.Sensor; -import android.hardware.SensorEvent; -import android.hardware.SensorEventListener; -import android.hardware.SensorManager; -import android.util.Log; -import android.view.WindowManager; - -/** - * - * This class is used for controlling the Accelerometer - * - */ -public class Cocos2dxAccelerometer implements SensorEventListener { - - private static final String TAG = "Cocos2dxAccelerometer"; - private Context mContext; - private SensorManager mSensorManager; - private Sensor mAccelerometer; - - public Cocos2dxAccelerometer(Context context){ - mContext = context; - - //Get an instance of the SensorManager - mSensorManager = (SensorManager) mContext.getSystemService(Context.SENSOR_SERVICE); - mAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER); - } - - public void enable() { - mSensorManager.registerListener(this, mAccelerometer, SensorManager.SENSOR_DELAY_GAME); - } - - public void disable () { - mSensorManager.unregisterListener(this); - } - - @Override - public void onSensorChanged(SensorEvent event) { - - if (event.sensor.getType() != Sensor.TYPE_ACCELEROMETER){ - return; - } - - float x = event.values[0]; - float y = event.values[1]; - float z = event.values[2]; - - /* - * Because the axes are not swapped when the device's screen orientation changes. - * So we should swap it here. - */ - int orientation = mContext.getResources().getConfiguration().orientation; - if (orientation == Configuration.ORIENTATION_LANDSCAPE){ - float tmp = x; - x = -y; - y = tmp; - } - - onSensorChanged(x, y, z, event.timestamp); - // Log.d(TAG, "x = " + event.values[0] + " y = " + event.values[1] + " z = " + event.values[2]); - } - - @Override - public void onAccuracyChanged(Sensor sensor, int accuracy) { - } - - private static native void onSensorChanged(float x, float y, float z, long timeStamp); -} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxActivity.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxActivity.java deleted file mode 100644 index 6e16fc921c..0000000000 --- a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxActivity.java +++ /dev/null @@ -1,257 +0,0 @@ -/* - * Copyright (C) 2009 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * This is a small port of the "San Angeles Observation" demo - * program for OpenGL ES 1.x. For more details, see: - * - * http://jet.ro/visuals/san-angeles-observation/ - * - * This program demonstrates how to use a GLSurfaceView from Java - * along with native OpenGL calls to perform frame rendering. - * - * Touching the screen will start/stop the animation. - * - * Note that the demo runs much faster on the emulator than on - * real devices, this is mainly due to the following facts: - * - * - the demo sends bazillions of polygons to OpenGL without - * even trying to do culling. Most of them are clearly out - * of view. - * - * - on a real device, the GPU bus is the real bottleneck - * that prevent the demo from getting acceptable performance. - * - * - the software OpenGL engine used in the emulator uses - * the system bus instead, and its code rocks :-) - * - * Fixing the program to send less polygons to the GPU is left - * as an exercise to the reader. As always, patches welcomed :-) - */ - -package org.cocos2dx.lib; - -import android.app.Activity; -import android.app.AlertDialog; -import android.app.Dialog; -import android.content.DialogInterface; -import android.content.pm.ApplicationInfo; -import android.content.pm.PackageManager; -import android.content.pm.PackageManager.NameNotFoundException; -import android.os.Bundle; -import android.os.Handler; -import android.os.Message; -import android.util.DisplayMetrics; -import android.util.Log; - -public class Cocos2dxActivity extends Activity{ - public static int screenWidth; - public static int screenHeight; - private static Cocos2dxMusic backgroundMusicPlayer; - private static Cocos2dxSound soundPlayer; - private static Cocos2dxAccelerometer accelerometer; - private static boolean accelerometerEnabled = false; - private static Handler handler; - private final static int HANDLER_SHOW_DIALOG = 1; - private static String packageName; - - private static native void nativeSetPaths(String apkPath); - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - - // get frame size - DisplayMetrics dm = new DisplayMetrics(); - getWindowManager().getDefaultDisplay().getMetrics(dm); - screenWidth = dm.widthPixels; - screenHeight = dm.heightPixels; - accelerometer = new Cocos2dxAccelerometer(this); - - // init media player and sound player - backgroundMusicPlayer = new Cocos2dxMusic(this); - soundPlayer = new Cocos2dxSound(this); - - // init bitmap context - Cocos2dxBitmap.setContext(this); - - handler = new Handler(){ - public void handleMessage(Message msg){ - switch(msg.what){ - case HANDLER_SHOW_DIALOG: - showDialog(((DialogMessage)msg.obj).title, ((DialogMessage)msg.obj).message); - break; - } - } - }; - } - - public static String getCurrentLanguage() { - String languageName = java.util.Locale.getDefault().getLanguage(); - return languageName; - } - - public static void showMessageBox(String title, String message){ - Message msg = new Message(); - msg.what = HANDLER_SHOW_DIALOG; - msg.obj = new DialogMessage(title, message); - - handler.sendMessage(msg); - } - - public static void enableAccelerometer() { - accelerometerEnabled = true; - accelerometer.enable(); - } - - public static void disableAccelerometer() { - accelerometerEnabled = false; - accelerometer.disable(); - } - - public static void playBackgroundMusic(String path, boolean isLoop){ - backgroundMusicPlayer.playBackgroundMusic(path, isLoop); - } - - public static void stopBackgroundMusic(){ - backgroundMusicPlayer.stopBackgroundMusic(); - } - - public static void pauseBackgroundMusic(){ - backgroundMusicPlayer.pauseBackgroundMusic(); - } - - public static void resumeBackgroundMusic(){ - backgroundMusicPlayer.resumeBackgroundMusic(); - } - - public static void rewindBackgroundMusic(){ - backgroundMusicPlayer.rewindBackgroundMusic(); - } - - public static boolean isBackgroundMusicPlaying(){ - return backgroundMusicPlayer.isBackgroundMusicPlaying(); - } - - public static float getBackgroundMusicVolume(){ - return backgroundMusicPlayer.getBackgroundVolume(); - } - - public static void setBackgroundMusicVolume(float volume){ - backgroundMusicPlayer.setBackgroundVolume(volume); - } - - public static int playEffect(String path, boolean isLoop){ - return soundPlayer.playEffect(path, isLoop); - } - - public static void stopEffect(int soundId){ - soundPlayer.stopEffect(soundId); - } - - public static float getEffectsVolume(){ - return soundPlayer.getEffectsVolume(); - } - - public static void setEffectsVolume(float volume){ - soundPlayer.setEffectsVolume(volume); - } - - public static void preloadEffect(String path){ - soundPlayer.preloadEffect(path); - } - - public static void unloadEffect(String path){ - soundPlayer.unloadEffect(path); - } - - public static void end(){ - backgroundMusicPlayer.end(); - soundPlayer.end(); - } - - public static String getCocos2dxPackageName(){ - return packageName; - } - - public static void terminateProcess(){ - android.os.Process.killProcess(android.os.Process.myPid()); - } - - @Override - protected void onResume() { - super.onResume(); - if (accelerometerEnabled) { - accelerometer.enable(); - } - - // resume background music - resumeBackgroundMusic(); - } - - @Override - protected void onPause() { - super.onPause(); - if (accelerometerEnabled) { - accelerometer.disable(); - } - - // pause background music - pauseBackgroundMusic(); - } - - protected void setPackageName(String packageName) { - Cocos2dxActivity.packageName = packageName; - - String apkFilePath = ""; - ApplicationInfo appInfo = null; - PackageManager packMgmr = getApplication().getPackageManager(); - try { - appInfo = packMgmr.getApplicationInfo(packageName, 0); - } catch (NameNotFoundException e) { - e.printStackTrace(); - throw new RuntimeException("Unable to locate assets, aborting..."); - } - apkFilePath = appInfo.sourceDir; - Log.w("apk path", apkFilePath); - - // add this link at the renderer class - nativeSetPaths(apkFilePath); - } - - private void showDialog(String title, String message){ - Dialog dialog = new AlertDialog.Builder(this) - .setTitle(title) - .setMessage(message) - .setPositiveButton("Ok", - new DialogInterface.OnClickListener() - { - public void onClick(DialogInterface dialog, int whichButton){ - - } - }).create(); - - dialog.show(); - } -} - -class DialogMessage { - public String title; - public String message; - - public DialogMessage(String title, String message){ - this.message = message; - this.title = title; - } -} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxBitmap.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxBitmap.java deleted file mode 100644 index 6aabcf2d67..0000000000 --- a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxBitmap.java +++ /dev/null @@ -1,354 +0,0 @@ -package org.cocos2dx.lib; - -import java.nio.ByteBuffer; -import java.nio.ByteOrder; -import java.util.LinkedList; - -import android.content.Context; -import android.graphics.Bitmap; -import android.graphics.Canvas; -import android.graphics.Color; -import android.graphics.Paint; -import android.graphics.Typeface; -import android.graphics.Paint.Align; -import android.graphics.Paint.FontMetricsInt; -import android.util.Log; - -public class Cocos2dxBitmap{ - /* - * The values are the same as cocos2dx/platform/CCImage.h. - * I think three alignments are OK. - */ - private static final int ALIGNCENTER = 0x33; - private static final int ALIGNLEFT = 0x31; - private static final int ALIGNRIGHT = 0x32; - - private static Context context; - - public static void setContext(Context context){ - Cocos2dxBitmap.context = context; - } - - /* - * @width: the width to draw, it can be 0 - * @height: the height to draw, it can be 0 - */ - public static void createTextBitmap(String content, String fontName, - int fontSize, int alignment, int width, int height){ - - content = refactorString(content); - Paint paint = newPaint(fontName, fontSize, alignment); - - TextProperty textProperty = computeTextProperty(content, paint, width, height); - - // Draw text to bitmap - Bitmap bitmap = Bitmap.createBitmap(textProperty.maxWidth, - textProperty.totalHeight, Bitmap.Config.ARGB_8888); - Canvas canvas = new Canvas(bitmap); - - // Draw string - FontMetricsInt fm = paint.getFontMetricsInt(); - int x = 0; - int y = -fm.ascent; - String[] lines = textProperty.lines; - for (String line : lines){ - x = computeX(paint, line, textProperty.maxWidth, alignment); - canvas.drawText(line, x, y, paint); - y += textProperty.heightPerLine; - } - - initNativeObject(bitmap); - } - - private static int computeX(Paint paint, String content, int w, int alignment){ - int ret = 0; - - switch (alignment){ - case ALIGNCENTER: - ret = w / 2; - break; - - // ret = 0 - case ALIGNLEFT: - break; - - case ALIGNRIGHT: - ret = w; - break; - - /* - * Default is align left. - * Should be same as newPaint(). - */ - default: - break; - } - - return ret; - } - - private static class TextProperty{ - // The max width of lines - int maxWidth; - // The height of all lines - int totalHeight; - int heightPerLine; - String[] lines; - - TextProperty(int w, int h, String[] lines){ - this.maxWidth = w; - this.heightPerLine = h; - this.totalHeight = h * lines.length; - this.lines = lines; - } - } - - private static TextProperty computeTextProperty(String content, Paint paint, - int maxWidth, int maxHeight){ - FontMetricsInt fm = paint.getFontMetricsInt(); - int h = (int)Math.ceil(fm.descent - fm.ascent); - int maxContentWidth = 0; - - String[] lines = splitString(content, maxHeight, maxWidth, paint); - - if (maxWidth != 0){ - maxContentWidth = maxWidth; - } - else { - /* - * Compute the max width - */ - int temp = 0; - for (String line : lines){ - temp = (int)Math.ceil(paint.measureText(line, 0, line.length())); - if (temp > maxContentWidth){ - maxContentWidth = temp; - } - } - } - - return new TextProperty(maxContentWidth, h, lines); - } - - /* - * If maxWidth or maxHeight is not 0, - * split the string to fix the maxWidth and maxHeight. - */ - private static String[] splitString(String content, int maxHeight, int maxWidth, - Paint paint){ - String[] lines = content.split("\\n"); - String[] ret = null; - FontMetricsInt fm = paint.getFontMetricsInt(); - int heightPerLine = (int)Math.ceil(fm.descent - fm.ascent); - int maxLines = maxHeight / heightPerLine; - - if (maxWidth != 0){ - LinkedList<String> strList = new LinkedList<String>(); - for (String line : lines){ - /* - * The width of line is exceed maxWidth, should divide it into - * two or more lines. - */ - int lineWidth = (int)Math.ceil(paint.measureText(line)); - if (lineWidth > maxWidth){ - strList.addAll(divideStringWithMaxWidth(paint, line, maxWidth)); - } - else{ - strList.add(line); - } - - /* - * Should not exceed the max height; - */ - if (maxLines > 0 && strList.size() >= maxLines){ - break; - } - } - - /* - * Remove exceeding lines - */ - if (maxLines > 0 && strList.size() > maxLines){ - while (strList.size() > maxLines){ - strList.removeLast(); - } - } - - ret = new String[strList.size()]; - strList.toArray(ret); - } else - if (maxHeight != 0 && lines.length > maxLines) { - /* - * Remove exceeding lines - */ - LinkedList<String> strList = new LinkedList<String>(); - for (int i = 0; i < maxLines; i++){ - strList.add(lines[i]); - } - ret = new String[strList.size()]; - strList.toArray(ret); - } - else { - ret = lines; - } - - return ret; - } - - private static LinkedList<String> divideStringWithMaxWidth(Paint paint, String content, - int width){ - int charLength = content.length(); - int start = 0; - int tempWidth = 0; - LinkedList<String> strList = new LinkedList<String>(); - - /* - * Break a String into String[] by the width & should wrap the word - */ - for (int i = 1; i <= charLength; ++i){ - tempWidth = (int)Math.ceil(paint.measureText(content, start, i)); - if (tempWidth >= width){ - int lastIndexOfSpace = content.substring(0, i).lastIndexOf(" "); - - if (lastIndexOfSpace != -1){ - /** - * Should wrap the word - */ - strList.add(content.substring(start, lastIndexOfSpace)); - i = lastIndexOfSpace; - } - else { - /* - * Should not exceed the width - */ - if (tempWidth > width){ - strList.add(content.substring(start, i - 1)); - /* - * compute from previous char - */ - --i; - } - else { - strList.add(content.substring(start, i)); - } - } - - start = i; - } - } - - /* - * Add the last chars - */ - if (start < charLength){ - strList.add(content.substring(start)); - } - - return strList; - } - - private static Paint newPaint(String fontName, int fontSize, int alignment){ - Paint paint = new Paint(); - paint.setColor(Color.WHITE); - paint.setTextSize(fontSize); - paint.setAntiAlias(true); - - /* - * Set type face for paint, now it support .ttf file. - */ - if (fontName.endsWith(".ttf")){ - try { - Typeface typeFace = Typeface.createFromAsset(context.getAssets(), fontName); - paint.setTypeface(typeFace); - } catch (Exception e){ - Log.e("Cocos2dxBitmap", - "error to create ttf type face: " + fontName); - - /* - * The file may not find, use system font - */ - paint.setTypeface(Typeface.create(fontName, Typeface.NORMAL)); - } - } - else { - paint.setTypeface(Typeface.create(fontName, Typeface.NORMAL)); - } - - switch (alignment){ - case ALIGNCENTER: - paint.setTextAlign(Align.CENTER); - break; - - case ALIGNLEFT: - paint.setTextAlign(Align.LEFT); - break; - - case ALIGNRIGHT: - paint.setTextAlign(Align.RIGHT); - break; - - default: - paint.setTextAlign(Align.LEFT); - break; - } - - return paint; - } - - private static String refactorString(String str){ - // Avoid error when content is "" - if (str.compareTo("") == 0){ - return " "; - } - - /* - * If the font of "\n" is "" or "\n", insert " " in front of it. - * - * For example: - * "\nabc" -> " \nabc" - * "\nabc\n\n" -> " \nabc\n \n" - */ - StringBuilder strBuilder = new StringBuilder(str); - int start = 0; - int index = strBuilder.indexOf("\n"); - while (index != -1){ - if (index == 0 || strBuilder.charAt(index -1) == '\n'){ - strBuilder.insert(start, " "); - start = index + 2; - } else { - start = index + 1; - } - - if (start > strBuilder.length() || index == strBuilder.length()){ - break; - } - - index = strBuilder.indexOf("\n", start); - } - - return strBuilder.toString(); - } - - private static void initNativeObject(Bitmap bitmap){ - byte[] pixels = getPixels(bitmap); - if (pixels == null){ - return; - } - - nativeInitBitmapDC(bitmap.getWidth(), bitmap.getHeight(), pixels); - } - - private static byte[] getPixels(Bitmap bitmap){ - if (bitmap != null){ - byte[] pixels = new byte[bitmap.getWidth() * bitmap.getHeight() * 4]; - ByteBuffer buf = ByteBuffer.wrap(pixels); - buf.order(ByteOrder.nativeOrder()); - bitmap.copyPixelsToBuffer(buf); - return pixels; - } - - return null; - } - - private static native void nativeInitBitmapDC(int width, int height, byte[] pixels); -} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java deleted file mode 100644 index 8af93bc490..0000000000 --- a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java +++ /dev/null @@ -1,384 +0,0 @@ -package org.cocos2dx.lib; - -import android.content.Context; -import android.opengl.GLSurfaceView; -import android.os.Handler; -import android.os.Message; -import android.text.Editable; -import android.text.TextWatcher; -import android.util.AttributeSet; -import android.util.Log; -import android.view.KeyEvent; -import android.view.MotionEvent; -import android.view.inputmethod.InputMethodManager; -import android.widget.LinearLayout; -import android.widget.TextView; -import android.widget.TextView.OnEditorActionListener; - -class TextInputWraper implements TextWatcher, OnEditorActionListener { - - private static final Boolean debug = false; - private void LogD(String msg) { - if (debug) Log.d("TextInputFilter", msg); - } - - private Cocos2dxGLSurfaceView mMainView; - private String mText; - private String mOriginText; - - private Boolean isFullScreenEdit() { - InputMethodManager imm = (InputMethodManager)mMainView.getTextField().getContext().getSystemService(Context.INPUT_METHOD_SERVICE); - return imm.isFullscreenMode(); - } - - public TextInputWraper(Cocos2dxGLSurfaceView view) { - mMainView = view; - } - - public void setOriginText(String text) { - mOriginText = text; - } - - @Override - public void afterTextChanged(Editable s) { - if (isFullScreenEdit()) { - return; - } - - LogD("afterTextChanged: " + s); - int nModified = s.length() - mText.length(); - if (nModified > 0) { - final String insertText = s.subSequence(mText.length(), s.length()).toString(); - mMainView.insertText(insertText); - LogD("insertText(" + insertText + ")"); - } - else { - for (; nModified < 0; ++nModified) { - mMainView.deleteBackward(); - LogD("deleteBackward"); - } - } - mText = s.toString(); - } - - @Override - public void beforeTextChanged(CharSequence s, int start, int count, - int after) { - LogD("beforeTextChanged(" + s + ")start: " + start + ",count: " + count + ",after: " + after); - mText = s.toString(); - } - - @Override - public void onTextChanged(CharSequence s, int start, int before, int count) { - } - - @Override - public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { - if (mMainView.getTextField() == v && isFullScreenEdit()) { - // user press the action button, delete all old text and insert new text - for (int i = mOriginText.length(); i > 0; --i) { - mMainView.deleteBackward(); - LogD("deleteBackward"); - } - String text = v.getText().toString(); - - /* - * If user input nothing, translate "\n" to engine. - */ - if (text.compareTo("") == 0){ - text = "\n"; - } - - if ('\n' != text.charAt(text.length() - 1)) { - text += '\n'; - } - - final String insertText = text; - mMainView.insertText(insertText); - LogD("insertText(" + insertText + ")"); - } - return false; - } -} - -public class Cocos2dxGLSurfaceView extends GLSurfaceView { - - static private Cocos2dxGLSurfaceView mainView; - - private static final String TAG = Cocos2dxGLSurfaceView.class.getCanonicalName(); - private Cocos2dxRenderer mRenderer; - - private static final boolean debug = false; - - /////////////////////////////////////////////////////////////////////////// - // for initialize - /////////////////////////////////////////////////////////////////////////// - public Cocos2dxGLSurfaceView(Context context) { - super(context); - initView(); - } - - public Cocos2dxGLSurfaceView(Context context, AttributeSet attrs) { - super(context, attrs); - initView(); - } - - protected void initView() { - mRenderer = new Cocos2dxRenderer(); - setFocusableInTouchMode(true); - setRenderer(mRenderer); - - textInputWraper = new TextInputWraper(this); - - handler = new Handler(){ - public void handleMessage(Message msg){ - switch(msg.what){ - case HANDLER_OPEN_IME_KEYBOARD: - if (null != mTextField && mTextField.requestFocus()) { - mTextField.removeTextChangedListener(textInputWraper); - mTextField.setText(""); - String text = (String)msg.obj; - mTextField.append(text); - textInputWraper.setOriginText(text); - mTextField.addTextChangedListener(textInputWraper); - InputMethodManager imm = (InputMethodManager)mainView.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); - imm.showSoftInput(mTextField, 0); - Log.d("GLSurfaceView", "showSoftInput"); - } - break; - - case HANDLER_CLOSE_IME_KEYBOARD: - if (null != mTextField) { - mTextField.removeTextChangedListener(textInputWraper); - InputMethodManager imm = (InputMethodManager)mainView.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); - imm.hideSoftInputFromWindow(mTextField.getWindowToken(), 0); - Log.d("GLSurfaceView", "HideSoftInput"); - } - break; - } - } - }; - - mainView = this; - } - - public void onPause(){ - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleOnPause(); - } - }); - - super.onPause(); - } - - public void onResume(){ - super.onResume(); - - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleOnResume(); - } - }); - } - - /////////////////////////////////////////////////////////////////////////// - // for text input - /////////////////////////////////////////////////////////////////////////// - private final static int HANDLER_OPEN_IME_KEYBOARD = 2; - private final static int HANDLER_CLOSE_IME_KEYBOARD = 3; - private static Handler handler; - private static TextInputWraper textInputWraper; - private TextView mTextField; - - public TextView getTextField() { - return mTextField; - } - - public void setTextField(TextView view) { - mTextField = view; - if (null != mTextField && null != textInputWraper) { - LinearLayout.LayoutParams linearParams = (LinearLayout.LayoutParams) mTextField.getLayoutParams(); - linearParams.height = 0; - mTextField.setLayoutParams(linearParams); - mTextField.setOnEditorActionListener(textInputWraper); - this.requestFocus(); - } - } - - public static void openIMEKeyboard() { - Message msg = new Message(); - msg.what = HANDLER_OPEN_IME_KEYBOARD; - msg.obj = mainView.getContentText(); - handler.sendMessage(msg); - - } - - private String getContentText() { - return mRenderer.getContentText(); - } - - public static void closeIMEKeyboard() { - Message msg = new Message(); - msg.what = HANDLER_CLOSE_IME_KEYBOARD; - handler.sendMessage(msg); - } - - public void insertText(final String text) { - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleInsertText(text); - } - }); - } - - public void deleteBackward() { - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleDeleteBackward(); - } - }); - } - - /////////////////////////////////////////////////////////////////////////// - // for touch event - /////////////////////////////////////////////////////////////////////////// - - public boolean onTouchEvent(final MotionEvent event) { - // these data are used in ACTION_MOVE and ACTION_CANCEL - final int pointerNumber = event.getPointerCount(); - final int[] ids = new int[pointerNumber]; - final float[] xs = new float[pointerNumber]; - final float[] ys = new float[pointerNumber]; - - for (int i = 0; i < pointerNumber; i++) { - ids[i] = event.getPointerId(i); - xs[i] = event.getX(i); - ys[i] = event.getY(i); - } - - switch (event.getAction() & MotionEvent.ACTION_MASK) { - case MotionEvent.ACTION_POINTER_DOWN: - final int idPointerDown = event.getAction() >> MotionEvent.ACTION_POINTER_ID_SHIFT; - final float xPointerDown = event.getX(idPointerDown); - final float yPointerDown = event.getY(idPointerDown); - - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleActionDown(idPointerDown, xPointerDown, yPointerDown); - } - }); - break; - - case MotionEvent.ACTION_DOWN: - // there are only one finger on the screen - final int idDown = event.getPointerId(0); - final float xDown = event.getX(idDown); - final float yDown = event.getY(idDown); - - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleActionDown(idDown, xDown, yDown); - } - }); - break; - - case MotionEvent.ACTION_MOVE: - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleActionMove(ids, xs, ys); - } - }); - break; - - case MotionEvent.ACTION_POINTER_UP: - final int idPointerUp = event.getAction() >> MotionEvent.ACTION_POINTER_ID_SHIFT; - final float xPointerUp = event.getX(idPointerUp); - final float yPointerUp = event.getY(idPointerUp); - - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleActionUp(idPointerUp, xPointerUp, yPointerUp); - } - }); - break; - - case MotionEvent.ACTION_UP: - // there are only one finger on the screen - final int idUp = event.getPointerId(0); - final float xUp = event.getX(idUp); - final float yUp = event.getY(idUp); - - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleActionUp(idUp, xUp, yUp); - } - }); - break; - - case MotionEvent.ACTION_CANCEL: - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleActionCancel(ids, xs, ys); - } - }); - break; - } - - if (debug){ - dumpEvent(event); - } - return true; - } - - @Override - public boolean onKeyDown(int keyCode, KeyEvent event) { - final int kc = keyCode; - if (keyCode == KeyEvent.KEYCODE_BACK || keyCode == KeyEvent.KEYCODE_MENU) { - queueEvent(new Runnable() { - @Override - public void run() { - mRenderer.handleKeyDown(kc); - } - }); - return true; - } - return super.onKeyDown(keyCode, event); - } - // Show an event in the LogCat view, for debugging - private void dumpEvent(MotionEvent event) { - String names[] = { "DOWN" , "UP" , "MOVE" , "CANCEL" , "OUTSIDE" , - "POINTER_DOWN" , "POINTER_UP" , "7?" , "8?" , "9?" }; - StringBuilder sb = new StringBuilder(); - int action = event.getAction(); - int actionCode = action & MotionEvent.ACTION_MASK; - sb.append("event ACTION_" ).append(names[actionCode]); - if (actionCode == MotionEvent.ACTION_POINTER_DOWN - || actionCode == MotionEvent.ACTION_POINTER_UP) { - sb.append("(pid " ).append( - action >> MotionEvent.ACTION_POINTER_ID_SHIFT); - sb.append(")" ); - } - sb.append("[" ); - for (int i = 0; i < event.getPointerCount(); i++) { - sb.append("#" ).append(i); - sb.append("(pid " ).append(event.getPointerId(i)); - sb.append(")=" ).append((int) event.getX(i)); - sb.append("," ).append((int) event.getY(i)); - if (i + 1 < event.getPointerCount()) - sb.append(";" ); - } - sb.append("]" ); - Log.d(TAG, sb.toString()); - } -} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxMusic.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxMusic.java deleted file mode 100644 index 70fb03b254..0000000000 --- a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxMusic.java +++ /dev/null @@ -1,177 +0,0 @@ -package org.cocos2dx.lib; - -import android.content.Context; -import android.content.res.AssetFileDescriptor; -import android.media.MediaPlayer; -import android.util.Log; - -/** - * - * This class is used for controlling background music - * - */ -public class Cocos2dxMusic { - - private static final String TAG = "Cocos2dxMusic"; - private float mLeftVolume; - private float mRightVolume; - private Context mContext; - private MediaPlayer mBackgroundMediaPlayer; - private boolean mIsPaused; - private String mCurrentPath; - - public Cocos2dxMusic(Context context){ - this.mContext = context; - initData(); - } - - public void playBackgroundMusic(String path, boolean isLoop){ - if (mCurrentPath == null){ - // it is the first time to play background music - // or end() was called - mBackgroundMediaPlayer = createMediaplayerFromAssets(path); - mCurrentPath = path; - } - else { - if (! mCurrentPath.equals(path)){ - // play new background music - - // release old resource and create a new one - if (mBackgroundMediaPlayer != null){ - mBackgroundMediaPlayer.release(); - } - mBackgroundMediaPlayer = createMediaplayerFromAssets(path); - - // record the path - mCurrentPath = path; - } - } - - if (mBackgroundMediaPlayer == null){ - Log.e(TAG, "playBackgroundMusic: background media player is null"); - } else { - // if the music is playing or paused, stop it - mBackgroundMediaPlayer.stop(); - - mBackgroundMediaPlayer.setLooping(isLoop); - - try { - mBackgroundMediaPlayer.prepare(); - mBackgroundMediaPlayer.seekTo(0); - mBackgroundMediaPlayer.start(); - - this.mIsPaused = false; - } catch (Exception e){ - Log.e(TAG, "playBackgroundMusic: error state"); - } - } - } - - public void stopBackgroundMusic(){ - if (mBackgroundMediaPlayer != null){ - mBackgroundMediaPlayer.stop(); - - // should set the state, if not , the following sequence will be error - // play -> pause -> stop -> resume - this.mIsPaused = false; - } - } - - public void pauseBackgroundMusic(){ - if (mBackgroundMediaPlayer != null && mBackgroundMediaPlayer.isPlaying()){ - mBackgroundMediaPlayer.pause(); - this.mIsPaused = true; - } - } - - public void resumeBackgroundMusic(){ - if (mBackgroundMediaPlayer != null && this.mIsPaused){ - mBackgroundMediaPlayer.start(); - this.mIsPaused = false; - } - } - - public void rewindBackgroundMusic(){ - if (mBackgroundMediaPlayer != null){ - mBackgroundMediaPlayer.stop(); - - try { - mBackgroundMediaPlayer.prepare(); - mBackgroundMediaPlayer.seekTo(0); - mBackgroundMediaPlayer.start(); - - this.mIsPaused = false; - } catch (Exception e){ - Log.e(TAG, "rewindBackgroundMusic: error state"); - } - } - } - - public boolean isBackgroundMusicPlaying(){ - boolean ret = false; - - if (mBackgroundMediaPlayer == null){ - ret = false; - } else { - ret = mBackgroundMediaPlayer.isPlaying(); - } - - return ret; - } - - public void end(){ - if (mBackgroundMediaPlayer != null){ - mBackgroundMediaPlayer.release(); - } - - initData(); - } - - public float getBackgroundVolume(){ - if (this.mBackgroundMediaPlayer != null){ - return (this.mLeftVolume + this.mRightVolume) / 2; - } else { - return 0.0f; - } - } - - public void setBackgroundVolume(float volume){ - this.mLeftVolume = this.mRightVolume = volume; - if (this.mBackgroundMediaPlayer != null){ - this.mBackgroundMediaPlayer.setVolume(this.mLeftVolume, this.mRightVolume); - } - } - - private void initData(){ - mLeftVolume =0.5f; - mRightVolume = 0.5f; - mBackgroundMediaPlayer = null; - mIsPaused = false; - mCurrentPath = null; - } - - /** - * create mediaplayer for music - * @param path the path relative to assets - * @return - */ - private MediaPlayer createMediaplayerFromAssets(String path){ - MediaPlayer mediaPlayer = null; - - try{ - AssetFileDescriptor assetFileDescritor = mContext.getAssets().openFd(path); - - mediaPlayer = new MediaPlayer(); - mediaPlayer.setDataSource(assetFileDescritor.getFileDescriptor(), - assetFileDescritor.getStartOffset(), assetFileDescritor.getLength()); - mediaPlayer.prepare(); - - mediaPlayer.setVolume(mLeftVolume, mRightVolume); - }catch (Exception e) { - mediaPlayer = null; - Log.e(TAG, "error: " + e.getMessage(), e); - } - - return mediaPlayer; - } -} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxRenderer.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxRenderer.java deleted file mode 100644 index 95139b4dc6..0000000000 --- a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxRenderer.java +++ /dev/null @@ -1,107 +0,0 @@ -package org.cocos2dx.lib; - -import javax.microedition.khronos.egl.EGLConfig; -import javax.microedition.khronos.opengles.GL10; - -import android.opengl.GLSurfaceView; - -public class Cocos2dxRenderer implements GLSurfaceView.Renderer { - private final static long NANOSECONDSPERSECOND = 1000000000L; - private final static long NANOSECONDSPERMINISECOND = 1000000; - private static long animationInterval = (long)(1.0 / 60 * NANOSECONDSPERSECOND); - private long last; - - public void onSurfaceCreated(GL10 gl, EGLConfig config) { - nativeInit(Cocos2dxActivity.screenWidth, Cocos2dxActivity.screenHeight); - last = System.nanoTime(); - } - - public void onSurfaceChanged(GL10 gl, int w, int h) { - } - - public void onDrawFrame(GL10 gl) { - - long now = System.nanoTime(); - long interval = now - last; - - // should render a frame when onDrawFrame() is called - // or there is a "ghost" - nativeRender(); - - // fps controlling - if (interval < animationInterval){ - try { - // because we render it before, so we should sleep twice time interval - Thread.sleep((animationInterval - interval) * 2 / NANOSECONDSPERMINISECOND); - } catch (Exception e){} - } - - last = now; - } - - public void handleActionDown(int id, float x, float y) - { - nativeTouchesBegin(id, x, y); - } - - public void handleActionUp(int id, float x, float y) - { - nativeTouchesEnd(id, x, y); - } - - public void handleActionCancel(int[] id, float[] x, float[] y) - { - nativeTouchesCancel(id, x, y); - } - - public void handleActionMove(int[] id, float[] x, float[] y) - { - nativeTouchesMove(id, x, y); - } - - public void handleKeyDown(int keyCode) - { - nativeKeyDown(keyCode); - } - - public void handleOnPause(){ - nativeOnPause(); - } - - public void handleOnResume(){ - nativeOnResume(); - } - - public static void setAnimationInterval(double interval){ - animationInterval = (long)(interval * NANOSECONDSPERSECOND); - } - private static native void nativeTouchesBegin(int id, float x, float y); - private static native void nativeTouchesEnd(int id, float x, float y); - private static native void nativeTouchesMove(int[] id, float[] x, float[] y); - private static native void nativeTouchesCancel(int[] id, float[] x, float[] y); - private static native boolean nativeKeyDown(int keyCode); - private static native void nativeRender(); - private static native void nativeInit(int w, int h); - private static native void nativeOnPause(); - private static native void nativeOnResume(); - - ///////////////////////////////////////////////////////////////////////////////// - // handle input method edit message - ///////////////////////////////////////////////////////////////////////////////// - - public void handleInsertText(final String text) { - nativeInsertText(text); - } - - public void handleDeleteBackward() { - nativeDeleteBackward(); - } - - public String getContentText() { - return nativeGetContentText(); - } - - private static native void nativeInsertText(String text); - private static native void nativeDeleteBackward(); - private static native String nativeGetContentText(); -} diff --git a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxSound.java b/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxSound.java deleted file mode 100644 index ed037e44cc..0000000000 --- a/HelloCocos2dx/android/src/org/cocos2dx/lib/Cocos2dxSound.java +++ /dev/null @@ -1,160 +0,0 @@ -package org.cocos2dx.lib; - -import java.util.HashMap; - -import android.content.Context; -import android.media.AudioManager; -import android.media.SoundPool; -import android.util.Log; - -/** - * - * This class is used for controlling effect - * - */ - -public class Cocos2dxSound { - private Context mContext; - private SoundPool mSoundPool; - private float mLeftVolume; - private float mRightVolume; - - // sound id and stream id map - private HashMap<Integer,Integer> mSoundIdStreamIdMap; - // sound path and sound id map - private HashMap<String,Integer> mPathSoundIDMap; - - private static final String TAG = "Cocos2dxSound"; - private static final int MAX_SIMULTANEOUS_STREAMS_DEFAULT = 5; - private static final float SOUND_RATE = 1.0f; - private static final int SOUND_PRIORITY = 1; - private static final int SOUND_QUALITY = 5; - - private final int INVALID_SOUND_ID = -1; - private final int INVALID_STREAM_ID = -1; - - public Cocos2dxSound(Context context){ - this.mContext = context; - initData(); - } - - public int preloadEffect(String path){ - int soundId = INVALID_SOUND_ID; - - // if the sound is preloaded, pass it - if (this.mPathSoundIDMap.get(path) != null){ - soundId = this.mPathSoundIDMap.get(path).intValue(); - } else { - soundId = createSoundIdFromAsset(path); - - if (soundId != INVALID_SOUND_ID){ - // the sound is loaded but has not been played - this.mSoundIdStreamIdMap.put(soundId, INVALID_STREAM_ID); - - // record path and sound id map - this.mPathSoundIDMap.put(path, soundId); - } - } - - - - return soundId; - } - - public void unloadEffect(String path){ - // get sound id and remove from mPathSoundIDMap - Integer soundId = this.mPathSoundIDMap.remove(path); - - if (soundId != null){ - // unload effect - this.mSoundPool.unload(soundId.intValue()); - - // remove record from mSoundIdStreamIdMap - this.mSoundIdStreamIdMap.remove(soundId); - } - } - - public int playEffect(String path, boolean isLoop){ - Integer soundId = this.mPathSoundIDMap.get(path); - - if (soundId != null){ - // the sound is preloaded, stop it first - - this.mSoundPool.stop(soundId); - - // play sound - int streamId = this.mSoundPool.play(soundId.intValue(), this.mLeftVolume, - this.mRightVolume, SOUND_PRIORITY, isLoop ? -1 : 0, SOUND_RATE); - - // record sound id and stream id map - this.mSoundIdStreamIdMap.put(soundId, streamId); - } else { - // the effect is not prepared - soundId = preloadEffect(path); - if (soundId == INVALID_SOUND_ID){ - // can not preload effect - return INVALID_SOUND_ID; - } - - /* - * Someone reports that, it can not play effect for the - * first time. If you are lucky to meet it. There are two - * ways to resolve it. - * 1. Add some delay here. I don't know how long it is, so - * I don't add it here. - * 2. If you use 2.2(API level 8), you can call - * SoundPool.setOnLoadCompleteListener() to play the effect. - * Because the method is supported from 2.2, so I can't use - * it here. - */ - playEffect(path, isLoop); - } - - return soundId.intValue(); - } - - public void stopEffect(int soundId){ - Integer streamId = this.mSoundIdStreamIdMap.get(soundId); - - if (streamId != null && streamId.intValue() != INVALID_STREAM_ID){ - this.mSoundPool.stop(streamId.intValue()); - } - } - - public float getEffectsVolume(){ - return (this.mLeftVolume + this.mRightVolume) / 2; - } - - public void setEffectsVolume(float volume){ - this.mLeftVolume = this.mRightVolume = volume; - } - - public void end(){ - this.mSoundPool.release(); - this.mPathSoundIDMap.clear(); - this.mSoundIdStreamIdMap.clear(); - - initData(); - } - - public int createSoundIdFromAsset(String path){ - int soundId = INVALID_SOUND_ID; - - try { - soundId = mSoundPool.load(mContext.getAssets().openFd(path), 0); - } catch(Exception e){ - Log.e(TAG, "error: " + e.getMessage(), e); - } - - return soundId; - } - - private void initData(){ - this.mSoundIdStreamIdMap = new HashMap<Integer,Integer>(); - mSoundPool = new SoundPool(MAX_SIMULTANEOUS_STREAMS_DEFAULT, AudioManager.STREAM_MUSIC, SOUND_QUALITY); - mPathSoundIDMap = new HashMap<String,Integer>(); - - this.mLeftVolume = 0.5f; - this.mRightVolume = 0.5f; - } -} diff --git a/HelloWorld/Classes/AppDelegate.cpp b/HelloWorld/Classes/AppDelegate.cpp index 80fd446ce8..b403f1f400 100644 --- a/HelloWorld/Classes/AppDelegate.cpp +++ b/HelloWorld/Classes/AppDelegate.cpp @@ -66,6 +66,8 @@ bool AppDelegate::initInstance() { CC_BREAK_IF(! pMainWnd || ! pMainWnd->Create("cocos2d: Hello World", 800, 480,480, 320)); + CCFileUtils::setResourcePath("Resource/"); + #endif // CC_PLATFORM_LINUX bRet = true; } while (0); diff --git a/HelloWorld/Linux/app.config.txt b/HelloWorld/Linux/app.config.txt deleted file mode 100644 index 104530ed60..0000000000 --- a/HelloWorld/Linux/app.config.txt +++ /dev/null @@ -1,5 +0,0 @@ -[Trace] -GAME <0 or 1> Game Channel - -[Assert] -GAME <0 or 1> Game Assert Channel \ No newline at end of file diff --git a/HelloWorld/Linux/cocos2dx-hello.REMOVED.git-id b/HelloWorld/Linux/cocos2dx-hello.REMOVED.git-id deleted file mode 100644 index a3e074db77..0000000000 --- a/HelloWorld/Linux/cocos2dx-hello.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -31c0c51a38e572f396b522e3f84d8e81006ec3c3 \ No newline at end of file diff --git a/HelloWorld/Linux/libcocos2dx.so.REMOVED.git-id b/HelloWorld/Linux/libcocos2dx.so.REMOVED.git-id deleted file mode 100644 index 4be1a6e822..0000000000 --- a/HelloWorld/Linux/libcocos2dx.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -209e03305db36dfa8d0554c51d5ffd29412eefd2 \ No newline at end of file diff --git a/cocos2dx/.cproject b/cocos2dx/.cproject index 3058658ec4..932aa82f6a 100644 --- a/cocos2dx/.cproject +++ b/cocos2dx/.cproject @@ -76,6 +76,7 @@ <option id="gnu.cpp.link.option.soname.2012475291" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> <option id="gnu.cpp.link.option.userobjs.1360463693" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libfreetype.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libcurl.a}""/> <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libxml2.a}""/> <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libpng.a}""/> <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libjpeg.a}""/> @@ -169,6 +170,7 @@ <option id="gnu.cpp.link.option.soname.1066283521" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> <option id="gnu.cpp.link.option.userobjs.394630625" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libfreetype.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libcurl.a}""/> <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libxml2.a}""/> <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libpng.a}""/> <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libjpeg.a}""/> diff --git a/lib/linux/Debug/libcocos2d.so.REMOVED.git-id b/lib/linux/Debug/libcocos2d.so.REMOVED.git-id index 0462f6c2a7..9bbbf48454 100644 --- a/lib/linux/Debug/libcocos2d.so.REMOVED.git-id +++ b/lib/linux/Debug/libcocos2d.so.REMOVED.git-id @@ -1 +1 @@ -335f313464b16139afb8574e68a0800445548869 \ No newline at end of file +0ffbc9f6a7b350e7027f65b7e4c6c64dd4e9d997 \ No newline at end of file diff --git a/lib/linux/Release/libcocos2d.so.REMOVED.git-id b/lib/linux/Release/libcocos2d.so.REMOVED.git-id index 80e5d26341..f860105318 100644 --- a/lib/linux/Release/libcocos2d.so.REMOVED.git-id +++ b/lib/linux/Release/libcocos2d.so.REMOVED.git-id @@ -1 +1 @@ -34336e0eeb88a5c17356c137ea0a23afb1fa6da1 \ No newline at end of file +0f68c17cc75a926c7c3b1b2189f23894cf5b2e2d \ No newline at end of file diff --git a/template/android/mycopy_files.sh b/template/android/mycopy_files.sh index a3743457cf..edf3bd2686 100644 --- a/template/android/mycopy_files.sh +++ b/template/android/mycopy_files.sh @@ -4,7 +4,7 @@ APP_NAME=$2 COCOS2DX_ROOT=$1 APP_DIR=`pwd`/$5 -HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloCocos2dx +HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloWorld NDK_ROOT=$3 PACKAGE_PATH=$4 diff --git a/tests/test.linux/.cproject b/tests/test.linux/.cproject new file mode 100644 index 0000000000..ea917a9e7c --- /dev/null +++ b/tests/test.linux/.cproject @@ -0,0 +1,203 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<?fileVersion 4.0.0?> + +<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> + <storageModule moduleId="org.eclipse.cdt.core.settings"> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.699705174"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.699705174" moduleId="org.eclipse.cdt.core.settings" name="Debug"> + <externalSettings/> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.debug.699705174" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="" postbuildStep="" preannouncebuildStep="" prebuildStep=""> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.699705174." name="/" resourcePath=""> + <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.debug.841204785" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.debug.1771431107" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/cocos2dx-test/Debug}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.debug.692013632" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool id="cdt.managedbuild.tool.gnu.archiver.base.823571804" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.405614352" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.248343481" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.634257735" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1707443626" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value="../../../cocos2dx/platform/third_party/linux"/> + <listOptionValue builtIn="false" value="../../../cocos2dx/include"/> + <listOptionValue builtIn="false" value="../../../cocos2dx"/> + <listOptionValue builtIn="false" value="../../../cocos2dx/platform"/> + <listOptionValue builtIn="false" value="../../../CocosDenshion/include"/> + <listOptionValue builtIn="false" value="../../..//chipmunk/include/chipmunk"/> + <listOptionValue builtIn="false" value="../../../Box2D"/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.331369055" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.2029444877" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.2041247495" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.1013157776" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.216261172" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.1705967553" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/linux}""/> + <listOptionValue builtIn="false" value="../CocosDenshion/include"/> + <listOptionValue builtIn="false" value="../cocos2dx/include"/> + <listOptionValue builtIn="false" value="../cocos2dx"/> + <listOptionValue builtIn="false" value="../cocos2dx/platform"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/chipmunk/include/chipmunk}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/Box2D}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/tests}""/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.305684306" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1712401455" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1840922427" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"/> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,../../lib/linux/Debug/" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.163089056" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option id="gnu.cpp.link.option.libs.1882458104" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="cocos2d"/> + <listOptionValue builtIn="false" value="rt"/> + <listOptionValue builtIn="false" value="z"/> + <listOptionValue builtIn="false" value="cocosdenshion"/> + </option> + <option id="gnu.cpp.link.option.paths.335055881" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/lib/linux/Debug}""/> + </option> + <option id="gnu.cpp.link.option.userobjs.1021852674" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/Box2D/lib/linux/libBox2D.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/linux/libraries/libcurl.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/chipmunk/lib/linux/libchipmunk.a}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.280033790" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.debug.844668943" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.1269039546" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="tests/PerformanceTest|tests/ParticleTest" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.1345370861"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.1345370861" moduleId="org.eclipse.cdt.core.settings" name="Release"> + <externalSettings/> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.release.1345370861" name="Release" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="" postbuildStep="" preannouncebuildStep="" prebuildStep=""> + <folderInfo id="cdt.managedbuild.config.gnu.exe.release.1345370861." name="/" resourcePath=""> + <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.release.1781668977" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.1261363662" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> + <builder buildPath="${workspace_loc:/cocos2dx-test/Release}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.release.1313719141" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> + <tool id="cdt.managedbuild.tool.gnu.archiver.base.184236871" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1754241599" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> + <option id="gnu.cpp.compiler.exe.release.option.optimization.level.2145723523" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.release.option.debugging.level.452676886" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.219173285" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value="../../../cocos2dx/platform/third_party/linux"/> + <listOptionValue builtIn="false" value="../../../cocos2dx/include"/> + <listOptionValue builtIn="false" value="../../../cocos2dx"/> + <listOptionValue builtIn="false" value="../../../cocos2dx/platform"/> + <listOptionValue builtIn="false" value="../../../CocosDenshion/include"/> + <listOptionValue builtIn="false" value="../../..//chipmunk/include/chipmunk"/> + <listOptionValue builtIn="false" value="../../../Box2D"/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.2022262883" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1960450905" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1494845250" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> + <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1213583313" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" value="gnu.c.optimization.level.none" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.release.option.debugging.level.222853384" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.1626903439" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/linux}""/> + <listOptionValue builtIn="false" value="../CocosDenshion/include"/> + <listOptionValue builtIn="false" value="../cocos2dx/include"/> + <listOptionValue builtIn="false" value="../cocos2dx"/> + <listOptionValue builtIn="false" value="../cocos2dx/platform"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/chipmunk/include/chipmunk}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/Box2D}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/tests}""/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.794705780" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.558791653" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.release.1799998206" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"/> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,../../lib/linux/Release/" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1783987767" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> + <option id="gnu.cpp.link.option.libs.1581059715" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="cocos2d"/> + <listOptionValue builtIn="false" value="rt"/> + <listOptionValue builtIn="false" value="z"/> + <listOptionValue builtIn="false" value="cocosdenshion"/> + </option> + <option id="gnu.cpp.link.option.paths.2032137429" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/lib/linux/Release}""/> + </option> + <option id="gnu.cpp.link.option.userobjs.1558283777" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/Box2D/lib/linux/libBox2D.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/linux/libraries/libcurl.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/chipmunk/lib/linux/libchipmunk.a}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1573978538" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.release.807780287" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.92136121" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="tests/PerformanceTest|tests/ParticleTest" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <project id="cocos2dx-test.cdt.managedbuild.target.gnu.exe.944553697" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/> + </storageModule> + <storageModule moduleId="scannerConfiguration"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.699705174;cdt.managedbuild.config.gnu.exe.debug.699705174.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.405614352;cdt.managedbuild.tool.gnu.cpp.compiler.input.2029444877"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1345370861;cdt.managedbuild.config.gnu.exe.release.1345370861.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1754241599;cdt.managedbuild.tool.gnu.cpp.compiler.input.1960450905"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1345370861;cdt.managedbuild.config.gnu.exe.release.1345370861.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.1494845250;cdt.managedbuild.tool.gnu.c.compiler.input.558791653"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.699705174;cdt.managedbuild.config.gnu.exe.debug.699705174.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.2041247495;cdt.managedbuild.tool.gnu.c.compiler.input.1712401455"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + </storageModule> + <storageModule moduleId="refreshScope"/> + <storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/> +</cproject> diff --git a/tests/test.linux/.project b/tests/test.linux/.project new file mode 100644 index 0000000000..8af8c66db6 --- /dev/null +++ b/tests/test.linux/.project @@ -0,0 +1,880 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>cocos2dx-test</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> + <triggers>clean,full,incremental,</triggers> + <arguments> + <dictionary> + <key>?name?</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.append_environment</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.autoBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildArguments</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildCommand</key> + <value>make</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildLocation</key> + <value>${workspace_loc:/cocos2dx-test/Debug}</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.cleanBuildTarget</key> + <value>clean</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.contents</key> + <value>org.eclipse.cdt.make.core.activeConfigSettings</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableAutoBuild</key> + <value>false</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableCleanBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableFullBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.fullBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.stopOnError</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> + <value>true</value> + </dictionary> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> + <triggers>full,incremental,</triggers> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.cdt.core.cnature</nature> + <nature>org.eclipse.cdt.core.ccnature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> + </natures> + <linkedResources> + <link> + <name>AppDelegate.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/AppDelegate.cpp</locationURI> + </link> + <link> + <name>AppDelegate.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/AppDelegate.h</locationURI> + </link> + <link> + <name>tests</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/AccelerometerTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/ActionManagerTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/ActionsTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/Box2DTest</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/Box2DTest</locationURI> + </link> + <link> + <name>tests/Box2DTestBed</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/Box2DTestBed</locationURI> + </link> + <link> + <name>tests/BugsTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/ChipmunkTest</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ChipmunkTest</locationURI> + </link> + <link> + <name>tests/ClickAndMoveTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/CocosDenshionTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/CocosNodeTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/CurlTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/CurrentLanguageTest</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/CurrentLanguageTest</locationURI> + </link> + <link> + <name>tests/DirectorTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/DrawPrimitivesTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/EaseActionsTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/EffectsAdvancedTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/EffectsTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/FontTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/HiResTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/IntervalTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/KeypadTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/LabelTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/LayerTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/MenuTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/MotionStreakTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/ParallaxTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/ParticleTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/PerformanceTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/ProgressActionsTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/RenderTextureTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/RotateWorldTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/SceneTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/SchedulerTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/SpriteTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/TextInputTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/Texture2dTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/TileMapTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/TouchesTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/TransitionsTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/UserDefaultTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/ZwoptexTest</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/controller.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/controller.cpp</locationURI> + </link> + <link> + <name>tests/controller.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/controller.h</locationURI> + </link> + <link> + <name>tests/testBasic.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/testBasic.cpp</locationURI> + </link> + <link> + <name>tests/testBasic.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/testBasic.h</locationURI> + </link> + <link> + <name>tests/testResource.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/testResource.h</locationURI> + </link> + <link> + <name>tests/tests.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/tests.h</locationURI> + </link> + <link> + <name>tests/AccelerometerTest/AccelerometerTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/AccelerometerTest/AccelerometerTest.cpp</locationURI> + </link> + <link> + <name>tests/AccelerometerTest/AccelerometerTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/AccelerometerTest/AccelerometerTest.h</locationURI> + </link> + <link> + <name>tests/ActionManagerTest/ActionManagerTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ActionManagerTest/ActionManagerTest.cpp</locationURI> + </link> + <link> + <name>tests/ActionManagerTest/ActionManagerTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ActionManagerTest/ActionManagerTest.h</locationURI> + </link> + <link> + <name>tests/ActionsTest/ActionsTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ActionsTest/ActionsTest.cpp</locationURI> + </link> + <link> + <name>tests/ActionsTest/ActionsTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ActionsTest/ActionsTest.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-1159.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-1159.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-1159.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-1159.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-1174.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-1174.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-1174.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-1174.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-350.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-350.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-350.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-350.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-422.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-422.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-422.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-422.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-458</name> + <type>2</type> + <locationURI>virtual:/virtual</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-624.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-624.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-624.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-624.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-886.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-886.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-886.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-886.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-899.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-899.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-899.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-899.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-914.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-914.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-914.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-914.h</locationURI> + </link> + <link> + <name>tests/BugsTest/BugsTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/BugsTest.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/BugsTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/BugsTest.h</locationURI> + </link> + <link> + <name>tests/ClickAndMoveTest/ClickAndMoveTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ClickAndMoveTest/ClickAndMoveTest.cpp</locationURI> + </link> + <link> + <name>tests/ClickAndMoveTest/ClickAndMoveTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ClickAndMoveTest/ClickAndMoveTest.h</locationURI> + </link> + <link> + <name>tests/CocosDenshionTest/CocosDenshionTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/CocosDenshionTest/CocosDenshionTest.cpp</locationURI> + </link> + <link> + <name>tests/CocosDenshionTest/CocosDenshionTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/CocosDenshionTest/CocosDenshionTest.h</locationURI> + </link> + <link> + <name>tests/CocosNodeTest/CocosNodeTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/CocosNodeTest/CocosNodeTest.cpp</locationURI> + </link> + <link> + <name>tests/CocosNodeTest/CocosNodeTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/CocosNodeTest/CocosNodeTest.h</locationURI> + </link> + <link> + <name>tests/CurlTest/CurlTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/CurlTest/CurlTest.cpp</locationURI> + </link> + <link> + <name>tests/CurlTest/CurlTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/CurlTest/CurlTest.h</locationURI> + </link> + <link> + <name>tests/DirectorTest/DirectorTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/DirectorTest/DirectorTest.cpp</locationURI> + </link> + <link> + <name>tests/DirectorTest/DirectorTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/DirectorTest/DirectorTest.h</locationURI> + </link> + <link> + <name>tests/DrawPrimitivesTest/DrawPrimitivesTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/DrawPrimitivesTest/DrawPrimitivesTest.cpp</locationURI> + </link> + <link> + <name>tests/DrawPrimitivesTest/DrawPrimitivesTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/DrawPrimitivesTest/DrawPrimitivesTest.h</locationURI> + </link> + <link> + <name>tests/EaseActionsTest/EaseActionsTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/EaseActionsTest/EaseActionsTest.cpp</locationURI> + </link> + <link> + <name>tests/EaseActionsTest/EaseActionsTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/EaseActionsTest/EaseActionsTest.h</locationURI> + </link> + <link> + <name>tests/EffectsAdvancedTest/EffectsAdvancedTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/EffectsAdvancedTest/EffectsAdvancedTest.cpp</locationURI> + </link> + <link> + <name>tests/EffectsAdvancedTest/EffectsAdvancedTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/EffectsAdvancedTest/EffectsAdvancedTest.h</locationURI> + </link> + <link> + <name>tests/EffectsTest/EffectsTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/EffectsTest/EffectsTest.cpp</locationURI> + </link> + <link> + <name>tests/EffectsTest/EffectsTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/EffectsTest/EffectsTest.h</locationURI> + </link> + <link> + <name>tests/FontTest/FontTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/FontTest/FontTest.cpp</locationURI> + </link> + <link> + <name>tests/FontTest/FontTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/FontTest/FontTest.h</locationURI> + </link> + <link> + <name>tests/HiResTest/HiResTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/HiResTest/HiResTest.cpp</locationURI> + </link> + <link> + <name>tests/HiResTest/HiResTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/HiResTest/HiResTest.h</locationURI> + </link> + <link> + <name>tests/IntervalTest/IntervalTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/IntervalTest/IntervalTest.cpp</locationURI> + </link> + <link> + <name>tests/IntervalTest/IntervalTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/IntervalTest/IntervalTest.h</locationURI> + </link> + <link> + <name>tests/KeypadTest/KeypadTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/KeypadTest/KeypadTest.cpp</locationURI> + </link> + <link> + <name>tests/KeypadTest/KeypadTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/KeypadTest/KeypadTest.h</locationURI> + </link> + <link> + <name>tests/LabelTest/LabelTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/LabelTest/LabelTest.cpp</locationURI> + </link> + <link> + <name>tests/LabelTest/LabelTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/LabelTest/LabelTest.h</locationURI> + </link> + <link> + <name>tests/LayerTest/LayerTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/LayerTest/LayerTest.cpp</locationURI> + </link> + <link> + <name>tests/LayerTest/LayerTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/LayerTest/LayerTest.h</locationURI> + </link> + <link> + <name>tests/MenuTest/MenuTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/MenuTest/MenuTest.cpp</locationURI> + </link> + <link> + <name>tests/MenuTest/MenuTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/MenuTest/MenuTest.h</locationURI> + </link> + <link> + <name>tests/MotionStreakTest/MotionStreakTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/MotionStreakTest/MotionStreakTest.cpp</locationURI> + </link> + <link> + <name>tests/MotionStreakTest/MotionStreakTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/MotionStreakTest/MotionStreakTest.h</locationURI> + </link> + <link> + <name>tests/ParallaxTest/ParallaxTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ParallaxTest/ParallaxTest.cpp</locationURI> + </link> + <link> + <name>tests/ParallaxTest/ParallaxTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ParallaxTest/ParallaxTest.h</locationURI> + </link> + <link> + <name>tests/ParticleTest/ParticleTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ParticleTest/ParticleTest.cpp</locationURI> + </link> + <link> + <name>tests/ParticleTest/ParticleTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ParticleTest/ParticleTest.h</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceNodeChildrenTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceNodeChildrenTest.cpp</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceNodeChildrenTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceNodeChildrenTest.h</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceParticleTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceParticleTest.cpp</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceParticleTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceParticleTest.h</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceSpriteTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceSpriteTest.cpp</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceSpriteTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceSpriteTest.h</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceTest.cpp</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceTest.h</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceTextureTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceTextureTest.cpp</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceTextureTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceTextureTest.h</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceTouchesTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceTouchesTest.cpp</locationURI> + </link> + <link> + <name>tests/PerformanceTest/PerformanceTouchesTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/PerformanceTest/PerformanceTouchesTest.h</locationURI> + </link> + <link> + <name>tests/ProgressActionsTest/ProgressActionsTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ProgressActionsTest/ProgressActionsTest.cpp</locationURI> + </link> + <link> + <name>tests/ProgressActionsTest/ProgressActionsTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ProgressActionsTest/ProgressActionsTest.h</locationURI> + </link> + <link> + <name>tests/RenderTextureTest/RenderTextureTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/RenderTextureTest/RenderTextureTest.cpp</locationURI> + </link> + <link> + <name>tests/RenderTextureTest/RenderTextureTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/RenderTextureTest/RenderTextureTest.h</locationURI> + </link> + <link> + <name>tests/RotateWorldTest/RotateWorldTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/RotateWorldTest/RotateWorldTest.cpp</locationURI> + </link> + <link> + <name>tests/RotateWorldTest/RotateWorldTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/RotateWorldTest/RotateWorldTest.h</locationURI> + </link> + <link> + <name>tests/SceneTest/SceneTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/SceneTest/SceneTest.cpp</locationURI> + </link> + <link> + <name>tests/SceneTest/SceneTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/SceneTest/SceneTest.h</locationURI> + </link> + <link> + <name>tests/SchedulerTest/SchedulerTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/SchedulerTest/SchedulerTest.cpp</locationURI> + </link> + <link> + <name>tests/SchedulerTest/SchedulerTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/SchedulerTest/SchedulerTest.h</locationURI> + </link> + <link> + <name>tests/SpriteTest/SpriteTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/SpriteTest/SpriteTest.cpp</locationURI> + </link> + <link> + <name>tests/SpriteTest/SpriteTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/SpriteTest/SpriteTest.h</locationURI> + </link> + <link> + <name>tests/TextInputTest/TextInputTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TextInputTest/TextInputTest.cpp</locationURI> + </link> + <link> + <name>tests/TextInputTest/TextInputTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TextInputTest/TextInputTest.h</locationURI> + </link> + <link> + <name>tests/Texture2dTest/Texture2dTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/Texture2dTest/Texture2dTest.cpp</locationURI> + </link> + <link> + <name>tests/Texture2dTest/Texture2dTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/Texture2dTest/Texture2dTest.h</locationURI> + </link> + <link> + <name>tests/TileMapTest/TileMapTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TileMapTest/TileMapTest.cpp</locationURI> + </link> + <link> + <name>tests/TileMapTest/TileMapTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TileMapTest/TileMapTest.h</locationURI> + </link> + <link> + <name>tests/TouchesTest/Ball.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TouchesTest/Ball.cpp</locationURI> + </link> + <link> + <name>tests/TouchesTest/Ball.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TouchesTest/Ball.h</locationURI> + </link> + <link> + <name>tests/TouchesTest/Paddle.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TouchesTest/Paddle.cpp</locationURI> + </link> + <link> + <name>tests/TouchesTest/Paddle.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TouchesTest/Paddle.h</locationURI> + </link> + <link> + <name>tests/TouchesTest/TouchesTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TouchesTest/TouchesTest.cpp</locationURI> + </link> + <link> + <name>tests/TouchesTest/TouchesTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TouchesTest/TouchesTest.h</locationURI> + </link> + <link> + <name>tests/TransitionsTest/TransitionsTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TransitionsTest/TransitionsTest.cpp</locationURI> + </link> + <link> + <name>tests/TransitionsTest/TransitionsTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/TransitionsTest/TransitionsTest.h</locationURI> + </link> + <link> + <name>tests/UserDefaultTest/UserDefaultTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/UserDefaultTest/UserDefaultTest.cpp</locationURI> + </link> + <link> + <name>tests/UserDefaultTest/UserDefaultTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/UserDefaultTest/UserDefaultTest.h</locationURI> + </link> + <link> + <name>tests/ZwoptexTest/ZwoptexTest.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ZwoptexTest/ZwoptexTest.cpp</locationURI> + </link> + <link> + <name>tests/ZwoptexTest/ZwoptexTest.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/ZwoptexTest/ZwoptexTest.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-458/Bug-458.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-458/Bug-458.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-458/Bug-458.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-458/Bug-458.h</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-458/QuestionContainerSprite.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-458/QuestionContainerSprite.cpp</locationURI> + </link> + <link> + <name>tests/BugsTest/Bug-458/QuestionContainerSprite.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/tests/BugsTest/Bug-458/QuestionContainerSprite.h</locationURI> + </link> + </linkedResources> +</projectDescription> diff --git a/tests/tests/ChipmunkTest/cocos2dChipmunkDemo.cpp b/tests/tests/ChipmunkTest/cocos2dChipmunkDemo.cpp index 1e19c23c70..fa2fbb7c2b 100644 --- a/tests/tests/ChipmunkTest/cocos2dChipmunkDemo.cpp +++ b/tests/tests/ChipmunkTest/cocos2dChipmunkDemo.cpp @@ -44,6 +44,11 @@ #define SLEEP_TICKS 16 +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) + +#define glOrthof glOrtho +#endif + //extern chipmunkDemo Test; extern chipmunkDemo LogoSmash; extern chipmunkDemo Simple; diff --git a/tests/tests/controller.cpp b/tests/tests/controller.cpp index 55f30a155f..db3a831da3 100644 --- a/tests/tests/controller.cpp +++ b/tests/tests/controller.cpp @@ -54,7 +54,7 @@ static TestScene* CreateTestScene(int nIdx) pScene = new IntervalTestScene(); break; case TEST_CHIPMUNK: #if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY) -// pScene = new ChipmunkTestScene(); break; + pScene = new ChipmunkTestScene(); break; #else #ifdef AIRPLAYUSECHIPMUNK #if (AIRPLAYUSECHIPMUNK == 1) @@ -98,7 +98,7 @@ static TestScene* CreateTestScene(int nIdx) pScene = new ZwoptexTestScene(); break; #if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY) case TEST_CURL: -// pScene = new CurlTestScene(); break; + pScene = new CurlTestScene(); break; case TEST_USERDEFAULT: pScene = new UserDefaultTestScene(); break; #endif diff --git a/tests/tests/tests.h b/tests/tests/tests.h index 436d5befaf..c4ee2fa49a 100644 --- a/tests/tests/tests.h +++ b/tests/tests/tests.h @@ -37,7 +37,7 @@ #include "PerformanceTest/PerformanceTest.h" #include "ZwoptexTest/ZwoptexTest.h" #include "CocosDenshionTest/CocosDenshionTest.h" -//#include "CurlTest/CurlTest.h" +#include "CurlTest/CurlTest.h" #include "UserDefaultTest/UserDefaultTest.h" #include "DirectorTest/DirectorTest.h" #include "BugsTest/BugsTest.h" @@ -46,7 +46,7 @@ #include "CurrentLanguageTest/CurrentLanguageTest.h" #if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY) -// #include "ChipmunkTest/cocos2dChipmunkDemo.h" + #include "ChipmunkTest/cocos2dChipmunkDemo.h" #else #ifdef AIRPLAYUSECHIPMUNK #if (AIRPLAYUSECHIPMUNK == 1) From e64bfd6c681a9cda90f652eefdde263f238b3ae9 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Sun, 28 Aug 2011 15:43:50 +0800 Subject: [PATCH 19/31] commit subdir.mk delete all obsolete *.d and *.o files --- cocos2dx/AndroidDebug/CCCamera.d | 79 ---- cocos2dx/AndroidDebug/CCConfiguration.d | 79 ---- cocos2dx/AndroidDebug/CCDirector.d | 220 ------------ .../AndroidDebug/CCDirector.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/CCDrawingPrimitives.d | 79 ---- cocos2dx/AndroidDebug/CCScheduler.d | 114 ------ .../AndroidDebug/CCScheduler.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/actions/CCAction.d | 127 ------- .../actions/CCAction.o.REMOVED.git-id | 1 - .../AndroidDebug/actions/CCActionCamera.d | 122 ------- cocos2dx/AndroidDebug/actions/CCActionEase.d | 116 ------ .../actions/CCActionEase.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/actions/CCActionGrid.d | 137 ------- .../actions/CCActionGrid.o.REMOVED.git-id | 1 - .../AndroidDebug/actions/CCActionGrid3D.d | 125 ------- .../actions/CCActionGrid3D.o.REMOVED.git-id | 1 - .../AndroidDebug/actions/CCActionInstant.d | 128 ------- .../actions/CCActionInstant.o.REMOVED.git-id | 1 - .../AndroidDebug/actions/CCActionInterval.d | 128 ------- .../actions/CCActionInterval.o.REMOVED.git-id | 1 - .../AndroidDebug/actions/CCActionManager.d | 107 ------ .../actions/CCActionManager.o.REMOVED.git-id | 1 - .../AndroidDebug/actions/CCActionPageTurn3D.d | 125 ------- .../actions/CCActionProgressTimer.d | 128 ------- .../AndroidDebug/actions/CCActionTiledGrid.d | 143 -------- .../CCActionTiledGrid.o.REMOVED.git-id | 1 - .../AndroidDebug/base_nodes/CCAtlasNode.d | 104 ------ .../base_nodes/CCAtlasNode.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/base_nodes/CCNode.d | 136 ------- .../base_nodes/CCNode.o.REMOVED.git-id | 1 - .../AndroidDebug/cocoa/CCAffineTransform.d | 23 -- .../AndroidDebug/cocoa/CCAutoreleasePool.d | 26 -- .../cocoa/CCAutoreleasePool.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/cocoa/CCData.d | 79 ---- cocos2dx/AndroidDebug/cocoa/CCGeometry.d | 19 - cocos2dx/AndroidDebug/cocoa/CCNS.d | 21 -- .../AndroidDebug/cocoa/CCNS.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/cocoa/CCObject.d | 28 -- cocos2dx/AndroidDebug/cocoa/CCSet.d | 22 -- .../AndroidDebug/cocoa/CCSet.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/cocoa/CCZone.d | 22 -- cocos2dx/AndroidDebug/cocos2d.d | 340 ------------------ cocos2dx/AndroidDebug/effects/CCGrabber.d | 91 ----- cocos2dx/AndroidDebug/effects/CCGrid.d | 121 ------- .../effects/CCGrid.o.REMOVED.git-id | 1 - .../keypad_dispatcher/CCKeypadDelegate.d | 74 ---- .../keypad_dispatcher/CCKeypadDispatcher.d | 84 ----- .../CCKeypadDispatcher.o.REMOVED.git-id | 1 - .../AndroidDebug/label_nodes/CCLabelAtlas.d | 113 ------ .../label_nodes/CCLabelAtlas.o.REMOVED.git-id | 1 - .../AndroidDebug/label_nodes/CCLabelBMFont.d | 140 -------- .../CCLabelBMFont.o.REMOVED.git-id | 1 - .../AndroidDebug/label_nodes/CCLabelTTF.d | 110 ------ .../label_nodes/CCLabelTTF.o.REMOVED.git-id | 1 - .../layers_scenes_transitions_nodes/CCLayer.d | 144 -------- .../CCLayer.o.REMOVED.git-id | 1 - .../layers_scenes_transitions_nodes/CCScene.d | 102 ------ .../CCTransition.d | 192 ---------- .../CCTransition.o.REMOVED.git-id | 1 - .../CCTransitionPageTurn.d | 147 -------- .../CCTransitionRadial.d | 153 -------- .../CCTransitionRadial.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/menu_nodes/CCMenu.d | 145 -------- .../menu_nodes/CCMenu.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d | 149 -------- .../menu_nodes/CCMenuItem.o.REMOVED.git-id | 1 - .../AndroidDebug/misc_nodes/CCMotionStreak.d | 107 ------ .../CCMotionStreak.o.REMOVED.git-id | 1 - .../AndroidDebug/misc_nodes/CCProgressTimer.d | 119 ------ .../CCProgressTimer.o.REMOVED.git-id | 1 - .../AndroidDebug/misc_nodes/CCRenderTexture.d | 143 -------- .../CCRenderTexture.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d | 112 ------ .../misc_nodes/CCRibbon.o.REMOVED.git-id | 1 - .../particle_nodes/CCParticleExamples.d | 128 ------- .../CCParticleExamples.o.REMOVED.git-id | 1 - .../particle_nodes/CCParticleSystem.d | 137 ------- .../CCParticleSystem.o.REMOVED.git-id | 1 - .../particle_nodes/CCParticleSystemQuad.d | 114 ------ .../CCParticleSystemQuad.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/platform/CCCommon.d | 17 - cocos2dx/AndroidDebug/platform/CCFileUtils.d | 164 --------- .../platform/CCFileUtils.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/platform/CCGL.d | 41 --- cocos2dx/AndroidDebug/platform/CCImage.d | 113 ------ .../platform/CCImage.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/platform/CCSAXParser.d | 149 -------- cocos2dx/AndroidDebug/platform/CCStdC.d | 15 - cocos2dx/AndroidDebug/platform/CCThread.d | 18 - .../android/CCAccelerometer_android.d | 27 -- .../CCAccelerometer_android.o.REMOVED.git-id | 1 - .../platform/android/CCApplication_android.d | 81 ----- .../CCApplication_android.o.REMOVED.git-id | 1 - .../platform/android/CCEGLView_android.d | 121 ------- .../platform/android/jni/IMEJni.d | 34 -- .../android/jni/IMEJni.o.REMOVED.git-id | 1 - .../platform/android/jni/JniHelper.d | 17 - .../android/jni/JniHelper.o.REMOVED.git-id | 1 - .../platform/android/jni/MessageJni.d | 98 ----- .../android/jni/MessageJni.o.REMOVED.git-id | 1 - .../platform/android/jni/SensorJni.d | 56 --- .../android/jni/SensorJni.o.REMOVED.git-id | 1 - .../platform/android/jni/SystemInfoJni.d | 32 -- .../jni/SystemInfoJni.o.REMOVED.git-id | 1 - .../platform/android/jni/TouchesJni.d | 122 ------- .../android/jni/TouchesJni.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/platform/platform.d | 22 -- .../script_support/CCScriptSupport.d | 101 ------ .../AndroidDebug/sprite_nodes/CCAnimation.d | 116 ------ .../sprite_nodes/CCAnimation.o.REMOVED.git-id | 1 - .../sprite_nodes/CCAnimationCache.d | 110 ------ .../CCAnimationCache.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d | 143 -------- .../sprite_nodes/CCSprite.o.REMOVED.git-id | 1 - .../sprite_nodes/CCSpriteBatchNode.d | 137 ------- .../CCSpriteBatchNode.o.REMOVED.git-id | 1 - .../AndroidDebug/sprite_nodes/CCSpriteFrame.d | 101 ------ .../sprite_nodes/CCSpriteFrameCache.d | 140 -------- .../CCSpriteFrameCache.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/support/CCArray.d | 79 ---- .../AndroidDebug/support/CCPointExtension.d | 74 ---- cocos2dx/AndroidDebug/support/CCProfiling.d | 10 - cocos2dx/AndroidDebug/support/CCUserDefault.d | 146 -------- .../support/CCUserDefault.o.REMOVED.git-id | 1 - .../AndroidDebug/support/TransformUtils.d | 49 --- cocos2dx/AndroidDebug/support/base64.d | 4 - cocos2dx/AndroidDebug/support/ccUtils.d | 4 - .../support/image_support/TGAlib.d | 79 ---- .../support/zip_support/ZipUtils.d | 82 ----- .../AndroidDebug/support/zip_support/ioapi.d | 7 - .../AndroidDebug/support/zip_support/unzip.d | 10 - .../text_input_node/CCIMEDispatcher.d | 26 -- .../CCIMEDispatcher.o.REMOVED.git-id | 1 - .../text_input_node/CCTextFieldTTF.d | 131 ------- .../CCTextFieldTTF.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/textures/CCTexture2D.d | 110 ------ .../textures/CCTexture2D.o.REMOVED.git-id | 1 - .../AndroidDebug/textures/CCTextureAtlas.d | 92 ----- .../AndroidDebug/textures/CCTextureCache.d | 110 ------ .../textures/CCTextureCache.o.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/textures/CCTexturePVR.d | 104 ------ .../textures/CCTexturePVR.o.REMOVED.git-id | 1 - .../tileMap_parallax_nodes/CCParallaxNode.d | 99 ----- .../CCParallaxNode.o.REMOVED.git-id | 1 - .../tileMap_parallax_nodes/CCTMXLayer.d | 143 -------- .../CCTMXLayer.o.REMOVED.git-id | 1 - .../tileMap_parallax_nodes/CCTMXObjectGroup.d | 84 ----- .../CCTMXObjectGroup.o.REMOVED.git-id | 1 - .../tileMap_parallax_nodes/CCTMXTiledMap.d | 138 ------- .../CCTMXTiledMap.o.REMOVED.git-id | 1 - .../tileMap_parallax_nodes/CCTMXXMLParser.d | 135 ------- .../CCTMXXMLParser.o.REMOVED.git-id | 1 - .../tileMap_parallax_nodes/CCTileMapAtlas.d | 117 ------ .../CCTileMapAtlas.o.REMOVED.git-id | 1 - .../touch_dispatcher/CCTouchDispatcher.d | 125 ------- .../CCTouchDispatcher.o.REMOVED.git-id | 1 - .../touch_dispatcher/CCTouchHandler.d | 110 ------ .../CCTouchHandler.o.REMOVED.git-id | 1 - cocos2dx/AndroidRelease/CCCamera.d | 79 ---- cocos2dx/AndroidRelease/CCConfiguration.d | 79 ---- cocos2dx/AndroidRelease/CCDirector.d | 220 ------------ cocos2dx/AndroidRelease/CCDrawingPrimitives.d | 79 ---- cocos2dx/AndroidRelease/CCScheduler.d | 114 ------ cocos2dx/AndroidRelease/actions/CCAction.d | 127 ------- .../AndroidRelease/actions/CCActionCamera.d | 122 ------- .../AndroidRelease/actions/CCActionEase.d | 116 ------ .../AndroidRelease/actions/CCActionGrid.d | 137 ------- .../AndroidRelease/actions/CCActionGrid3D.d | 125 ------- .../AndroidRelease/actions/CCActionInstant.d | 128 ------- .../AndroidRelease/actions/CCActionInterval.d | 128 ------- .../AndroidRelease/actions/CCActionManager.d | 107 ------ .../actions/CCActionPageTurn3D.d | 125 ------- .../actions/CCActionProgressTimer.d | 128 ------- .../actions/CCActionTiledGrid.d | 143 -------- .../AndroidRelease/base_nodes/CCAtlasNode.d | 104 ------ cocos2dx/AndroidRelease/base_nodes/CCNode.d | 136 ------- .../AndroidRelease/cocoa/CCAffineTransform.d | 23 -- .../AndroidRelease/cocoa/CCAutoreleasePool.d | 26 -- cocos2dx/AndroidRelease/cocoa/CCData.d | 79 ---- cocos2dx/AndroidRelease/cocoa/CCGeometry.d | 19 - cocos2dx/AndroidRelease/cocoa/CCNS.d | 21 -- cocos2dx/AndroidRelease/cocoa/CCObject.d | 28 -- cocos2dx/AndroidRelease/cocoa/CCSet.d | 22 -- cocos2dx/AndroidRelease/cocoa/CCZone.d | 22 -- cocos2dx/AndroidRelease/cocos2d.d | 340 ------------------ cocos2dx/AndroidRelease/effects/CCGrabber.d | 91 ----- cocos2dx/AndroidRelease/effects/CCGrid.d | 121 ------- .../keypad_dispatcher/CCKeypadDelegate.d | 74 ---- .../keypad_dispatcher/CCKeypadDispatcher.d | 84 ----- .../AndroidRelease/label_nodes/CCLabelAtlas.d | 113 ------ .../label_nodes/CCLabelBMFont.d | 140 -------- .../AndroidRelease/label_nodes/CCLabelTTF.d | 110 ------ .../layers_scenes_transitions_nodes/CCLayer.d | 144 -------- .../layers_scenes_transitions_nodes/CCScene.d | 102 ------ .../CCTransition.d | 192 ---------- .../CCTransition.o.REMOVED.git-id | 1 - .../CCTransitionPageTurn.d | 147 -------- .../CCTransitionRadial.d | 153 -------- .../libcocos2dx-base.so.REMOVED.git-id | 1 - cocos2dx/AndroidRelease/menu_nodes/CCMenu.d | 145 -------- .../AndroidRelease/menu_nodes/CCMenuItem.d | 149 -------- .../misc_nodes/CCMotionStreak.d | 107 ------ .../misc_nodes/CCProgressTimer.d | 119 ------ .../misc_nodes/CCRenderTexture.d | 143 -------- cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d | 112 ------ .../particle_nodes/CCParticleExamples.d | 128 ------- .../particle_nodes/CCParticleSystem.d | 137 ------- .../particle_nodes/CCParticleSystemQuad.d | 114 ------ cocos2dx/AndroidRelease/platform/CCCommon.d | 17 - .../AndroidRelease/platform/CCFileUtils.d | 164 --------- cocos2dx/AndroidRelease/platform/CCGL.d | 41 --- cocos2dx/AndroidRelease/platform/CCImage.d | 113 ------ .../AndroidRelease/platform/CCSAXParser.d | 149 -------- cocos2dx/AndroidRelease/platform/CCStdC.d | 15 - cocos2dx/AndroidRelease/platform/CCThread.d | 18 - .../android/CCAccelerometer_android.d | 27 -- .../platform/android/CCApplication_android.d | 81 ----- .../platform/android/CCEGLView_android.d | 121 ------- .../platform/android/jni/IMEJni.d | 34 -- .../platform/android/jni/JniHelper.d | 17 - .../platform/android/jni/MessageJni.d | 98 ----- .../platform/android/jni/SensorJni.d | 56 --- .../platform/android/jni/SystemInfoJni.d | 32 -- .../platform/android/jni/TouchesJni.d | 122 ------- cocos2dx/AndroidRelease/platform/platform.d | 22 -- .../script_support/CCScriptSupport.d | 101 ------ .../AndroidRelease/sprite_nodes/CCAnimation.d | 116 ------ .../sprite_nodes/CCAnimationCache.d | 110 ------ .../AndroidRelease/sprite_nodes/CCSprite.d | 143 -------- .../sprite_nodes/CCSpriteBatchNode.d | 137 ------- .../sprite_nodes/CCSpriteFrame.d | 101 ------ .../sprite_nodes/CCSpriteFrameCache.d | 140 -------- cocos2dx/AndroidRelease/support/CCArray.d | 79 ---- .../AndroidRelease/support/CCPointExtension.d | 74 ---- cocos2dx/AndroidRelease/support/CCProfiling.d | 10 - .../AndroidRelease/support/CCUserDefault.d | 146 -------- .../AndroidRelease/support/TransformUtils.d | 49 --- cocos2dx/AndroidRelease/support/base64.d | 4 - cocos2dx/AndroidRelease/support/ccUtils.d | 4 - .../support/image_support/TGAlib.d | 79 ---- .../support/zip_support/ZipUtils.d | 82 ----- .../support/zip_support/ioapi.d | 7 - .../support/zip_support/unzip.d | 10 - .../text_input_node/CCIMEDispatcher.d | 26 -- .../text_input_node/CCTextFieldTTF.d | 131 ------- .../AndroidRelease/textures/CCTexture2D.d | 110 ------ .../AndroidRelease/textures/CCTextureAtlas.d | 92 ----- .../AndroidRelease/textures/CCTextureCache.d | 110 ------ .../AndroidRelease/textures/CCTexturePVR.d | 104 ------ .../tileMap_parallax_nodes/CCParallaxNode.d | 99 ----- .../tileMap_parallax_nodes/CCTMXLayer.d | 143 -------- .../tileMap_parallax_nodes/CCTMXObjectGroup.d | 84 ----- .../tileMap_parallax_nodes/CCTMXTiledMap.d | 138 ------- .../tileMap_parallax_nodes/CCTMXXMLParser.d | 135 ------- .../tileMap_parallax_nodes/CCTileMapAtlas.d | 117 ------ .../touch_dispatcher/CCTouchDispatcher.d | 125 ------- .../touch_dispatcher/CCTouchHandler.d | 110 ------ 257 files changed, 18953 deletions(-) delete mode 100644 cocos2dx/AndroidDebug/CCCamera.d delete mode 100644 cocos2dx/AndroidDebug/CCConfiguration.d delete mode 100644 cocos2dx/AndroidDebug/CCDirector.d delete mode 100644 cocos2dx/AndroidDebug/CCDirector.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/CCDrawingPrimitives.d delete mode 100644 cocos2dx/AndroidDebug/CCScheduler.d delete mode 100644 cocos2dx/AndroidDebug/CCScheduler.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/actions/CCAction.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCAction.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionCamera.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionEase.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionEase.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionGrid.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionGrid.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionGrid3D.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionGrid3D.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionInstant.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionInstant.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionInterval.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionInterval.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionManager.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionManager.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionPageTurn3D.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionProgressTimer.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionTiledGrid.d delete mode 100644 cocos2dx/AndroidDebug/actions/CCActionTiledGrid.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.d delete mode 100644 cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/base_nodes/CCNode.d delete mode 100644 cocos2dx/AndroidDebug/base_nodes/CCNode.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCAffineTransform.d delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.d delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCData.d delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCGeometry.d delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCNS.d delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCNS.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCObject.d delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCSet.d delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCSet.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/cocoa/CCZone.d delete mode 100644 cocos2dx/AndroidDebug/cocos2d.d delete mode 100644 cocos2dx/AndroidDebug/effects/CCGrabber.d delete mode 100644 cocos2dx/AndroidDebug/effects/CCGrid.d delete mode 100644 cocos2dx/AndroidDebug/effects/CCGrid.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDelegate.d delete mode 100644 cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.d delete mode 100644 cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.d delete mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.d delete mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.d delete mode 100644 cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.d delete mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCScene.d delete mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.d delete mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionPageTurn.d delete mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.d delete mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/menu_nodes/CCMenu.d delete mode 100644 cocos2dx/AndroidDebug/menu_nodes/CCMenu.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d delete mode 100644 cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.d delete mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.d delete mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.d delete mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d delete mode 100644 cocos2dx/AndroidDebug/misc_nodes/CCRibbon.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.d delete mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.d delete mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.d delete mode 100644 cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/CCCommon.d delete mode 100644 cocos2dx/AndroidDebug/platform/CCFileUtils.d delete mode 100644 cocos2dx/AndroidDebug/platform/CCFileUtils.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/CCGL.d delete mode 100644 cocos2dx/AndroidDebug/platform/CCImage.d delete mode 100644 cocos2dx/AndroidDebug/platform/CCImage.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/CCSAXParser.d delete mode 100644 cocos2dx/AndroidDebug/platform/CCStdC.d delete mode 100644 cocos2dx/AndroidDebug/platform/CCThread.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/android/CCApplication_android.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/CCApplication_android.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/android/CCEGLView_android.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/IMEJni.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/IMEJni.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/JniHelper.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/JniHelper.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/MessageJni.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/MessageJni.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/SensorJni.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/SensorJni.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.d delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/platform/platform.d delete mode 100644 cocos2dx/AndroidDebug/script_support/CCScriptSupport.d delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.d delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.d delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSprite.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.d delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrame.d delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.d delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/support/CCArray.d delete mode 100644 cocos2dx/AndroidDebug/support/CCPointExtension.d delete mode 100644 cocos2dx/AndroidDebug/support/CCProfiling.d delete mode 100644 cocos2dx/AndroidDebug/support/CCUserDefault.d delete mode 100644 cocos2dx/AndroidDebug/support/CCUserDefault.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/support/TransformUtils.d delete mode 100644 cocos2dx/AndroidDebug/support/base64.d delete mode 100644 cocos2dx/AndroidDebug/support/ccUtils.d delete mode 100644 cocos2dx/AndroidDebug/support/image_support/TGAlib.d delete mode 100644 cocos2dx/AndroidDebug/support/zip_support/ZipUtils.d delete mode 100644 cocos2dx/AndroidDebug/support/zip_support/ioapi.d delete mode 100644 cocos2dx/AndroidDebug/support/zip_support/unzip.d delete mode 100644 cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.d delete mode 100644 cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.d delete mode 100644 cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/textures/CCTexture2D.d delete mode 100644 cocos2dx/AndroidDebug/textures/CCTexture2D.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/textures/CCTextureAtlas.d delete mode 100644 cocos2dx/AndroidDebug/textures/CCTextureCache.d delete mode 100644 cocos2dx/AndroidDebug/textures/CCTextureCache.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/textures/CCTexturePVR.d delete mode 100644 cocos2dx/AndroidDebug/textures/CCTexturePVR.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.d delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.d delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.d delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.d delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.d delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.d delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.d delete mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.d delete mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidRelease/CCCamera.d delete mode 100644 cocos2dx/AndroidRelease/CCConfiguration.d delete mode 100644 cocos2dx/AndroidRelease/CCDirector.d delete mode 100644 cocos2dx/AndroidRelease/CCDrawingPrimitives.d delete mode 100644 cocos2dx/AndroidRelease/CCScheduler.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCAction.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionCamera.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionEase.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionGrid.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionGrid3D.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionInstant.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionInterval.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionManager.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionPageTurn3D.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionProgressTimer.d delete mode 100644 cocos2dx/AndroidRelease/actions/CCActionTiledGrid.d delete mode 100644 cocos2dx/AndroidRelease/base_nodes/CCAtlasNode.d delete mode 100644 cocos2dx/AndroidRelease/base_nodes/CCNode.d delete mode 100644 cocos2dx/AndroidRelease/cocoa/CCAffineTransform.d delete mode 100644 cocos2dx/AndroidRelease/cocoa/CCAutoreleasePool.d delete mode 100644 cocos2dx/AndroidRelease/cocoa/CCData.d delete mode 100644 cocos2dx/AndroidRelease/cocoa/CCGeometry.d delete mode 100644 cocos2dx/AndroidRelease/cocoa/CCNS.d delete mode 100644 cocos2dx/AndroidRelease/cocoa/CCObject.d delete mode 100644 cocos2dx/AndroidRelease/cocoa/CCSet.d delete mode 100644 cocos2dx/AndroidRelease/cocoa/CCZone.d delete mode 100644 cocos2dx/AndroidRelease/cocos2d.d delete mode 100644 cocos2dx/AndroidRelease/effects/CCGrabber.d delete mode 100644 cocos2dx/AndroidRelease/effects/CCGrid.d delete mode 100644 cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDelegate.d delete mode 100644 cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDispatcher.d delete mode 100644 cocos2dx/AndroidRelease/label_nodes/CCLabelAtlas.d delete mode 100644 cocos2dx/AndroidRelease/label_nodes/CCLabelBMFont.d delete mode 100644 cocos2dx/AndroidRelease/label_nodes/CCLabelTTF.d delete mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCLayer.d delete mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCScene.d delete mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.d delete mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id delete mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionPageTurn.d delete mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionRadial.d delete mode 100644 cocos2dx/AndroidRelease/libcocos2dx-base.so.REMOVED.git-id delete mode 100644 cocos2dx/AndroidRelease/menu_nodes/CCMenu.d delete mode 100644 cocos2dx/AndroidRelease/menu_nodes/CCMenuItem.d delete mode 100644 cocos2dx/AndroidRelease/misc_nodes/CCMotionStreak.d delete mode 100644 cocos2dx/AndroidRelease/misc_nodes/CCProgressTimer.d delete mode 100644 cocos2dx/AndroidRelease/misc_nodes/CCRenderTexture.d delete mode 100644 cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d delete mode 100644 cocos2dx/AndroidRelease/particle_nodes/CCParticleExamples.d delete mode 100644 cocos2dx/AndroidRelease/particle_nodes/CCParticleSystem.d delete mode 100644 cocos2dx/AndroidRelease/particle_nodes/CCParticleSystemQuad.d delete mode 100644 cocos2dx/AndroidRelease/platform/CCCommon.d delete mode 100644 cocos2dx/AndroidRelease/platform/CCFileUtils.d delete mode 100644 cocos2dx/AndroidRelease/platform/CCGL.d delete mode 100644 cocos2dx/AndroidRelease/platform/CCImage.d delete mode 100644 cocos2dx/AndroidRelease/platform/CCSAXParser.d delete mode 100644 cocos2dx/AndroidRelease/platform/CCStdC.d delete mode 100644 cocos2dx/AndroidRelease/platform/CCThread.d delete mode 100644 cocos2dx/AndroidRelease/platform/android/CCAccelerometer_android.d delete mode 100644 cocos2dx/AndroidRelease/platform/android/CCApplication_android.d delete mode 100644 cocos2dx/AndroidRelease/platform/android/CCEGLView_android.d delete mode 100644 cocos2dx/AndroidRelease/platform/android/jni/IMEJni.d delete mode 100644 cocos2dx/AndroidRelease/platform/android/jni/JniHelper.d delete mode 100644 cocos2dx/AndroidRelease/platform/android/jni/MessageJni.d delete mode 100644 cocos2dx/AndroidRelease/platform/android/jni/SensorJni.d delete mode 100644 cocos2dx/AndroidRelease/platform/android/jni/SystemInfoJni.d delete mode 100644 cocos2dx/AndroidRelease/platform/android/jni/TouchesJni.d delete mode 100644 cocos2dx/AndroidRelease/platform/platform.d delete mode 100644 cocos2dx/AndroidRelease/script_support/CCScriptSupport.d delete mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCAnimation.d delete mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCAnimationCache.d delete mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCSprite.d delete mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCSpriteBatchNode.d delete mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrame.d delete mode 100644 cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrameCache.d delete mode 100644 cocos2dx/AndroidRelease/support/CCArray.d delete mode 100644 cocos2dx/AndroidRelease/support/CCPointExtension.d delete mode 100644 cocos2dx/AndroidRelease/support/CCProfiling.d delete mode 100644 cocos2dx/AndroidRelease/support/CCUserDefault.d delete mode 100644 cocos2dx/AndroidRelease/support/TransformUtils.d delete mode 100644 cocos2dx/AndroidRelease/support/base64.d delete mode 100644 cocos2dx/AndroidRelease/support/ccUtils.d delete mode 100644 cocos2dx/AndroidRelease/support/image_support/TGAlib.d delete mode 100644 cocos2dx/AndroidRelease/support/zip_support/ZipUtils.d delete mode 100644 cocos2dx/AndroidRelease/support/zip_support/ioapi.d delete mode 100644 cocos2dx/AndroidRelease/support/zip_support/unzip.d delete mode 100644 cocos2dx/AndroidRelease/text_input_node/CCIMEDispatcher.d delete mode 100644 cocos2dx/AndroidRelease/text_input_node/CCTextFieldTTF.d delete mode 100644 cocos2dx/AndroidRelease/textures/CCTexture2D.d delete mode 100644 cocos2dx/AndroidRelease/textures/CCTextureAtlas.d delete mode 100644 cocos2dx/AndroidRelease/textures/CCTextureCache.d delete mode 100644 cocos2dx/AndroidRelease/textures/CCTexturePVR.d delete mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCParallaxNode.d delete mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXLayer.d delete mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXObjectGroup.d delete mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXTiledMap.d delete mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXXMLParser.d delete mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTileMapAtlas.d delete mode 100644 cocos2dx/AndroidRelease/touch_dispatcher/CCTouchDispatcher.d delete mode 100644 cocos2dx/AndroidRelease/touch_dispatcher/CCTouchHandler.d diff --git a/cocos2dx/AndroidDebug/CCCamera.d b/cocos2dx/AndroidDebug/CCCamera.d deleted file mode 100644 index ff5b6fc447..0000000000 --- a/cocos2dx/AndroidDebug/CCCamera.d +++ /dev/null @@ -1,79 +0,0 @@ -CCCamera.d CCCamera.o: ../CCCamera.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: diff --git a/cocos2dx/AndroidDebug/CCConfiguration.d b/cocos2dx/AndroidDebug/CCConfiguration.d deleted file mode 100644 index bc4e1c50d4..0000000000 --- a/cocos2dx/AndroidDebug/CCConfiguration.d +++ /dev/null @@ -1,79 +0,0 @@ -CCConfiguration.d CCConfiguration.o: ../CCConfiguration.cpp \ - ../CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -../CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/CCDirector.d b/cocos2dx/AndroidDebug/CCDirector.d deleted file mode 100644 index 30716846ef..0000000000 --- a/cocos2dx/AndroidDebug/CCDirector.d +++ /dev/null @@ -1,220 +0,0 @@ -CCDirector.d CCDirector.o: ../CCDirector.cpp ../cocoa/CCNS.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ - ../platform/platform.h ../platform/CCThread.h ../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - ../CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h - -../cocoa/CCNS.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: - -../platform/platform.h: - -../platform/CCThread.h: - -../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -../CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/CCDirector.o.REMOVED.git-id b/cocos2dx/AndroidDebug/CCDirector.o.REMOVED.git-id deleted file mode 100644 index d3afc9032e..0000000000 --- a/cocos2dx/AndroidDebug/CCDirector.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -bb6a94cc35ce64e99fb42c09c3b7b22cfb2be461 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/CCDrawingPrimitives.d b/cocos2dx/AndroidDebug/CCDrawingPrimitives.d deleted file mode 100644 index d3c36ebe22..0000000000 --- a/cocos2dx/AndroidDebug/CCDrawingPrimitives.d +++ /dev/null @@ -1,79 +0,0 @@ -CCDrawingPrimitives.d CCDrawingPrimitives.o: ../CCDrawingPrimitives.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: diff --git a/cocos2dx/AndroidDebug/CCScheduler.d b/cocos2dx/AndroidDebug/CCScheduler.d deleted file mode 100644 index c408541982..0000000000 --- a/cocos2dx/AndroidDebug/CCScheduler.d +++ /dev/null @@ -1,114 +0,0 @@ -CCScheduler.d CCScheduler.o: ../CCScheduler.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - ../support/data_support/utlist.h ../support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -../support/data_support/utlist.h: - -../support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: diff --git a/cocos2dx/AndroidDebug/CCScheduler.o.REMOVED.git-id b/cocos2dx/AndroidDebug/CCScheduler.o.REMOVED.git-id deleted file mode 100644 index f0e313db36..0000000000 --- a/cocos2dx/AndroidDebug/CCScheduler.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -5812286066d8c7ffdc8c123080e0df87dc49388f \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCAction.d b/cocos2dx/AndroidDebug/actions/CCAction.d deleted file mode 100644 index a2c30c3080..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCAction.d +++ /dev/null @@ -1,127 +0,0 @@ -actions/CCAction.d actions/CCAction.o: ../actions/CCAction.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: diff --git a/cocos2dx/AndroidDebug/actions/CCAction.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCAction.o.REMOVED.git-id deleted file mode 100644 index 8be7387fe4..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCAction.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -e0d8a42e36570f267031168be84c0c6cd2d0385f \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionCamera.d b/cocos2dx/AndroidDebug/actions/CCActionCamera.d deleted file mode 100644 index 826e427c72..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionCamera.d +++ /dev/null @@ -1,122 +0,0 @@ -actions/CCActionCamera.d actions/CCActionCamera.o: \ - ../actions/CCActionCamera.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionEase.d b/cocos2dx/AndroidDebug/actions/CCActionEase.d deleted file mode 100644 index 55c0dd140b..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionEase.d +++ /dev/null @@ -1,116 +0,0 @@ -actions/CCActionEase.d actions/CCActionEase.o: \ - ../actions/CCActionEase.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionEase.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionEase.o.REMOVED.git-id deleted file mode 100644 index fafa61cc31..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionEase.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -68d17569d035e613649f3d7cfa7019d4a39dc679 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionGrid.d b/cocos2dx/AndroidDebug/actions/CCActionGrid.d deleted file mode 100644 index 7198b94556..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionGrid.d +++ /dev/null @@ -1,137 +0,0 @@ -actions/CCActionGrid.d actions/CCActionGrid.o: \ - ../actions/CCActionGrid.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionGrid.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionGrid.o.REMOVED.git-id deleted file mode 100644 index 7b89dba19e..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionGrid.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -f1fbe3996c7dc8e4543632923093b119737f5c75 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionGrid3D.d b/cocos2dx/AndroidDebug/actions/CCActionGrid3D.d deleted file mode 100644 index f484b34884..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionGrid3D.d +++ /dev/null @@ -1,125 +0,0 @@ -actions/CCActionGrid3D.d actions/CCActionGrid3D.o: \ - ../actions/CCActionGrid3D.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionGrid3D.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionGrid3D.o.REMOVED.git-id deleted file mode 100644 index 5c0eb33aed..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionGrid3D.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -e346875d894a901a4ff957ea894054bed70148f7 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionInstant.d b/cocos2dx/AndroidDebug/actions/CCActionInstant.d deleted file mode 100644 index e460d29577..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionInstant.d +++ /dev/null @@ -1,128 +0,0 @@ -actions/CCActionInstant.d actions/CCActionInstant.o: \ - ../actions/CCActionInstant.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionInstant.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionInstant.o.REMOVED.git-id deleted file mode 100644 index 1ee6f74fe1..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionInstant.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -bd8cdc5e8c0dda76dcf090c22a5a36606844e46d \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionInterval.d b/cocos2dx/AndroidDebug/actions/CCActionInterval.d deleted file mode 100644 index ff02e3e4e8..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionInterval.d +++ /dev/null @@ -1,128 +0,0 @@ -actions/CCActionInterval.d actions/CCActionInterval.o: \ - ../actions/CCActionInterval.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionInterval.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionInterval.o.REMOVED.git-id deleted file mode 100644 index 3c9568228e..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionInterval.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -29a2932d0a8c8d30839e131478af34a33e009f66 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionManager.d b/cocos2dx/AndroidDebug/actions/CCActionManager.d deleted file mode 100644 index 727d35c154..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionManager.d +++ /dev/null @@ -1,107 +0,0 @@ -actions/CCActionManager.d actions/CCActionManager.o: \ - ../actions/CCActionManager.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionManager.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionManager.o.REMOVED.git-id deleted file mode 100644 index 8fcbde33ab..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionManager.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -32e50253e597e01a334b537f80c5cc3d9ba71927 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/actions/CCActionPageTurn3D.d b/cocos2dx/AndroidDebug/actions/CCActionPageTurn3D.d deleted file mode 100644 index 2acf42c8ce..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionPageTurn3D.d +++ /dev/null @@ -1,125 +0,0 @@ -actions/CCActionPageTurn3D.d actions/CCActionPageTurn3D.o: \ - ../actions/CCActionPageTurn3D.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionProgressTimer.d b/cocos2dx/AndroidDebug/actions/CCActionProgressTimer.d deleted file mode 100644 index 02a28b289f..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionProgressTimer.d +++ /dev/null @@ -1,128 +0,0 @@ -actions/CCActionProgressTimer.d actions/CCActionProgressTimer.o: \ - ../actions/CCActionProgressTimer.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.d b/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.d deleted file mode 100644 index 03a250776b..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.d +++ /dev/null @@ -1,143 +0,0 @@ -actions/CCActionTiledGrid.d actions/CCActionTiledGrid.o: \ - ../actions/CCActionTiledGrid.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.o.REMOVED.git-id b/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.o.REMOVED.git-id deleted file mode 100644 index c99c279cba..0000000000 --- a/cocos2dx/AndroidDebug/actions/CCActionTiledGrid.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -879c018c48fc35f668fdb6774b8b6f75cbc79dcc \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.d b/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.d deleted file mode 100644 index 27d2469fb3..0000000000 --- a/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.d +++ /dev/null @@ -1,104 +0,0 @@ -base_nodes/CCAtlasNode.d base_nodes/CCAtlasNode.o: \ - ../base_nodes/CCAtlasNode.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: diff --git a/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.o.REMOVED.git-id b/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.o.REMOVED.git-id deleted file mode 100644 index d73dc0edc4..0000000000 --- a/cocos2dx/AndroidDebug/base_nodes/CCAtlasNode.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -7fbf638254a18e2303235e08bac72686f42daa71 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/base_nodes/CCNode.d b/cocos2dx/AndroidDebug/base_nodes/CCNode.d deleted file mode 100644 index d9b848443c..0000000000 --- a/cocos2dx/AndroidDebug/base_nodes/CCNode.d +++ /dev/null @@ -1,136 +0,0 @@ -base_nodes/CCNode.d base_nodes/CCNode.o: ../base_nodes/CCNode.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: diff --git a/cocos2dx/AndroidDebug/base_nodes/CCNode.o.REMOVED.git-id b/cocos2dx/AndroidDebug/base_nodes/CCNode.o.REMOVED.git-id deleted file mode 100644 index 2578722613..0000000000 --- a/cocos2dx/AndroidDebug/base_nodes/CCNode.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -a916cd9e1c6da5213d3e076efeccc634f644fc61 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/cocoa/CCAffineTransform.d b/cocos2dx/AndroidDebug/cocoa/CCAffineTransform.d deleted file mode 100644 index eb2ba85edc..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCAffineTransform.d +++ /dev/null @@ -1,23 +0,0 @@ -cocoa/CCAffineTransform.d cocoa/CCAffineTransform.o: \ - ../cocoa/CCAffineTransform.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.d b/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.d deleted file mode 100644 index 50ba0052f1..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.d +++ /dev/null @@ -1,26 +0,0 @@ -cocoa/CCAutoreleasePool.d cocoa/CCAutoreleasePool.o: \ - ../cocoa/CCAutoreleasePool.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.o.REMOVED.git-id b/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.o.REMOVED.git-id deleted file mode 100644 index 915cd08f1d..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCAutoreleasePool.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -f173f256029331e6047a6391068b701db11285fb \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/cocoa/CCData.d b/cocos2dx/AndroidDebug/cocoa/CCData.d deleted file mode 100644 index ecb1280321..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCData.d +++ /dev/null @@ -1,79 +0,0 @@ -cocoa/CCData.d cocoa/CCData.o: ../cocoa/CCData.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCGeometry.d b/cocos2dx/AndroidDebug/cocoa/CCGeometry.d deleted file mode 100644 index 966f72f25d..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCGeometry.d +++ /dev/null @@ -1,19 +0,0 @@ -cocoa/CCGeometry.d cocoa/CCGeometry.o: ../cocoa/CCGeometry.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCNS.d b/cocos2dx/AndroidDebug/cocoa/CCNS.d deleted file mode 100644 index 2ebb219988..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCNS.d +++ /dev/null @@ -1,21 +0,0 @@ -cocoa/CCNS.d cocoa/CCNS.o: ../cocoa/CCNS.cpp ../cocoa/CCNS.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../cocoa/CCNS.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCNS.o.REMOVED.git-id b/cocos2dx/AndroidDebug/cocoa/CCNS.o.REMOVED.git-id deleted file mode 100644 index 2c4e62bb5e..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCNS.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -2c71497db3d962ca6229d71ba220bf32f7224817 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/cocoa/CCObject.d b/cocos2dx/AndroidDebug/cocoa/CCObject.d deleted file mode 100644 index 2609e7259f..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCObject.d +++ /dev/null @@ -1,28 +0,0 @@ -cocoa/CCObject.d cocoa/CCObject.o: ../cocoa/CCObject.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCSet.d b/cocos2dx/AndroidDebug/cocoa/CCSet.d deleted file mode 100644 index 7aa0a8a99c..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCSet.d +++ /dev/null @@ -1,22 +0,0 @@ -cocoa/CCSet.d cocoa/CCSet.o: ../cocoa/CCSet.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocoa/CCSet.o.REMOVED.git-id b/cocos2dx/AndroidDebug/cocoa/CCSet.o.REMOVED.git-id deleted file mode 100644 index c2b2ce31f7..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCSet.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -0b9d99b9dc0e3d4c55afd12a6df8166cf6025146 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/cocoa/CCZone.d b/cocos2dx/AndroidDebug/cocoa/CCZone.d deleted file mode 100644 index 172ee0927d..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/CCZone.d +++ /dev/null @@ -1,22 +0,0 @@ -cocoa/CCZone.d cocoa/CCZone.o: ../cocoa/CCZone.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/cocos2d.d b/cocos2dx/AndroidDebug/cocos2d.d deleted file mode 100644 index 864791e44d..0000000000 --- a/cocos2dx/AndroidDebug/cocos2d.d +++ /dev/null @@ -1,340 +0,0 @@ -cocos2d.d cocos2d.o: ../cocos2d.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/cocos2dx/AndroidDebug/effects/CCGrabber.d b/cocos2dx/AndroidDebug/effects/CCGrabber.d deleted file mode 100644 index e76ea937b2..0000000000 --- a/cocos2dx/AndroidDebug/effects/CCGrabber.d +++ /dev/null @@ -1,91 +0,0 @@ -effects/CCGrabber.d effects/CCGrabber.o: ../effects/CCGrabber.cpp \ - ../effects/CCGrabber.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h - -../effects/CCGrabber.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: diff --git a/cocos2dx/AndroidDebug/effects/CCGrid.d b/cocos2dx/AndroidDebug/effects/CCGrid.d deleted file mode 100644 index 0a7f9bddad..0000000000 --- a/cocos2dx/AndroidDebug/effects/CCGrid.d +++ /dev/null @@ -1,121 +0,0 @@ -effects/CCGrid.d effects/CCGrid.o: ../effects/CCGrid.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrabber.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrabber.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/effects/CCGrid.o.REMOVED.git-id b/cocos2dx/AndroidDebug/effects/CCGrid.o.REMOVED.git-id deleted file mode 100644 index 48a0582e9c..0000000000 --- a/cocos2dx/AndroidDebug/effects/CCGrid.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -05d1d5c8176f860645ce0a059df54c1c4b659db6 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDelegate.d b/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDelegate.d deleted file mode 100644 index ba93ae9b5f..0000000000 --- a/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDelegate.d +++ /dev/null @@ -1,74 +0,0 @@ -keypad_dispatcher/CCKeypadDelegate.d keypad_dispatcher/CCKeypadDelegate.o: \ - ../keypad_dispatcher/CCKeypadDelegate.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.d b/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.d deleted file mode 100644 index 1985a085e7..0000000000 --- a/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.d +++ /dev/null @@ -1,84 +0,0 @@ -keypad_dispatcher/CCKeypadDispatcher.d \ - keypad_dispatcher/CCKeypadDispatcher.o: \ - ../keypad_dispatcher/CCKeypadDispatcher.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.o.REMOVED.git-id b/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.o.REMOVED.git-id deleted file mode 100644 index 87522d7608..0000000000 --- a/cocos2dx/AndroidDebug/keypad_dispatcher/CCKeypadDispatcher.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -510dc2d2a7af0fbcd3dab0d55d0478f87fa7b223 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.d b/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.d deleted file mode 100644 index 7aa0b16888..0000000000 --- a/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.d +++ /dev/null @@ -1,113 +0,0 @@ -label_nodes/CCLabelAtlas.d label_nodes/CCLabelAtlas.o: \ - ../label_nodes/CCLabelAtlas.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.o.REMOVED.git-id b/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.o.REMOVED.git-id deleted file mode 100644 index ed26065240..0000000000 --- a/cocos2dx/AndroidDebug/label_nodes/CCLabelAtlas.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -f610915b947b52bebc0d5dbd6aa97e91147f7659 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.d b/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.d deleted file mode 100644 index 8a226e0518..0000000000 --- a/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.d +++ /dev/null @@ -1,140 +0,0 @@ -label_nodes/CCLabelBMFont.d label_nodes/CCLabelBMFont.o: \ - ../label_nodes/CCLabelBMFont.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.o.REMOVED.git-id b/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.o.REMOVED.git-id deleted file mode 100644 index f1ee7e1c01..0000000000 --- a/cocos2dx/AndroidDebug/label_nodes/CCLabelBMFont.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -bfe6b5c95948dbf3a43c9f323b7167be8ffd2121 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.d b/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.d deleted file mode 100644 index 2f52241807..0000000000 --- a/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.d +++ /dev/null @@ -1,110 +0,0 @@ -label_nodes/CCLabelTTF.d label_nodes/CCLabelTTF.o: \ - ../label_nodes/CCLabelTTF.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.o.REMOVED.git-id b/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.o.REMOVED.git-id deleted file mode 100644 index 7b4885fa28..0000000000 --- a/cocos2dx/AndroidDebug/label_nodes/CCLabelTTF.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -179896f517b81f41e598d26e81037c74fba93fb9 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.d deleted file mode 100644 index be079c7c80..0000000000 --- a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.d +++ /dev/null @@ -1,144 +0,0 @@ -layers_scenes_transitions_nodes/CCLayer.d \ - layers_scenes_transitions_nodes/CCLayer.o: \ - ../layers_scenes_transitions_nodes/CCLayer.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.o.REMOVED.git-id b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.o.REMOVED.git-id deleted file mode 100644 index 0d80eb97ea..0000000000 --- a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCLayer.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -561034a1b02542f47b440974f81ad869adefed11 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCScene.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCScene.d deleted file mode 100644 index a46f1d3abd..0000000000 --- a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCScene.d +++ /dev/null @@ -1,102 +0,0 @@ -layers_scenes_transitions_nodes/CCScene.d \ - layers_scenes_transitions_nodes/CCScene.o: \ - ../layers_scenes_transitions_nodes/CCScene.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.d deleted file mode 100644 index e898c55a68..0000000000 --- a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.d +++ /dev/null @@ -1,192 +0,0 @@ -layers_scenes_transitions_nodes/CCTransition.d \ - layers_scenes_transitions_nodes/CCTransition.o: \ - ../layers_scenes_transitions_nodes/CCTransition.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id deleted file mode 100644 index 64aa4773c0..0000000000 --- a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -5c1a8b6796a6cc1507ba0e2b1ee66ea588362742 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionPageTurn.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionPageTurn.d deleted file mode 100644 index 091e1d1032..0000000000 --- a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionPageTurn.d +++ /dev/null @@ -1,147 +0,0 @@ -layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ - layers_scenes_transitions_nodes/CCTransitionPageTurn.o: \ - ../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.d b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.d deleted file mode 100644 index dfc6351390..0000000000 --- a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.d +++ /dev/null @@ -1,153 +0,0 @@ -layers_scenes_transitions_nodes/CCTransitionRadial.d \ - layers_scenes_transitions_nodes/CCTransitionRadial.o: \ - ../layers_scenes_transitions_nodes/CCTransitionRadial.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.o.REMOVED.git-id b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.o.REMOVED.git-id deleted file mode 100644 index 7daeee1627..0000000000 --- a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/CCTransitionRadial.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -bde53a9a32c241116e8b134ba6bc3c9199cd509e \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/menu_nodes/CCMenu.d b/cocos2dx/AndroidDebug/menu_nodes/CCMenu.d deleted file mode 100644 index 90f7bbcf6f..0000000000 --- a/cocos2dx/AndroidDebug/menu_nodes/CCMenu.d +++ /dev/null @@ -1,145 +0,0 @@ -menu_nodes/CCMenu.d menu_nodes/CCMenu.o: ../menu_nodes/CCMenu.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: diff --git a/cocos2dx/AndroidDebug/menu_nodes/CCMenu.o.REMOVED.git-id b/cocos2dx/AndroidDebug/menu_nodes/CCMenu.o.REMOVED.git-id deleted file mode 100644 index 58469b072c..0000000000 --- a/cocos2dx/AndroidDebug/menu_nodes/CCMenu.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -35c67d24331ce284ce29bedf1838c51ecebef42e \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d b/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d deleted file mode 100644 index 8e9cc6edda..0000000000 --- a/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.d +++ /dev/null @@ -1,149 +0,0 @@ -menu_nodes/CCMenuItem.d menu_nodes/CCMenuItem.o: \ - ../menu_nodes/CCMenuItem.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: diff --git a/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.o.REMOVED.git-id b/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.o.REMOVED.git-id deleted file mode 100644 index faf606a760..0000000000 --- a/cocos2dx/AndroidDebug/menu_nodes/CCMenuItem.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -617717e7a11c41ae919d068359360579ef1fd1e3 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.d b/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.d deleted file mode 100644 index 0602c1560d..0000000000 --- a/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.d +++ /dev/null @@ -1,107 +0,0 @@ -misc_nodes/CCMotionStreak.d misc_nodes/CCMotionStreak.o: \ - ../misc_nodes/CCMotionStreak.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h: diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.o.REMOVED.git-id b/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.o.REMOVED.git-id deleted file mode 100644 index c1f86c9857..0000000000 --- a/cocos2dx/AndroidDebug/misc_nodes/CCMotionStreak.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -064e6485141831dff9590be5cc5907de3f5fb3a3 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.d b/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.d deleted file mode 100644 index 1e541547cc..0000000000 --- a/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.d +++ /dev/null @@ -1,119 +0,0 @@ -misc_nodes/CCProgressTimer.d misc_nodes/CCProgressTimer.o: \ - ../misc_nodes/CCProgressTimer.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.o.REMOVED.git-id b/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.o.REMOVED.git-id deleted file mode 100644 index 1431d06f21..0000000000 --- a/cocos2dx/AndroidDebug/misc_nodes/CCProgressTimer.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -8196656cd306615c83150109ba0e752c48879cb7 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.d b/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.d deleted file mode 100644 index 39b69ff436..0000000000 --- a/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.d +++ /dev/null @@ -1,143 +0,0 @@ -misc_nodes/CCRenderTexture.d misc_nodes/CCRenderTexture.o: \ - ../misc_nodes/CCRenderTexture.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.o.REMOVED.git-id b/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.o.REMOVED.git-id deleted file mode 100644 index 19692600fb..0000000000 --- a/cocos2dx/AndroidDebug/misc_nodes/CCRenderTexture.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -59421b2dea422c8ba1fd1d714155ee265ffbf0a6 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d b/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d deleted file mode 100644 index 5b303e77d8..0000000000 --- a/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.d +++ /dev/null @@ -1,112 +0,0 @@ -misc_nodes/CCRibbon.d misc_nodes/CCRibbon.o: ../misc_nodes/CCRibbon.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.o.REMOVED.git-id b/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.o.REMOVED.git-id deleted file mode 100644 index 408fd9b28e..0000000000 --- a/cocos2dx/AndroidDebug/misc_nodes/CCRibbon.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -98d0105a2f3d24722469d47f4f99c4ccde13851e \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.d b/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.d deleted file mode 100644 index 93030ec692..0000000000 --- a/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.d +++ /dev/null @@ -1,128 +0,0 @@ -particle_nodes/CCParticleExamples.d particle_nodes/CCParticleExamples.o: \ - ../particle_nodes/CCParticleExamples.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.o.REMOVED.git-id b/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.o.REMOVED.git-id deleted file mode 100644 index 1b72d73cd1..0000000000 --- a/cocos2dx/AndroidDebug/particle_nodes/CCParticleExamples.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -3ba4bc318dda8de92c3f489074ef37f3aba84ca9 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.d b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.d deleted file mode 100644 index 88561d2578..0000000000 --- a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.d +++ /dev/null @@ -1,137 +0,0 @@ -particle_nodes/CCParticleSystem.d particle_nodes/CCParticleSystem.o: \ - ../particle_nodes/CCParticleSystem.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.o.REMOVED.git-id b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.o.REMOVED.git-id deleted file mode 100644 index 5e395e66f5..0000000000 --- a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystem.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -d113396b339cd2bee7f8c22ca116750218c8572a \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.d b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.d deleted file mode 100644 index ea503b316f..0000000000 --- a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.d +++ /dev/null @@ -1,114 +0,0 @@ -particle_nodes/CCParticleSystemQuad.d \ - particle_nodes/CCParticleSystemQuad.o: \ - ../particle_nodes/CCParticleSystemQuad.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: diff --git a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.o.REMOVED.git-id b/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.o.REMOVED.git-id deleted file mode 100644 index b765c69b91..0000000000 --- a/cocos2dx/AndroidDebug/particle_nodes/CCParticleSystemQuad.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -93cd6340c0a8defd70d7bd9efdf91a9df7ff644b \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/CCCommon.d b/cocos2dx/AndroidDebug/platform/CCCommon.d deleted file mode 100644 index 5a35d2e759..0000000000 --- a/cocos2dx/AndroidDebug/platform/CCCommon.d +++ /dev/null @@ -1,17 +0,0 @@ -platform/CCCommon.d platform/CCCommon.o: ../platform/CCCommon.cpp \ - ../platform/CCCommon.h ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h ../platform/android/jni/MessageJni.h - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: - -../platform/android/jni/MessageJni.h: diff --git a/cocos2dx/AndroidDebug/platform/CCFileUtils.d b/cocos2dx/AndroidDebug/platform/CCFileUtils.d deleted file mode 100644 index bb0d34ec90..0000000000 --- a/cocos2dx/AndroidDebug/platform/CCFileUtils.d +++ /dev/null @@ -1,164 +0,0 @@ -platform/CCFileUtils.d platform/CCFileUtils.o: \ - ../platform/CCFileUtils.cpp ../platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h \ - ../platform/CCLibxml2.h ../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - ../platform/CCSAXParser.h ../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/unzip.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ioapi.h \ - ../platform/android/CCFileUtils_android.cpp \ - ../platform/android/jni/SystemInfoJni.h - -../platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: - -../platform/CCLibxml2.h: - -../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -../platform/CCSAXParser.h: - -../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/unzip.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ioapi.h: - -../platform/android/CCFileUtils_android.cpp: - -../platform/android/jni/SystemInfoJni.h: diff --git a/cocos2dx/AndroidDebug/platform/CCFileUtils.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/CCFileUtils.o.REMOVED.git-id deleted file mode 100644 index 3ac28ac270..0000000000 --- a/cocos2dx/AndroidDebug/platform/CCFileUtils.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -dbc4d29c2a201c89a450d449dc8d4e0418f8ded3 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/CCGL.d b/cocos2dx/AndroidDebug/platform/CCGL.d deleted file mode 100644 index 1a491eaac6..0000000000 --- a/cocos2dx/AndroidDebug/platform/CCGL.d +++ /dev/null @@ -1,41 +0,0 @@ -platform/CCGL.d platform/CCGL.o: ../platform/CCGL.cpp ../platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCCommon.h ../platform/CCStdC.h \ - ../platform/CCPlatformMacros.h - -../platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCCommon.h: - -../platform/CCStdC.h: - -../platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/platform/CCImage.d b/cocos2dx/AndroidDebug/platform/CCImage.d deleted file mode 100644 index 948811a40e..0000000000 --- a/cocos2dx/AndroidDebug/platform/CCImage.d +++ /dev/null @@ -1,113 +0,0 @@ -platform/CCImage.d platform/CCImage.o: ../platform/CCImage.cpp \ - ../platform/CCImage.h ../platform/CCCommon.h \ - ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h ../platform/CCStdC.h \ - ../platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/png.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/pngconf.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jpeglib.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig_linux.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jmorecfg.h \ - ../platform/android/CCImage_android.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - ../platform/android/jni/JniHelper.h - -../platform/CCImage.h: - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: - -../platform/CCStdC.h: - -../platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/png.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/pngconf.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jpeglib.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig_linux.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jmorecfg.h: - -../platform/android/CCImage_android.cpp: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -../platform/android/jni/JniHelper.h: diff --git a/cocos2dx/AndroidDebug/platform/CCImage.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/CCImage.o.REMOVED.git-id deleted file mode 100644 index 92c2c097e5..0000000000 --- a/cocos2dx/AndroidDebug/platform/CCImage.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -ff42fb7a50ae5a77a1c4c6c829ce51456fb9c6a2 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/CCSAXParser.d b/cocos2dx/AndroidDebug/platform/CCSAXParser.d deleted file mode 100644 index c6bbc8a6b6..0000000000 --- a/cocos2dx/AndroidDebug/platform/CCSAXParser.d +++ /dev/null @@ -1,149 +0,0 @@ -platform/CCSAXParser.d platform/CCSAXParser.o: \ - ../platform/CCSAXParser.cpp ../platform/CCSAXParser.h \ - ../platform/CCPlatformConfig.h ../platform/CCCommon.h \ - ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h \ - ../platform/CCLibxml2.h ../platform/CCFileUtils.h - -../platform/CCSAXParser.h: - -../platform/CCPlatformConfig.h: - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: - -../platform/CCLibxml2.h: - -../platform/CCFileUtils.h: diff --git a/cocos2dx/AndroidDebug/platform/CCStdC.d b/cocos2dx/AndroidDebug/platform/CCStdC.d deleted file mode 100644 index 1928d3f0fc..0000000000 --- a/cocos2dx/AndroidDebug/platform/CCStdC.d +++ /dev/null @@ -1,15 +0,0 @@ -platform/CCStdC.d platform/CCStdC.o: ../platform/CCStdC.cpp \ - ../platform/CCStdC.h ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h - -../platform/CCStdC.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/platform/CCThread.d b/cocos2dx/AndroidDebug/platform/CCThread.d deleted file mode 100644 index c365ae5562..0000000000 --- a/cocos2dx/AndroidDebug/platform/CCThread.d +++ /dev/null @@ -1,18 +0,0 @@ -platform/CCThread.d platform/CCThread.o: ../platform/CCThread.cpp \ - ../platform/CCThread.h ../platform/CCCommon.h \ - ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h - -../platform/CCThread.h: - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.d b/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.d deleted file mode 100644 index 012c8c72bf..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.d +++ /dev/null @@ -1,27 +0,0 @@ -platform/android/CCAccelerometer_android.d \ - platform/android/CCAccelerometer_android.o: \ - ../platform/android/CCAccelerometer_android.cpp \ - ../platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - ../platform/android/jni/SensorJni.h - -../platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -../platform/android/jni/SensorJni.h: diff --git a/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.o.REMOVED.git-id deleted file mode 100644 index 859e54584b..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/CCAccelerometer_android.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -e331073e786a79b9b73b2902f8e2d098941a55ae \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/CCApplication_android.d b/cocos2dx/AndroidDebug/platform/android/CCApplication_android.d deleted file mode 100644 index 6ba6c30683..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/CCApplication_android.d +++ /dev/null @@ -1,81 +0,0 @@ -platform/android/CCApplication_android.d \ - platform/android/CCApplication_android.o: \ - ../platform/android/CCApplication_android.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/jni/SystemInfoJni.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/jni/SystemInfoJni.h: diff --git a/cocos2dx/AndroidDebug/platform/android/CCApplication_android.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/CCApplication_android.o.REMOVED.git-id deleted file mode 100644 index 9a32df9ccc..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/CCApplication_android.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -8323122f44f5ea74b474972c25ceaaf461a44ea2 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/CCEGLView_android.d b/cocos2dx/AndroidDebug/platform/android/CCEGLView_android.d deleted file mode 100644 index 60dd838d0e..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/CCEGLView_android.d +++ /dev/null @@ -1,121 +0,0 @@ -platform/android/CCEGLView_android.d platform/android/CCEGLView_android.o: \ - ../platform/android/CCEGLView_android.cpp \ - ../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - ../platform/android/jni/IMEJni.h ../platform/android/jni/MessageJni.h - -../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -../platform/android/jni/IMEJni.h: - -../platform/android/jni/MessageJni.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.d b/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.d deleted file mode 100644 index 43c7360dab..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.d +++ /dev/null @@ -1,34 +0,0 @@ -platform/android/jni/IMEJni.d platform/android/jni/IMEJni.o: \ - ../platform/android/jni/IMEJni.cpp ../platform/android/jni/IMEJni.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h - -../platform/android/jni/IMEJni.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.o.REMOVED.git-id deleted file mode 100644 index 742629279a..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/IMEJni.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -588eb92ad752c29bb352f5b1feea5ce88f3ae355 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.d b/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.d deleted file mode 100644 index 15082c04e4..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.d +++ /dev/null @@ -1,17 +0,0 @@ -platform/android/jni/JniHelper.d platform/android/jni/JniHelper.o: \ - ../platform/android/jni/JniHelper.cpp \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.o.REMOVED.git-id deleted file mode 100644 index 25f4039c2a..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/JniHelper.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -39532e1bee727e6f876155247bcfdc2d9c03581e \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.d b/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.d deleted file mode 100644 index 8d10d23a7c..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.d +++ /dev/null @@ -1,98 +0,0 @@ -platform/android/jni/MessageJni.d platform/android/jni/MessageJni.o: \ - ../platform/android/jni/MessageJni.cpp \ - ../platform/android/jni/MessageJni.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h - -../platform/android/jni/MessageJni.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.o.REMOVED.git-id deleted file mode 100644 index 18a39e83e1..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/MessageJni.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -93deb20c12d86605d2752e9c3b4ab49425d865a8 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.d b/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.d deleted file mode 100644 index e31a2cf6e9..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.d +++ /dev/null @@ -1,56 +0,0 @@ -platform/android/jni/SensorJni.d platform/android/jni/SensorJni.o: \ - ../platform/android/jni/SensorJni.cpp \ - ../platform/android/jni/SensorJni.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h - -../platform/android/jni/SensorJni.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.o.REMOVED.git-id deleted file mode 100644 index f705e06b54..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/SensorJni.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -4da056f7c3a8de0e18ff2b8d0ba088494841c000 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.d b/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.d deleted file mode 100644 index 536a60218e..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.d +++ /dev/null @@ -1,32 +0,0 @@ -platform/android/jni/SystemInfoJni.d platform/android/jni/SystemInfoJni.o: \ - ../platform/android/jni/SystemInfoJni.cpp \ - ../platform/android/jni/SystemInfoJni.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h - -../platform/android/jni/SystemInfoJni.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.o.REMOVED.git-id deleted file mode 100644 index b7a63473f1..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/SystemInfoJni.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -3ad3762060b1747348736ebb47c400b7d95f9796 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.d b/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.d deleted file mode 100644 index ce5014132d..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.d +++ /dev/null @@ -1,122 +0,0 @@ -platform/android/jni/TouchesJni.d platform/android/jni/TouchesJni.o: \ - ../platform/android/jni/TouchesJni.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: diff --git a/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.o.REMOVED.git-id b/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.o.REMOVED.git-id deleted file mode 100644 index 866a5c5a04..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/TouchesJni.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -753cff63e9a4db54fff5adf297a53f115b202cf7 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/platform/platform.d b/cocos2dx/AndroidDebug/platform/platform.d deleted file mode 100644 index bd8466f541..0000000000 --- a/cocos2dx/AndroidDebug/platform/platform.d +++ /dev/null @@ -1,22 +0,0 @@ -platform/platform.d platform/platform.o: ../platform/platform.cpp \ - ../platform/platform.h ../platform/CCThread.h ../platform/CCCommon.h \ - ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h ../platform/CCStdC.h - -../platform/platform.h: - -../platform/CCThread.h: - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: - -../platform/CCStdC.h: diff --git a/cocos2dx/AndroidDebug/script_support/CCScriptSupport.d b/cocos2dx/AndroidDebug/script_support/CCScriptSupport.d deleted file mode 100644 index d8cbd34f37..0000000000 --- a/cocos2dx/AndroidDebug/script_support/CCScriptSupport.d +++ /dev/null @@ -1,101 +0,0 @@ -script_support/CCScriptSupport.d script_support/CCScriptSupport.o: \ - ../script_support/CCScriptSupport.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.d b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.d deleted file mode 100644 index 09e0d8816f..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.d +++ /dev/null @@ -1,116 +0,0 @@ -sprite_nodes/CCAnimation.d sprite_nodes/CCAnimation.o: \ - ../sprite_nodes/CCAnimation.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.o.REMOVED.git-id deleted file mode 100644 index 4ea49767c2..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimation.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -c65d0cf80760df15d98b947ca000a3956715a3f7 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.d b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.d deleted file mode 100644 index a54dc2df26..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.d +++ /dev/null @@ -1,110 +0,0 @@ -sprite_nodes/CCAnimationCache.d sprite_nodes/CCAnimationCache.o: \ - ../sprite_nodes/CCAnimationCache.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.o.REMOVED.git-id deleted file mode 100644 index 93ac76e459..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCAnimationCache.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -81b5c08f2300cb062d44fcbe1349673e6937d688 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d b/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d deleted file mode 100644 index c71f77af3d..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.d +++ /dev/null @@ -1,143 +0,0 @@ -sprite_nodes/CCSprite.d sprite_nodes/CCSprite.o: \ - ../sprite_nodes/CCSprite.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.o.REMOVED.git-id deleted file mode 100644 index 3925881353..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCSprite.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -d17df830f7fab787fdab2f0d7e5fdd459b06ac64 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.d b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.d deleted file mode 100644 index 47734d1e3d..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.d +++ /dev/null @@ -1,137 +0,0 @@ -sprite_nodes/CCSpriteBatchNode.d sprite_nodes/CCSpriteBatchNode.o: \ - ../sprite_nodes/CCSpriteBatchNode.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.o.REMOVED.git-id deleted file mode 100644 index 2b30ae2aa6..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteBatchNode.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -6abd26a3955989dac6fc3312d0a65ebac9c9a52b \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrame.d b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrame.d deleted file mode 100644 index d5dbb45369..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrame.d +++ /dev/null @@ -1,101 +0,0 @@ -sprite_nodes/CCSpriteFrame.d sprite_nodes/CCSpriteFrame.o: \ - ../sprite_nodes/CCSpriteFrame.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.d b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.d deleted file mode 100644 index e33d26165b..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.d +++ /dev/null @@ -1,140 +0,0 @@ -sprite_nodes/CCSpriteFrameCache.d sprite_nodes/CCSpriteFrameCache.o: \ - ../sprite_nodes/CCSpriteFrameCache.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/cocoa/CCNS.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/cocoa/CCNS.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: diff --git a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.o.REMOVED.git-id b/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.o.REMOVED.git-id deleted file mode 100644 index d610033aab..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/CCSpriteFrameCache.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -a4e9fbcb6b4b7638ce969d64ee501e71a7b9a929 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/support/CCArray.d b/cocos2dx/AndroidDebug/support/CCArray.d deleted file mode 100644 index fe80a9267c..0000000000 --- a/cocos2dx/AndroidDebug/support/CCArray.d +++ /dev/null @@ -1,79 +0,0 @@ -support/CCArray.d support/CCArray.o: ../support/CCArray.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/support/CCPointExtension.d b/cocos2dx/AndroidDebug/support/CCPointExtension.d deleted file mode 100644 index bfc1aa7914..0000000000 --- a/cocos2dx/AndroidDebug/support/CCPointExtension.d +++ /dev/null @@ -1,74 +0,0 @@ -support/CCPointExtension.d support/CCPointExtension.o: \ - ../support/CCPointExtension.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/support/CCProfiling.d b/cocos2dx/AndroidDebug/support/CCProfiling.d deleted file mode 100644 index 1847592f61..0000000000 --- a/cocos2dx/AndroidDebug/support/CCProfiling.d +++ /dev/null @@ -1,10 +0,0 @@ -support/CCProfiling.d support/CCProfiling.o: ../support/CCProfiling.cpp \ - ../support/CCProfiling.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../support/CCProfiling.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/support/CCUserDefault.d b/cocos2dx/AndroidDebug/support/CCUserDefault.d deleted file mode 100644 index c6b7643068..0000000000 --- a/cocos2dx/AndroidDebug/support/CCUserDefault.d +++ /dev/null @@ -1,146 +0,0 @@ -support/CCUserDefault.d support/CCUserDefault.o: \ - ../support/CCUserDefault.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: diff --git a/cocos2dx/AndroidDebug/support/CCUserDefault.o.REMOVED.git-id b/cocos2dx/AndroidDebug/support/CCUserDefault.o.REMOVED.git-id deleted file mode 100644 index 7232fdd400..0000000000 --- a/cocos2dx/AndroidDebug/support/CCUserDefault.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -f9eb8099e0bfbfc180697da68107ed76dc9ce219 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/support/TransformUtils.d b/cocos2dx/AndroidDebug/support/TransformUtils.d deleted file mode 100644 index 3331f5d5ed..0000000000 --- a/cocos2dx/AndroidDebug/support/TransformUtils.d +++ /dev/null @@ -1,49 +0,0 @@ -support/TransformUtils.d support/TransformUtils.o: \ - ../support/TransformUtils.cpp ../support/TransformUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h - -../support/TransformUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: diff --git a/cocos2dx/AndroidDebug/support/base64.d b/cocos2dx/AndroidDebug/support/base64.d deleted file mode 100644 index e8d0a13c78..0000000000 --- a/cocos2dx/AndroidDebug/support/base64.d +++ /dev/null @@ -1,4 +0,0 @@ -support/base64.d support/base64.o: ../support/base64.cpp \ - ../support/base64.h - -../support/base64.h: diff --git a/cocos2dx/AndroidDebug/support/ccUtils.d b/cocos2dx/AndroidDebug/support/ccUtils.d deleted file mode 100644 index ff1c424af7..0000000000 --- a/cocos2dx/AndroidDebug/support/ccUtils.d +++ /dev/null @@ -1,4 +0,0 @@ -support/ccUtils.d support/ccUtils.o: ../support/ccUtils.cpp \ - ../support/ccUtils.h - -../support/ccUtils.h: diff --git a/cocos2dx/AndroidDebug/support/image_support/TGAlib.d b/cocos2dx/AndroidDebug/support/image_support/TGAlib.d deleted file mode 100644 index 8fb930a570..0000000000 --- a/cocos2dx/AndroidDebug/support/image_support/TGAlib.d +++ /dev/null @@ -1,79 +0,0 @@ -support/image_support/TGAlib.d support/image_support/TGAlib.o: \ - ../support/image_support/TGAlib.cpp ../support/image_support/TGAlib.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -../support/image_support/TGAlib.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidDebug/support/zip_support/ZipUtils.d b/cocos2dx/AndroidDebug/support/zip_support/ZipUtils.d deleted file mode 100644 index 0ca3161f19..0000000000 --- a/cocos2dx/AndroidDebug/support/zip_support/ZipUtils.d +++ /dev/null @@ -1,82 +0,0 @@ -support/zip_support/ZipUtils.d support/zip_support/ZipUtils.o: \ - ../support/zip_support/ZipUtils.cpp ../support/zip_support/ZipUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h - -../support/zip_support/ZipUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: diff --git a/cocos2dx/AndroidDebug/support/zip_support/ioapi.d b/cocos2dx/AndroidDebug/support/zip_support/ioapi.d deleted file mode 100644 index 865d39ce8d..0000000000 --- a/cocos2dx/AndroidDebug/support/zip_support/ioapi.d +++ /dev/null @@ -1,7 +0,0 @@ -support/zip_support/ioapi.d support/zip_support/ioapi.o: \ - ../support/zip_support/ioapi.cpp ../support/zip_support/ioapi.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../support/zip_support/ioapi.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/support/zip_support/unzip.d b/cocos2dx/AndroidDebug/support/zip_support/unzip.d deleted file mode 100644 index 055c8ef71b..0000000000 --- a/cocos2dx/AndroidDebug/support/zip_support/unzip.d +++ /dev/null @@ -1,10 +0,0 @@ -support/zip_support/unzip.d support/zip_support/unzip.o: \ - ../support/zip_support/unzip.cpp ../support/zip_support/unzip.h \ - ../support/zip_support/ioapi.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../support/zip_support/unzip.h: - -../support/zip_support/ioapi.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.d b/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.d deleted file mode 100644 index 04cc4b1c57..0000000000 --- a/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.d +++ /dev/null @@ -1,26 +0,0 @@ -text_input_node/CCIMEDispatcher.d text_input_node/CCIMEDispatcher.o: \ - ../text_input_node/CCIMEDispatcher.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.o.REMOVED.git-id b/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.o.REMOVED.git-id deleted file mode 100644 index b7c837f61d..0000000000 --- a/cocos2dx/AndroidDebug/text_input_node/CCIMEDispatcher.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -a5037a8ca6ca67f957ac221eac8b64f567300221 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.d b/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.d deleted file mode 100644 index baddf4e4f2..0000000000 --- a/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.d +++ /dev/null @@ -1,131 +0,0 @@ -text_input_node/CCTextFieldTTF.d text_input_node/CCTextFieldTTF.o: \ - ../text_input_node/CCTextFieldTTF.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.o.REMOVED.git-id b/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.o.REMOVED.git-id deleted file mode 100644 index 54785df219..0000000000 --- a/cocos2dx/AndroidDebug/text_input_node/CCTextFieldTTF.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -5329919106733e9f442685376e2ba681f6888fb5 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/textures/CCTexture2D.d b/cocos2dx/AndroidDebug/textures/CCTexture2D.d deleted file mode 100644 index c5b9616ffa..0000000000 --- a/cocos2dx/AndroidDebug/textures/CCTexture2D.d +++ /dev/null @@ -1,110 +0,0 @@ -textures/CCTexture2D.d textures/CCTexture2D.o: \ - ../textures/CCTexture2D.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/textures/CCTexture2D.o.REMOVED.git-id b/cocos2dx/AndroidDebug/textures/CCTexture2D.o.REMOVED.git-id deleted file mode 100644 index 17946360da..0000000000 --- a/cocos2dx/AndroidDebug/textures/CCTexture2D.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -a723b72c59b1684b6998c22a8ca8a03fa8b013b5 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/textures/CCTextureAtlas.d b/cocos2dx/AndroidDebug/textures/CCTextureAtlas.d deleted file mode 100644 index efe1dfe84b..0000000000 --- a/cocos2dx/AndroidDebug/textures/CCTextureAtlas.d +++ /dev/null @@ -1,92 +0,0 @@ -textures/CCTextureAtlas.d textures/CCTextureAtlas.o: \ - ../textures/CCTextureAtlas.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/textures/CCTextureCache.d b/cocos2dx/AndroidDebug/textures/CCTextureCache.d deleted file mode 100644 index 6ffa2a8219..0000000000 --- a/cocos2dx/AndroidDebug/textures/CCTextureCache.d +++ /dev/null @@ -1,110 +0,0 @@ -textures/CCTextureCache.d textures/CCTextureCache.o: \ - ../textures/CCTextureCache.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: diff --git a/cocos2dx/AndroidDebug/textures/CCTextureCache.o.REMOVED.git-id b/cocos2dx/AndroidDebug/textures/CCTextureCache.o.REMOVED.git-id deleted file mode 100644 index f8f13e6d5b..0000000000 --- a/cocos2dx/AndroidDebug/textures/CCTextureCache.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -6c56c985033d067ca0f17849ea4bf76279e977a3 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/textures/CCTexturePVR.d b/cocos2dx/AndroidDebug/textures/CCTexturePVR.d deleted file mode 100644 index 0417f7990e..0000000000 --- a/cocos2dx/AndroidDebug/textures/CCTexturePVR.d +++ /dev/null @@ -1,104 +0,0 @@ -textures/CCTexturePVR.d textures/CCTexturePVR.o: \ - ../textures/CCTexturePVR.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: diff --git a/cocos2dx/AndroidDebug/textures/CCTexturePVR.o.REMOVED.git-id b/cocos2dx/AndroidDebug/textures/CCTexturePVR.o.REMOVED.git-id deleted file mode 100644 index 8831bba19f..0000000000 --- a/cocos2dx/AndroidDebug/textures/CCTexturePVR.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -bd0b7fb8ba97c229e90be893413f4d219514eedf \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.d deleted file mode 100644 index 30927ff830..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.d +++ /dev/null @@ -1,99 +0,0 @@ -tileMap_parallax_nodes/CCParallaxNode.d \ - tileMap_parallax_nodes/CCParallaxNode.o: \ - ../tileMap_parallax_nodes/CCParallaxNode.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.o.REMOVED.git-id deleted file mode 100644 index f25c797dcb..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCParallaxNode.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -88e1926cdc1f867fd57f6afc153863c58166b4b4 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.d deleted file mode 100644 index 10f9be4fb5..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.d +++ /dev/null @@ -1,143 +0,0 @@ -tileMap_parallax_nodes/CCTMXLayer.d tileMap_parallax_nodes/CCTMXLayer.o: \ - ../tileMap_parallax_nodes/CCTMXLayer.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.o.REMOVED.git-id deleted file mode 100644 index 3d0af3c27a..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXLayer.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -d083800ed0f1e288c0053e770e5a5c2826a42a07 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.d deleted file mode 100644 index 7b62478c80..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.d +++ /dev/null @@ -1,84 +0,0 @@ -tileMap_parallax_nodes/CCTMXObjectGroup.d \ - tileMap_parallax_nodes/CCTMXObjectGroup.o: \ - ../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.o.REMOVED.git-id deleted file mode 100644 index cf51b1ab94..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXObjectGroup.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -81878a9e4daf01a70b65978a34e16ebadbc39570 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.d deleted file mode 100644 index bab28656ef..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.d +++ /dev/null @@ -1,138 +0,0 @@ -tileMap_parallax_nodes/CCTMXTiledMap.d \ - tileMap_parallax_nodes/CCTMXTiledMap.o: \ - ../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.o.REMOVED.git-id deleted file mode 100644 index 3f92435a60..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXTiledMap.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -fd1d450b17b336909f9cba85b5eee76cea34dd93 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.d deleted file mode 100644 index c47fff7a9d..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.d +++ /dev/null @@ -1,135 +0,0 @@ -tileMap_parallax_nodes/CCTMXXMLParser.d \ - tileMap_parallax_nodes/CCTMXXMLParser.o: \ - ../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.o.REMOVED.git-id deleted file mode 100644 index 588856a265..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTMXXMLParser.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -64e46d61b2fc969d72645db5db878df5c94c2a6e \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.d b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.d deleted file mode 100644 index 9035448b51..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.d +++ /dev/null @@ -1,117 +0,0 @@ -tileMap_parallax_nodes/CCTileMapAtlas.d \ - tileMap_parallax_nodes/CCTileMapAtlas.o: \ - ../tileMap_parallax_nodes/CCTileMapAtlas.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/image_support/TGAlib.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/image_support/TGAlib.h: diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.o.REMOVED.git-id b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.o.REMOVED.git-id deleted file mode 100644 index 5d1838dbcf..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/CCTileMapAtlas.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -205966b128de6a61001eee906f074b3fb1dc8787 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.d b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.d deleted file mode 100644 index acff62c5a9..0000000000 --- a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.d +++ /dev/null @@ -1,125 +0,0 @@ -touch_dispatcher/CCTouchDispatcher.d touch_dispatcher/CCTouchDispatcher.o: \ - ../touch_dispatcher/CCTouchDispatcher.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.o.REMOVED.git-id b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.o.REMOVED.git-id deleted file mode 100644 index 1c4e3cbb63..0000000000 --- a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchDispatcher.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -74493c20ad51416c9d1e574367346b77b0699815 \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.d b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.d deleted file mode 100644 index 837b1e5440..0000000000 --- a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.d +++ /dev/null @@ -1,110 +0,0 @@ -touch_dispatcher/CCTouchHandler.d touch_dispatcher/CCTouchHandler.o: \ - ../touch_dispatcher/CCTouchHandler.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.o.REMOVED.git-id b/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.o.REMOVED.git-id deleted file mode 100644 index cb9268be48..0000000000 --- a/cocos2dx/AndroidDebug/touch_dispatcher/CCTouchHandler.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -aa2986c1900f0c6ab2d7a3b51a45b1a39963f97a \ No newline at end of file diff --git a/cocos2dx/AndroidRelease/CCCamera.d b/cocos2dx/AndroidRelease/CCCamera.d deleted file mode 100644 index ff5b6fc447..0000000000 --- a/cocos2dx/AndroidRelease/CCCamera.d +++ /dev/null @@ -1,79 +0,0 @@ -CCCamera.d CCCamera.o: ../CCCamera.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: diff --git a/cocos2dx/AndroidRelease/CCConfiguration.d b/cocos2dx/AndroidRelease/CCConfiguration.d deleted file mode 100644 index bc4e1c50d4..0000000000 --- a/cocos2dx/AndroidRelease/CCConfiguration.d +++ /dev/null @@ -1,79 +0,0 @@ -CCConfiguration.d CCConfiguration.o: ../CCConfiguration.cpp \ - ../CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -../CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/CCDirector.d b/cocos2dx/AndroidRelease/CCDirector.d deleted file mode 100644 index 30716846ef..0000000000 --- a/cocos2dx/AndroidRelease/CCDirector.d +++ /dev/null @@ -1,220 +0,0 @@ -CCDirector.d CCDirector.o: ../CCDirector.cpp ../cocoa/CCNS.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ - ../platform/platform.h ../platform/CCThread.h ../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - ../CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h - -../cocoa/CCNS.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: - -../platform/platform.h: - -../platform/CCThread.h: - -../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -../CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/CCDrawingPrimitives.d b/cocos2dx/AndroidRelease/CCDrawingPrimitives.d deleted file mode 100644 index d3c36ebe22..0000000000 --- a/cocos2dx/AndroidRelease/CCDrawingPrimitives.d +++ /dev/null @@ -1,79 +0,0 @@ -CCDrawingPrimitives.d CCDrawingPrimitives.o: ../CCDrawingPrimitives.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: diff --git a/cocos2dx/AndroidRelease/CCScheduler.d b/cocos2dx/AndroidRelease/CCScheduler.d deleted file mode 100644 index c408541982..0000000000 --- a/cocos2dx/AndroidRelease/CCScheduler.d +++ /dev/null @@ -1,114 +0,0 @@ -CCScheduler.d CCScheduler.o: ../CCScheduler.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - ../support/data_support/utlist.h ../support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -../support/data_support/utlist.h: - -../support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: diff --git a/cocos2dx/AndroidRelease/actions/CCAction.d b/cocos2dx/AndroidRelease/actions/CCAction.d deleted file mode 100644 index a2c30c3080..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCAction.d +++ /dev/null @@ -1,127 +0,0 @@ -actions/CCAction.d actions/CCAction.o: ../actions/CCAction.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionCamera.d b/cocos2dx/AndroidRelease/actions/CCActionCamera.d deleted file mode 100644 index 826e427c72..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionCamera.d +++ /dev/null @@ -1,122 +0,0 @@ -actions/CCActionCamera.d actions/CCActionCamera.o: \ - ../actions/CCActionCamera.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionEase.d b/cocos2dx/AndroidRelease/actions/CCActionEase.d deleted file mode 100644 index 55c0dd140b..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionEase.d +++ /dev/null @@ -1,116 +0,0 @@ -actions/CCActionEase.d actions/CCActionEase.o: \ - ../actions/CCActionEase.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionGrid.d b/cocos2dx/AndroidRelease/actions/CCActionGrid.d deleted file mode 100644 index 7198b94556..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionGrid.d +++ /dev/null @@ -1,137 +0,0 @@ -actions/CCActionGrid.d actions/CCActionGrid.o: \ - ../actions/CCActionGrid.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionGrid3D.d b/cocos2dx/AndroidRelease/actions/CCActionGrid3D.d deleted file mode 100644 index f484b34884..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionGrid3D.d +++ /dev/null @@ -1,125 +0,0 @@ -actions/CCActionGrid3D.d actions/CCActionGrid3D.o: \ - ../actions/CCActionGrid3D.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionInstant.d b/cocos2dx/AndroidRelease/actions/CCActionInstant.d deleted file mode 100644 index e460d29577..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionInstant.d +++ /dev/null @@ -1,128 +0,0 @@ -actions/CCActionInstant.d actions/CCActionInstant.o: \ - ../actions/CCActionInstant.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionInterval.d b/cocos2dx/AndroidRelease/actions/CCActionInterval.d deleted file mode 100644 index ff02e3e4e8..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionInterval.d +++ /dev/null @@ -1,128 +0,0 @@ -actions/CCActionInterval.d actions/CCActionInterval.o: \ - ../actions/CCActionInterval.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionManager.d b/cocos2dx/AndroidRelease/actions/CCActionManager.d deleted file mode 100644 index 727d35c154..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionManager.d +++ /dev/null @@ -1,107 +0,0 @@ -actions/CCActionManager.d actions/CCActionManager.o: \ - ../actions/CCActionManager.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionPageTurn3D.d b/cocos2dx/AndroidRelease/actions/CCActionPageTurn3D.d deleted file mode 100644 index 2acf42c8ce..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionPageTurn3D.d +++ /dev/null @@ -1,125 +0,0 @@ -actions/CCActionPageTurn3D.d actions/CCActionPageTurn3D.o: \ - ../actions/CCActionPageTurn3D.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionProgressTimer.d b/cocos2dx/AndroidRelease/actions/CCActionProgressTimer.d deleted file mode 100644 index 02a28b289f..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionProgressTimer.d +++ /dev/null @@ -1,128 +0,0 @@ -actions/CCActionProgressTimer.d actions/CCActionProgressTimer.o: \ - ../actions/CCActionProgressTimer.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidRelease/actions/CCActionTiledGrid.d b/cocos2dx/AndroidRelease/actions/CCActionTiledGrid.d deleted file mode 100644 index 03a250776b..0000000000 --- a/cocos2dx/AndroidRelease/actions/CCActionTiledGrid.d +++ /dev/null @@ -1,143 +0,0 @@ -actions/CCActionTiledGrid.d actions/CCActionTiledGrid.o: \ - ../actions/CCActionTiledGrid.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/base_nodes/CCAtlasNode.d b/cocos2dx/AndroidRelease/base_nodes/CCAtlasNode.d deleted file mode 100644 index 27d2469fb3..0000000000 --- a/cocos2dx/AndroidRelease/base_nodes/CCAtlasNode.d +++ /dev/null @@ -1,104 +0,0 @@ -base_nodes/CCAtlasNode.d base_nodes/CCAtlasNode.o: \ - ../base_nodes/CCAtlasNode.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: diff --git a/cocos2dx/AndroidRelease/base_nodes/CCNode.d b/cocos2dx/AndroidRelease/base_nodes/CCNode.d deleted file mode 100644 index d9b848443c..0000000000 --- a/cocos2dx/AndroidRelease/base_nodes/CCNode.d +++ /dev/null @@ -1,136 +0,0 @@ -base_nodes/CCNode.d base_nodes/CCNode.o: ../base_nodes/CCNode.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCAffineTransform.d b/cocos2dx/AndroidRelease/cocoa/CCAffineTransform.d deleted file mode 100644 index eb2ba85edc..0000000000 --- a/cocos2dx/AndroidRelease/cocoa/CCAffineTransform.d +++ /dev/null @@ -1,23 +0,0 @@ -cocoa/CCAffineTransform.d cocoa/CCAffineTransform.o: \ - ../cocoa/CCAffineTransform.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCAutoreleasePool.d b/cocos2dx/AndroidRelease/cocoa/CCAutoreleasePool.d deleted file mode 100644 index 50ba0052f1..0000000000 --- a/cocos2dx/AndroidRelease/cocoa/CCAutoreleasePool.d +++ /dev/null @@ -1,26 +0,0 @@ -cocoa/CCAutoreleasePool.d cocoa/CCAutoreleasePool.o: \ - ../cocoa/CCAutoreleasePool.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCData.d b/cocos2dx/AndroidRelease/cocoa/CCData.d deleted file mode 100644 index ecb1280321..0000000000 --- a/cocos2dx/AndroidRelease/cocoa/CCData.d +++ /dev/null @@ -1,79 +0,0 @@ -cocoa/CCData.d cocoa/CCData.o: ../cocoa/CCData.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCGeometry.d b/cocos2dx/AndroidRelease/cocoa/CCGeometry.d deleted file mode 100644 index 966f72f25d..0000000000 --- a/cocos2dx/AndroidRelease/cocoa/CCGeometry.d +++ /dev/null @@ -1,19 +0,0 @@ -cocoa/CCGeometry.d cocoa/CCGeometry.o: ../cocoa/CCGeometry.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCNS.d b/cocos2dx/AndroidRelease/cocoa/CCNS.d deleted file mode 100644 index 2ebb219988..0000000000 --- a/cocos2dx/AndroidRelease/cocoa/CCNS.d +++ /dev/null @@ -1,21 +0,0 @@ -cocoa/CCNS.d cocoa/CCNS.o: ../cocoa/CCNS.cpp ../cocoa/CCNS.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../cocoa/CCNS.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCObject.d b/cocos2dx/AndroidRelease/cocoa/CCObject.d deleted file mode 100644 index 2609e7259f..0000000000 --- a/cocos2dx/AndroidRelease/cocoa/CCObject.d +++ /dev/null @@ -1,28 +0,0 @@ -cocoa/CCObject.d cocoa/CCObject.o: ../cocoa/CCObject.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAutoreleasePool.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCSet.d b/cocos2dx/AndroidRelease/cocoa/CCSet.d deleted file mode 100644 index 7aa0a8a99c..0000000000 --- a/cocos2dx/AndroidRelease/cocoa/CCSet.d +++ /dev/null @@ -1,22 +0,0 @@ -cocoa/CCSet.d cocoa/CCSet.o: ../cocoa/CCSet.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocoa/CCZone.d b/cocos2dx/AndroidRelease/cocoa/CCZone.d deleted file mode 100644 index 172ee0927d..0000000000 --- a/cocos2dx/AndroidRelease/cocoa/CCZone.d +++ /dev/null @@ -1,22 +0,0 @@ -cocoa/CCZone.d cocoa/CCZone.o: ../cocoa/CCZone.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/cocos2d.d b/cocos2dx/AndroidRelease/cocos2d.d deleted file mode 100644 index 864791e44d..0000000000 --- a/cocos2dx/AndroidRelease/cocos2d.d +++ /dev/null @@ -1,340 +0,0 @@ -cocos2d.d cocos2d.o: ../cocos2d.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/cocos2d.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionManager.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemPoint.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScheduler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: diff --git a/cocos2dx/AndroidRelease/effects/CCGrabber.d b/cocos2dx/AndroidRelease/effects/CCGrabber.d deleted file mode 100644 index e76ea937b2..0000000000 --- a/cocos2dx/AndroidRelease/effects/CCGrabber.d +++ /dev/null @@ -1,91 +0,0 @@ -effects/CCGrabber.d effects/CCGrabber.o: ../effects/CCGrabber.cpp \ - ../effects/CCGrabber.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h - -../effects/CCGrabber.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: diff --git a/cocos2dx/AndroidRelease/effects/CCGrid.d b/cocos2dx/AndroidRelease/effects/CCGrid.d deleted file mode 100644 index 0a7f9bddad..0000000000 --- a/cocos2dx/AndroidRelease/effects/CCGrid.d +++ /dev/null @@ -1,121 +0,0 @@ -effects/CCGrid.d effects/CCGrid.o: ../effects/CCGrid.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrabber.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrabber.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDelegate.d b/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDelegate.d deleted file mode 100644 index ba93ae9b5f..0000000000 --- a/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDelegate.d +++ /dev/null @@ -1,74 +0,0 @@ -keypad_dispatcher/CCKeypadDelegate.d keypad_dispatcher/CCKeypadDelegate.o: \ - ../keypad_dispatcher/CCKeypadDelegate.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDispatcher.d b/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDispatcher.d deleted file mode 100644 index 1985a085e7..0000000000 --- a/cocos2dx/AndroidRelease/keypad_dispatcher/CCKeypadDispatcher.d +++ /dev/null @@ -1,84 +0,0 @@ -keypad_dispatcher/CCKeypadDispatcher.d \ - keypad_dispatcher/CCKeypadDispatcher.o: \ - ../keypad_dispatcher/CCKeypadDispatcher.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/label_nodes/CCLabelAtlas.d b/cocos2dx/AndroidRelease/label_nodes/CCLabelAtlas.d deleted file mode 100644 index 7aa0b16888..0000000000 --- a/cocos2dx/AndroidRelease/label_nodes/CCLabelAtlas.d +++ /dev/null @@ -1,113 +0,0 @@ -label_nodes/CCLabelAtlas.d label_nodes/CCLabelAtlas.o: \ - ../label_nodes/CCLabelAtlas.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: diff --git a/cocos2dx/AndroidRelease/label_nodes/CCLabelBMFont.d b/cocos2dx/AndroidRelease/label_nodes/CCLabelBMFont.d deleted file mode 100644 index 8a226e0518..0000000000 --- a/cocos2dx/AndroidRelease/label_nodes/CCLabelBMFont.d +++ /dev/null @@ -1,140 +0,0 @@ -label_nodes/CCLabelBMFont.d label_nodes/CCLabelBMFont.o: \ - ../label_nodes/CCLabelBMFont.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelBMFont.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/uthash.h: diff --git a/cocos2dx/AndroidRelease/label_nodes/CCLabelTTF.d b/cocos2dx/AndroidRelease/label_nodes/CCLabelTTF.d deleted file mode 100644 index 2f52241807..0000000000 --- a/cocos2dx/AndroidRelease/label_nodes/CCLabelTTF.d +++ /dev/null @@ -1,110 +0,0 @@ -label_nodes/CCLabelTTF.d label_nodes/CCLabelTTF.o: \ - ../label_nodes/CCLabelTTF.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCLayer.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCLayer.d deleted file mode 100644 index be079c7c80..0000000000 --- a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCLayer.d +++ /dev/null @@ -1,144 +0,0 @@ -layers_scenes_transitions_nodes/CCLayer.d \ - layers_scenes_transitions_nodes/CCLayer.o: \ - ../layers_scenes_transitions_nodes/CCLayer.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCScene.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCScene.d deleted file mode 100644 index a46f1d3abd..0000000000 --- a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCScene.d +++ /dev/null @@ -1,102 +0,0 @@ -layers_scenes_transitions_nodes/CCScene.d \ - layers_scenes_transitions_nodes/CCScene.o: \ - ../layers_scenes_transitions_nodes/CCScene.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.d deleted file mode 100644 index e898c55a68..0000000000 --- a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.d +++ /dev/null @@ -1,192 +0,0 @@ -layers_scenes_transitions_nodes/CCTransition.d \ - layers_scenes_transitions_nodes/CCTransition.o: \ - ../layers_scenes_transitions_nodes/CCTransition.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionEase.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionTiledGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id deleted file mode 100644 index b96486cf88..0000000000 --- a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransition.o.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -d8ae5e136425efd066dc6f3156740eedb4f1bd33 \ No newline at end of file diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionPageTurn.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionPageTurn.d deleted file mode 100644 index 091e1d1032..0000000000 --- a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionPageTurn.d +++ /dev/null @@ -1,147 +0,0 @@ -layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ - layers_scenes_transitions_nodes/CCTransitionPageTurn.o: \ - ../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionPageTurn.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionPageTurn3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid3D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionGrid.h: diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionRadial.d b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionRadial.d deleted file mode 100644 index dfc6351390..0000000000 --- a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/CCTransitionRadial.d +++ /dev/null @@ -1,153 +0,0 @@ -layers_scenes_transitions_nodes/CCTransitionRadial.d \ - layers_scenes_transitions_nodes/CCTransitionRadial.o: \ - ../layers_scenes_transitions_nodes/CCTransitionRadial.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransitionRadial.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTransition.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScene.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInstant.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/libcocos2dx-base.so.REMOVED.git-id b/cocos2dx/AndroidRelease/libcocos2dx-base.so.REMOVED.git-id deleted file mode 100644 index 7807664a98..0000000000 --- a/cocos2dx/AndroidRelease/libcocos2dx-base.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -362628e06964c9b6adb7dfdee29a4cebab35fd70 \ No newline at end of file diff --git a/cocos2dx/AndroidRelease/menu_nodes/CCMenu.d b/cocos2dx/AndroidRelease/menu_nodes/CCMenu.d deleted file mode 100644 index 90f7bbcf6f..0000000000 --- a/cocos2dx/AndroidRelease/menu_nodes/CCMenu.d +++ /dev/null @@ -1,145 +0,0 @@ -menu_nodes/CCMenu.d menu_nodes/CCMenu.o: ../menu_nodes/CCMenu.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenu.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: diff --git a/cocos2dx/AndroidRelease/menu_nodes/CCMenuItem.d b/cocos2dx/AndroidRelease/menu_nodes/CCMenuItem.d deleted file mode 100644 index 8e9cc6edda..0000000000 --- a/cocos2dx/AndroidRelease/menu_nodes/CCMenuItem.d +++ /dev/null @@ -1,149 +0,0 @@ -menu_nodes/CCMenuItem.d menu_nodes/CCMenuItem.o: \ - ../menu_nodes/CCMenuItem.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMenuItem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCActionInterval.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAction.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCZone.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: diff --git a/cocos2dx/AndroidRelease/misc_nodes/CCMotionStreak.d b/cocos2dx/AndroidRelease/misc_nodes/CCMotionStreak.d deleted file mode 100644 index 0602c1560d..0000000000 --- a/cocos2dx/AndroidRelease/misc_nodes/CCMotionStreak.d +++ /dev/null @@ -1,107 +0,0 @@ -misc_nodes/CCMotionStreak.d misc_nodes/CCMotionStreak.o: \ - ../misc_nodes/CCMotionStreak.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMotionStreak.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h: diff --git a/cocos2dx/AndroidRelease/misc_nodes/CCProgressTimer.d b/cocos2dx/AndroidRelease/misc_nodes/CCProgressTimer.d deleted file mode 100644 index 1e541547cc..0000000000 --- a/cocos2dx/AndroidRelease/misc_nodes/CCProgressTimer.d +++ /dev/null @@ -1,119 +0,0 @@ -misc_nodes/CCProgressTimer.d misc_nodes/CCProgressTimer.o: \ - ../misc_nodes/CCProgressTimer.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProgressTimer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/misc_nodes/CCRenderTexture.d b/cocos2dx/AndroidRelease/misc_nodes/CCRenderTexture.d deleted file mode 100644 index 39b69ff436..0000000000 --- a/cocos2dx/AndroidRelease/misc_nodes/CCRenderTexture.d +++ /dev/null @@ -1,143 +0,0 @@ -misc_nodes/CCRenderTexture.d misc_nodes/CCRenderTexture.o: \ - ../misc_nodes/CCRenderTexture.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRenderTexture.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: diff --git a/cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d b/cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d deleted file mode 100644 index 5b303e77d8..0000000000 --- a/cocos2dx/AndroidRelease/misc_nodes/CCRibbon.d +++ /dev/null @@ -1,112 +0,0 @@ -misc_nodes/CCRibbon.d misc_nodes/CCRibbon.o: ../misc_nodes/CCRibbon.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCRibbon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/particle_nodes/CCParticleExamples.d b/cocos2dx/AndroidRelease/particle_nodes/CCParticleExamples.d deleted file mode 100644 index 93030ec692..0000000000 --- a/cocos2dx/AndroidRelease/particle_nodes/CCParticleExamples.d +++ /dev/null @@ -1,128 +0,0 @@ -particle_nodes/CCParticleExamples.d particle_nodes/CCParticleExamples.o: \ - ../particle_nodes/CCParticleExamples.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleExamples.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCArchOptimalParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystem.d b/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystem.d deleted file mode 100644 index 88561d2578..0000000000 --- a/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystem.d +++ /dev/null @@ -1,137 +0,0 @@ -particle_nodes/CCParticleSystem.d particle_nodes/CCParticleSystem.o: \ - ../particle_nodes/CCParticleSystem.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: diff --git a/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystemQuad.d b/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystemQuad.d deleted file mode 100644 index ea503b316f..0000000000 --- a/cocos2dx/AndroidRelease/particle_nodes/CCParticleSystemQuad.d +++ /dev/null @@ -1,114 +0,0 @@ -particle_nodes/CCParticleSystemQuad.d \ - particle_nodes/CCParticleSystemQuad.o: \ - ../particle_nodes/CCParticleSystemQuad.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystemQuad.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParticleSystem.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: diff --git a/cocos2dx/AndroidRelease/platform/CCCommon.d b/cocos2dx/AndroidRelease/platform/CCCommon.d deleted file mode 100644 index 5a35d2e759..0000000000 --- a/cocos2dx/AndroidRelease/platform/CCCommon.d +++ /dev/null @@ -1,17 +0,0 @@ -platform/CCCommon.d platform/CCCommon.o: ../platform/CCCommon.cpp \ - ../platform/CCCommon.h ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h ../platform/android/jni/MessageJni.h - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: - -../platform/android/jni/MessageJni.h: diff --git a/cocos2dx/AndroidRelease/platform/CCFileUtils.d b/cocos2dx/AndroidRelease/platform/CCFileUtils.d deleted file mode 100644 index bb0d34ec90..0000000000 --- a/cocos2dx/AndroidRelease/platform/CCFileUtils.d +++ /dev/null @@ -1,164 +0,0 @@ -platform/CCFileUtils.d platform/CCFileUtils.o: \ - ../platform/CCFileUtils.cpp ../platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h \ - ../platform/CCLibxml2.h ../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - ../platform/CCSAXParser.h ../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/unzip.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ioapi.h \ - ../platform/android/CCFileUtils_android.cpp \ - ../platform/android/jni/SystemInfoJni.h - -../platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: - -../platform/CCLibxml2.h: - -../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -../platform/CCSAXParser.h: - -../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/unzip.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ioapi.h: - -../platform/android/CCFileUtils_android.cpp: - -../platform/android/jni/SystemInfoJni.h: diff --git a/cocos2dx/AndroidRelease/platform/CCGL.d b/cocos2dx/AndroidRelease/platform/CCGL.d deleted file mode 100644 index 1a491eaac6..0000000000 --- a/cocos2dx/AndroidRelease/platform/CCGL.d +++ /dev/null @@ -1,41 +0,0 @@ -platform/CCGL.d platform/CCGL.o: ../platform/CCGL.cpp ../platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCCommon.h ../platform/CCStdC.h \ - ../platform/CCPlatformMacros.h - -../platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCCommon.h: - -../platform/CCStdC.h: - -../platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/platform/CCImage.d b/cocos2dx/AndroidRelease/platform/CCImage.d deleted file mode 100644 index 948811a40e..0000000000 --- a/cocos2dx/AndroidRelease/platform/CCImage.d +++ /dev/null @@ -1,113 +0,0 @@ -platform/CCImage.d platform/CCImage.o: ../platform/CCImage.cpp \ - ../platform/CCImage.h ../platform/CCCommon.h \ - ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h ../platform/CCStdC.h \ - ../platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/png.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/pngconf.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jpeglib.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig_linux.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jmorecfg.h \ - ../platform/android/CCImage_android.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - ../platform/android/jni/JniHelper.h - -../platform/CCImage.h: - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: - -../platform/CCStdC.h: - -../platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/png.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng/pngconf.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jpeglib.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jconfig_linux.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg/jmorecfg.h: - -../platform/android/CCImage_android.cpp: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -../platform/android/jni/JniHelper.h: diff --git a/cocos2dx/AndroidRelease/platform/CCSAXParser.d b/cocos2dx/AndroidRelease/platform/CCSAXParser.d deleted file mode 100644 index c6bbc8a6b6..0000000000 --- a/cocos2dx/AndroidRelease/platform/CCSAXParser.d +++ /dev/null @@ -1,149 +0,0 @@ -platform/CCSAXParser.d platform/CCSAXParser.o: \ - ../platform/CCSAXParser.cpp ../platform/CCSAXParser.h \ - ../platform/CCPlatformConfig.h ../platform/CCCommon.h \ - ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h \ - ../platform/CCLibxml2.h ../platform/CCFileUtils.h - -../platform/CCSAXParser.h: - -../platform/CCPlatformConfig.h: - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: - -../platform/CCLibxml2.h: - -../platform/CCFileUtils.h: diff --git a/cocos2dx/AndroidRelease/platform/CCStdC.d b/cocos2dx/AndroidRelease/platform/CCStdC.d deleted file mode 100644 index 1928d3f0fc..0000000000 --- a/cocos2dx/AndroidRelease/platform/CCStdC.d +++ /dev/null @@ -1,15 +0,0 @@ -platform/CCStdC.d platform/CCStdC.o: ../platform/CCStdC.cpp \ - ../platform/CCStdC.h ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h - -../platform/CCStdC.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/platform/CCThread.d b/cocos2dx/AndroidRelease/platform/CCThread.d deleted file mode 100644 index c365ae5562..0000000000 --- a/cocos2dx/AndroidRelease/platform/CCThread.d +++ /dev/null @@ -1,18 +0,0 @@ -platform/CCThread.d platform/CCThread.o: ../platform/CCThread.cpp \ - ../platform/CCThread.h ../platform/CCCommon.h \ - ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h - -../platform/CCThread.h: - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/platform/android/CCAccelerometer_android.d b/cocos2dx/AndroidRelease/platform/android/CCAccelerometer_android.d deleted file mode 100644 index 012c8c72bf..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/CCAccelerometer_android.d +++ /dev/null @@ -1,27 +0,0 @@ -platform/android/CCAccelerometer_android.d \ - platform/android/CCAccelerometer_android.o: \ - ../platform/android/CCAccelerometer_android.cpp \ - ../platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - ../platform/android/jni/SensorJni.h - -../platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -../platform/android/jni/SensorJni.h: diff --git a/cocos2dx/AndroidRelease/platform/android/CCApplication_android.d b/cocos2dx/AndroidRelease/platform/android/CCApplication_android.d deleted file mode 100644 index 6ba6c30683..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/CCApplication_android.d +++ /dev/null @@ -1,81 +0,0 @@ -platform/android/CCApplication_android.d \ - platform/android/CCApplication_android.o: \ - ../platform/android/CCApplication_android.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/jni/SystemInfoJni.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/jni/SystemInfoJni.h: diff --git a/cocos2dx/AndroidRelease/platform/android/CCEGLView_android.d b/cocos2dx/AndroidRelease/platform/android/CCEGLView_android.d deleted file mode 100644 index 60dd838d0e..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/CCEGLView_android.d +++ /dev/null @@ -1,121 +0,0 @@ -platform/android/CCEGLView_android.d platform/android/CCEGLView_android.o: \ - ../platform/android/CCEGLView_android.cpp \ - ../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - ../platform/android/jni/IMEJni.h ../platform/android/jni/MessageJni.h - -../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -../platform/android/jni/IMEJni.h: - -../platform/android/jni/MessageJni.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/IMEJni.d b/cocos2dx/AndroidRelease/platform/android/jni/IMEJni.d deleted file mode 100644 index 43c7360dab..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/jni/IMEJni.d +++ /dev/null @@ -1,34 +0,0 @@ -platform/android/jni/IMEJni.d platform/android/jni/IMEJni.o: \ - ../platform/android/jni/IMEJni.cpp ../platform/android/jni/IMEJni.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h - -../platform/android/jni/IMEJni.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/JniHelper.d b/cocos2dx/AndroidRelease/platform/android/jni/JniHelper.d deleted file mode 100644 index 15082c04e4..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/jni/JniHelper.d +++ /dev/null @@ -1,17 +0,0 @@ -platform/android/jni/JniHelper.d platform/android/jni/JniHelper.o: \ - ../platform/android/jni/JniHelper.cpp \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/MessageJni.d b/cocos2dx/AndroidRelease/platform/android/jni/MessageJni.d deleted file mode 100644 index 8d10d23a7c..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/jni/MessageJni.d +++ /dev/null @@ -1,98 +0,0 @@ -platform/android/jni/MessageJni.d platform/android/jni/MessageJni.o: \ - ../platform/android/jni/MessageJni.cpp \ - ../platform/android/jni/MessageJni.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h - -../platform/android/jni/MessageJni.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCApplication.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCApplication_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCApplication_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/SensorJni.d b/cocos2dx/AndroidRelease/platform/android/jni/SensorJni.d deleted file mode 100644 index e31a2cf6e9..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/jni/SensorJni.d +++ /dev/null @@ -1,56 +0,0 @@ -platform/android/jni/SensorJni.d platform/android/jni/SensorJni.o: \ - ../platform/android/jni/SensorJni.cpp \ - ../platform/android/jni/SensorJni.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h - -../platform/android/jni/SensorJni.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCAccelerometer_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAccelerometerDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/android/CCAccelerometer_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/SystemInfoJni.d b/cocos2dx/AndroidRelease/platform/android/jni/SystemInfoJni.d deleted file mode 100644 index 536a60218e..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/jni/SystemInfoJni.d +++ /dev/null @@ -1,32 +0,0 @@ -platform/android/jni/SystemInfoJni.d platform/android/jni/SystemInfoJni.o: \ - ../platform/android/jni/SystemInfoJni.cpp \ - ../platform/android/jni/SystemInfoJni.h \ - ../platform/android/jni/JniHelper.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h - -../platform/android/jni/SystemInfoJni.h: - -../platform/android/jni/JniHelper.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: diff --git a/cocos2dx/AndroidRelease/platform/android/jni/TouchesJni.d b/cocos2dx/AndroidRelease/platform/android/jni/TouchesJni.d deleted file mode 100644 index ce5014132d..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/jni/TouchesJni.d +++ /dev/null @@ -1,122 +0,0 @@ -platform/android/jni/TouchesJni.d platform/android/jni/TouchesJni.o: \ - ../platform/android/jni/TouchesJni.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCKeypadDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: diff --git a/cocos2dx/AndroidRelease/platform/platform.d b/cocos2dx/AndroidRelease/platform/platform.d deleted file mode 100644 index bd8466f541..0000000000 --- a/cocos2dx/AndroidRelease/platform/platform.d +++ /dev/null @@ -1,22 +0,0 @@ -platform/platform.d platform/platform.o: ../platform/platform.cpp \ - ../platform/platform.h ../platform/CCThread.h ../platform/CCCommon.h \ - ../platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - ../platform/CCPlatformConfig.h ../platform/CCStdC.h - -../platform/platform.h: - -../platform/CCThread.h: - -../platform/CCCommon.h: - -../platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -../platform/CCPlatformConfig.h: - -../platform/CCStdC.h: diff --git a/cocos2dx/AndroidRelease/script_support/CCScriptSupport.d b/cocos2dx/AndroidRelease/script_support/CCScriptSupport.d deleted file mode 100644 index d8cbd34f37..0000000000 --- a/cocos2dx/AndroidRelease/script_support/CCScriptSupport.d +++ /dev/null @@ -1,101 +0,0 @@ -script_support/CCScriptSupport.d script_support/CCScriptSupport.o: \ - ../script_support/CCScriptSupport.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCAnimation.d b/cocos2dx/AndroidRelease/sprite_nodes/CCAnimation.d deleted file mode 100644 index 09e0d8816f..0000000000 --- a/cocos2dx/AndroidRelease/sprite_nodes/CCAnimation.d +++ /dev/null @@ -1,116 +0,0 @@ -sprite_nodes/CCAnimation.d sprite_nodes/CCAnimation.o: \ - ../sprite_nodes/CCAnimation.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCAnimationCache.d b/cocos2dx/AndroidRelease/sprite_nodes/CCAnimationCache.d deleted file mode 100644 index a54dc2df26..0000000000 --- a/cocos2dx/AndroidRelease/sprite_nodes/CCAnimationCache.d +++ /dev/null @@ -1,110 +0,0 @@ -sprite_nodes/CCAnimationCache.d sprite_nodes/CCAnimationCache.o: \ - ../sprite_nodes/CCAnimationCache.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCSprite.d b/cocos2dx/AndroidRelease/sprite_nodes/CCSprite.d deleted file mode 100644 index c71f77af3d..0000000000 --- a/cocos2dx/AndroidRelease/sprite_nodes/CCSprite.d +++ /dev/null @@ -1,143 +0,0 @@ -sprite_nodes/CCSprite.d sprite_nodes/CCSprite.o: \ - ../sprite_nodes/CCSprite.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimation.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAnimationCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteBatchNode.d b/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteBatchNode.d deleted file mode 100644 index 47734d1e3d..0000000000 --- a/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteBatchNode.d +++ /dev/null @@ -1,137 +0,0 @@ -sprite_nodes/CCSpriteBatchNode.d sprite_nodes/CCSpriteBatchNode.o: \ - ../sprite_nodes/CCSpriteBatchNode.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/effects/CCGrid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCCamera.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDrawingPrimitives.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrame.d b/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrame.d deleted file mode 100644 index d5dbb45369..0000000000 --- a/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrame.d +++ /dev/null @@ -1,101 +0,0 @@ -sprite_nodes/CCSpriteFrame.d sprite_nodes/CCSpriteFrame.o: \ - ../sprite_nodes/CCSpriteFrame.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrameCache.d b/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrameCache.d deleted file mode 100644 index e33d26165b..0000000000 --- a/cocos2dx/AndroidRelease/sprite_nodes/CCSpriteFrameCache.d +++ /dev/null @@ -1,140 +0,0 @@ -sprite_nodes/CCSpriteFrameCache.d sprite_nodes/CCSpriteFrameCache.o: \ - ../sprite_nodes/CCSpriteFrameCache.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/cocoa/CCNS.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/cocoa/CCNS.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrameCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteFrame.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/TransformUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: diff --git a/cocos2dx/AndroidRelease/support/CCArray.d b/cocos2dx/AndroidRelease/support/CCArray.d deleted file mode 100644 index fe80a9267c..0000000000 --- a/cocos2dx/AndroidRelease/support/CCArray.d +++ /dev/null @@ -1,79 +0,0 @@ -support/CCArray.d support/CCArray.o: ../support/CCArray.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/support/CCPointExtension.d b/cocos2dx/AndroidRelease/support/CCPointExtension.d deleted file mode 100644 index bfc1aa7914..0000000000 --- a/cocos2dx/AndroidRelease/support/CCPointExtension.d +++ /dev/null @@ -1,74 +0,0 @@ -support/CCPointExtension.d support/CCPointExtension.o: \ - ../support/CCPointExtension.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/support/CCProfiling.d b/cocos2dx/AndroidRelease/support/CCProfiling.d deleted file mode 100644 index 1847592f61..0000000000 --- a/cocos2dx/AndroidRelease/support/CCProfiling.d +++ /dev/null @@ -1,10 +0,0 @@ -support/CCProfiling.d support/CCProfiling.o: ../support/CCProfiling.cpp \ - ../support/CCProfiling.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../support/CCProfiling.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/support/CCUserDefault.d b/cocos2dx/AndroidRelease/support/CCUserDefault.d deleted file mode 100644 index c6b7643068..0000000000 --- a/cocos2dx/AndroidRelease/support/CCUserDefault.d +++ /dev/null @@ -1,146 +0,0 @@ -support/CCUserDefault.d support/CCUserDefault.o: \ - ../support/CCUserDefault.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCUserDefault.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/parser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlversion.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlexports.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/tree.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlstring.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlregexp.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/dict.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/hash.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/valid.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlerror.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/list.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlautomata.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/entities.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/encoding.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlIO.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/globals.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xlink.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/SAX2.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/xmlmemory.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2/libxml/threads.h: diff --git a/cocos2dx/AndroidRelease/support/TransformUtils.d b/cocos2dx/AndroidRelease/support/TransformUtils.d deleted file mode 100644 index 3331f5d5ed..0000000000 --- a/cocos2dx/AndroidRelease/support/TransformUtils.d +++ /dev/null @@ -1,49 +0,0 @@ -support/TransformUtils.d support/TransformUtils.o: \ - ../support/TransformUtils.cpp ../support/TransformUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h - -../support/TransformUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: diff --git a/cocos2dx/AndroidRelease/support/base64.d b/cocos2dx/AndroidRelease/support/base64.d deleted file mode 100644 index e8d0a13c78..0000000000 --- a/cocos2dx/AndroidRelease/support/base64.d +++ /dev/null @@ -1,4 +0,0 @@ -support/base64.d support/base64.o: ../support/base64.cpp \ - ../support/base64.h - -../support/base64.h: diff --git a/cocos2dx/AndroidRelease/support/ccUtils.d b/cocos2dx/AndroidRelease/support/ccUtils.d deleted file mode 100644 index ff1c424af7..0000000000 --- a/cocos2dx/AndroidRelease/support/ccUtils.d +++ /dev/null @@ -1,4 +0,0 @@ -support/ccUtils.d support/ccUtils.o: ../support/ccUtils.cpp \ - ../support/ccUtils.h - -../support/ccUtils.h: diff --git a/cocos2dx/AndroidRelease/support/image_support/TGAlib.d b/cocos2dx/AndroidRelease/support/image_support/TGAlib.d deleted file mode 100644 index 8fb930a570..0000000000 --- a/cocos2dx/AndroidRelease/support/image_support/TGAlib.d +++ /dev/null @@ -1,79 +0,0 @@ -support/image_support/TGAlib.d support/image_support/TGAlib.o: \ - ../support/image_support/TGAlib.cpp ../support/image_support/TGAlib.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h - -../support/image_support/TGAlib.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: diff --git a/cocos2dx/AndroidRelease/support/zip_support/ZipUtils.d b/cocos2dx/AndroidRelease/support/zip_support/ZipUtils.d deleted file mode 100644 index 0ca3161f19..0000000000 --- a/cocos2dx/AndroidRelease/support/zip_support/ZipUtils.d +++ /dev/null @@ -1,82 +0,0 @@ -support/zip_support/ZipUtils.d support/zip_support/ZipUtils.o: \ - ../support/zip_support/ZipUtils.cpp ../support/zip_support/ZipUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h - -../support/zip_support/ZipUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: diff --git a/cocos2dx/AndroidRelease/support/zip_support/ioapi.d b/cocos2dx/AndroidRelease/support/zip_support/ioapi.d deleted file mode 100644 index 865d39ce8d..0000000000 --- a/cocos2dx/AndroidRelease/support/zip_support/ioapi.d +++ /dev/null @@ -1,7 +0,0 @@ -support/zip_support/ioapi.d support/zip_support/ioapi.o: \ - ../support/zip_support/ioapi.cpp ../support/zip_support/ioapi.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../support/zip_support/ioapi.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/support/zip_support/unzip.d b/cocos2dx/AndroidRelease/support/zip_support/unzip.d deleted file mode 100644 index 055c8ef71b..0000000000 --- a/cocos2dx/AndroidRelease/support/zip_support/unzip.d +++ /dev/null @@ -1,10 +0,0 @@ -support/zip_support/unzip.d support/zip_support/unzip.o: \ - ../support/zip_support/unzip.cpp ../support/zip_support/unzip.h \ - ../support/zip_support/ioapi.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -../support/zip_support/unzip.h: - -../support/zip_support/ioapi.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/text_input_node/CCIMEDispatcher.d b/cocos2dx/AndroidRelease/text_input_node/CCIMEDispatcher.d deleted file mode 100644 index 04cc4b1c57..0000000000 --- a/cocos2dx/AndroidRelease/text_input_node/CCIMEDispatcher.d +++ /dev/null @@ -1,26 +0,0 @@ -text_input_node/CCIMEDispatcher.d text_input_node/CCIMEDispatcher.o: \ - ../text_input_node/CCIMEDispatcher.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: diff --git a/cocos2dx/AndroidRelease/text_input_node/CCTextFieldTTF.d b/cocos2dx/AndroidRelease/text_input_node/CCTextFieldTTF.d deleted file mode 100644 index baddf4e4f2..0000000000 --- a/cocos2dx/AndroidRelease/text_input_node/CCTextFieldTTF.d +++ /dev/null @@ -1,131 +0,0 @@ -text_input_node/CCTextFieldTTF.d text_input_node/CCTextFieldTTF.o: \ - ../text_input_node/CCTextFieldTTF.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextFieldTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCLabelTTF.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCIMEDelegate.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: diff --git a/cocos2dx/AndroidRelease/textures/CCTexture2D.d b/cocos2dx/AndroidRelease/textures/CCTexture2D.d deleted file mode 100644 index c5b9616ffa..0000000000 --- a/cocos2dx/AndroidRelease/textures/CCTexture2D.d +++ /dev/null @@ -1,110 +0,0 @@ -textures/CCTexture2D.d textures/CCTexture2D.o: \ - ../textures/CCTexture2D.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/textures/CCTextureAtlas.d b/cocos2dx/AndroidRelease/textures/CCTextureAtlas.d deleted file mode 100644 index efe1dfe84b..0000000000 --- a/cocos2dx/AndroidRelease/textures/CCTextureAtlas.d +++ /dev/null @@ -1,92 +0,0 @@ -textures/CCTextureAtlas.d textures/CCTextureAtlas.o: \ - ../textures/CCTextureAtlas.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/textures/CCTextureCache.d b/cocos2dx/AndroidRelease/textures/CCTextureCache.d deleted file mode 100644 index 6ffa2a8219..0000000000 --- a/cocos2dx/AndroidRelease/textures/CCTextureCache.d +++ /dev/null @@ -1,110 +0,0 @@ -textures/CCTextureCache.d textures/CCTextureCache.o: \ - ../textures/CCTextureCache.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: diff --git a/cocos2dx/AndroidRelease/textures/CCTexturePVR.d b/cocos2dx/AndroidRelease/textures/CCTexturePVR.d deleted file mode 100644 index 0417f7990e..0000000000 --- a/cocos2dx/AndroidRelease/textures/CCTexturePVR.d +++ /dev/null @@ -1,104 +0,0 @@ -textures/CCTexturePVR.d textures/CCTexturePVR.o: \ - ../textures/CCTexturePVR.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexturePVR.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCData.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/CCConfiguration.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/ccUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCParallaxNode.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCParallaxNode.d deleted file mode 100644 index 30927ff830..0000000000 --- a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCParallaxNode.d +++ /dev/null @@ -1,99 +0,0 @@ -tileMap_parallax_nodes/CCParallaxNode.d \ - tileMap_parallax_nodes/CCParallaxNode.o: \ - ../tileMap_parallax_nodes/CCParallaxNode.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCParallaxNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXLayer.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXLayer.d deleted file mode 100644 index 10f9be4fb5..0000000000 --- a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXLayer.d +++ /dev/null @@ -1,143 +0,0 @@ -tileMap_parallax_nodes/CCTMXLayer.d tileMap_parallax_nodes/CCTMXLayer.o: \ - ../tileMap_parallax_nodes/CCTMXLayer.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureCache.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCImage.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXObjectGroup.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXObjectGroup.d deleted file mode 100644 index 7b62478c80..0000000000 --- a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXObjectGroup.d +++ /dev/null @@ -1,84 +0,0 @@ -tileMap_parallax_nodes/CCTMXObjectGroup.d \ - tileMap_parallax_nodes/CCTMXObjectGroup.o: \ - ../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXTiledMap.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXTiledMap.d deleted file mode 100644 index bab28656ef..0000000000 --- a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXTiledMap.d +++ /dev/null @@ -1,138 +0,0 @@ -tileMap_parallax_nodes/CCTMXTiledMap.d \ - tileMap_parallax_nodes/CCTMXTiledMap.o: \ - ../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXLayer.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSpriteBatchNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSprite.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXXMLParser.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXXMLParser.d deleted file mode 100644 index c47fff7a9d..0000000000 --- a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTMXXMLParser.d +++ /dev/null @@ -1,135 +0,0 @@ -tileMap_parallax_nodes/CCTMXXMLParser.d \ - tileMap_parallax_nodes/CCTMXXMLParser.o: \ - ../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXXMLParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCSAXParser.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXTiledMap.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTMXObjectGroup.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCString.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/zip_support/ZipUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCPointExtension.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/base64.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCThread.h: diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTileMapAtlas.d b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTileMapAtlas.d deleted file mode 100644 index 9035448b51..0000000000 --- a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/CCTileMapAtlas.d +++ /dev/null @@ -1,117 +0,0 @@ -tileMap_parallax_nodes/CCTileMapAtlas.d \ - tileMap_parallax_nodes/CCTileMapAtlas.o: \ - ../tileMap_parallax_nodes/CCTileMapAtlas.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/image_support/TGAlib.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTileMapAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAtlasNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCProtocols.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCFileUtils.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableDictionary.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTextureAtlas.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/image_support/TGAlib.h: diff --git a/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchDispatcher.d b/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchDispatcher.d deleted file mode 100644 index acff62c5a9..0000000000 --- a/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchDispatcher.d +++ /dev/null @@ -1,125 +0,0 @@ -touch_dispatcher/CCTouchDispatcher.d touch_dispatcher/CCTouchDispatcher.o: \ - ../touch_dispatcher/CCTouchDispatcher.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTexture2D.h: diff --git a/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchHandler.d b/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchHandler.d deleted file mode 100644 index 837b1e5440..0000000000 --- a/cocos2dx/AndroidRelease/touch_dispatcher/CCTouchHandler.d +++ /dev/null @@ -1,110 +0,0 @@ -touch_dispatcher/CCTouchHandler.d touch_dispatcher/CCTouchHandler.o: \ - ../touch_dispatcher/CCTouchHandler.cpp \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h \ - /home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchHandler.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDelegateProtocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCScriptSupport.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouch.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCSet.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCNode.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCStdC.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCDirector.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCPlatformMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccTypes.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCGL.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCEGLView_platform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/CCPlatformConfig.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/../platform/android/CCEGLView_android.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCGeometry.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/platform/CCCommon.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCMutableArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCEGLView.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCAffineTransform.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/support/data_support/ccCArray.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCObject.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/ccMacros.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/selector_protocol.h: - -/home/laschweinski/git/cocos2d-x/cocos2dx/include/CCTouchDispatcher.h: From c977f3e07c213b9b03b0d75a0c0b36ad530f31bc Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Sun, 28 Aug 2011 16:44:20 +0800 Subject: [PATCH 20/31] commit debug and release makefile --- CocosDenshion/AndroidDebug/Linux/subdir.mk | 27 + .../AndroidDebug/android/jni/subdir.mk | 24 + CocosDenshion/AndroidDebug/android/subdir.mk | 24 + .../libCocosDenshion.so.REMOVED.git-id | 1 + CocosDenshion/AndroidDebug/makefile | 66 + CocosDenshion/AndroidDebug/objects.mk | 8 + CocosDenshion/AndroidDebug/sources.mk | 28 + CocosDenshion/AndroidRelease/Linux/subdir.mk | 27 + .../AndroidRelease/android/jni/subdir.mk | 24 + .../AndroidRelease/android/subdir.mk | 24 + .../libCocosDenshion.so.REMOVED.git-id | 1 + CocosDenshion/AndroidRelease/makefile | 66 + CocosDenshion/AndroidRelease/objects.mk | 8 + CocosDenshion/AndroidRelease/sources.mk | 28 + HelloWorld/AndroidDebug/Classes/subdir.mk | 27 + .../android/jni/helloworld/subdir.mk | 24 + .../libHelloWorld.so.REMOVED.git-id | 1 + HelloWorld/AndroidDebug/makefile | 66 + HelloWorld/AndroidDebug/objects.mk | 8 + HelloWorld/AndroidDebug/sources.mk | 28 + HelloWorld/AndroidRelease/Classes/subdir.mk | 27 + .../android/jni/helloworld/subdir.mk | 24 + .../libHelloWorld.so.REMOVED.git-id | 1 + HelloWorld/AndroidRelease/makefile | 66 + HelloWorld/AndroidRelease/objects.mk | 8 + HelloWorld/AndroidRelease/sources.mk | 28 + HelloWorld/android/assets | 1 + chipmunk/CMakeCache.txt | 305 +++ chipmunk/CMakeFiles/CMakeCCompiler.cmake | 44 + chipmunk/CMakeFiles/CMakeCXXCompiler.cmake | 45 + .../CMakeDetermineCompilerABI_C.bin | Bin 0 -> 7173 bytes .../CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 7307 bytes .../CMakeDirectoryInformation.cmake | 21 + chipmunk/CMakeFiles/CMakeSystem.cmake | 15 + .../CMakeFiles/CompilerIdC/CMakeCCompilerId.c | 217 ++ .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 203 ++ chipmunk/CMakeFiles/Makefile.cmake | 46 + chipmunk/CMakeFiles/TargetDirectories.txt | 2 + chipmunk/CMakeFiles/cmake.check_cache | 1 + chipmunk/CMakeFiles/progress.marks | 1 + chipmunk/CMakeLists.txt | 27 + chipmunk/Makefile | 195 ++ chipmunk/cmake_install.cmake | 50 + .../CMakeDirectoryInformation.cmake | 22 + .../CMakeFiles/chipmunk.dir/C.includecache | 348 +++ .../CMakeFiles/chipmunk.dir/DependInfo.cmake | 44 + .../src/CMakeFiles/chipmunk.dir/build.make | 781 ++++++ .../CMakeFiles/chipmunk.dir/cmake_clean.cmake | 36 + .../CMakeFiles/chipmunk.dir/depend.internal | 720 ++++++ .../src/CMakeFiles/chipmunk.dir/depend.make | 720 ++++++ .../src/CMakeFiles/chipmunk.dir/flags.make | 8 + chipmunk/src/CMakeFiles/chipmunk.dir/link.txt | 1 + .../src/CMakeFiles/chipmunk.dir/progress.make | 27 + .../chipmunk_static.dir/C.includecache | 348 +++ .../chipmunk_static.dir/DependInfo.cmake | 38 + .../CMakeFiles/chipmunk_static.dir/build.make | 779 ++++++ .../chipmunk_static.dir/cmake_clean.cmake | 35 + .../cmake_clean_target.cmake | 3 + .../chipmunk_static.dir/depend.internal | 720 ++++++ .../chipmunk_static.dir/depend.make | 720 ++++++ .../CMakeFiles/chipmunk_static.dir/flags.make | 8 + .../CMakeFiles/chipmunk_static.dir/link.txt | 2 + .../chipmunk_static.dir/progress.make | 27 + chipmunk/src/CMakeFiles/progress.marks | 1 + chipmunk/src/Makefile | 977 ++++++++ .../libcocos2dx-base.REMOVED.git-id | 1 - .../third_party/linux/curl/Makefile.in | 560 +++++ .../platform/third_party/linux/curl/curl.h | 2174 +++++++++++++++++ .../third_party/linux/curl/curlbuild.h | 191 ++ .../third_party/linux/curl/curlbuild.h.in | 190 ++ .../third_party/linux/curl/curlrules.h | 261 ++ .../platform/third_party/linux/curl/curlver.h | 69 + .../platform/third_party/linux/curl/easy.h | 102 + .../platform/third_party/linux/curl/mprintf.h | 81 + .../platform/third_party/linux/curl/multi.h | 345 +++ .../platform/third_party/linux/curl/stamp-h3 | 1 + .../third_party/linux/curl/stdcheaders.h | 33 + .../third_party/linux/curl/typecheck-gcc.h | 590 +++++ .../linux/libraries/libcurl.a.REMOVED.git-id | 1 + 79 files changed, 12800 insertions(+), 1 deletion(-) create mode 100644 CocosDenshion/AndroidDebug/Linux/subdir.mk create mode 100644 CocosDenshion/AndroidDebug/android/jni/subdir.mk create mode 100644 CocosDenshion/AndroidDebug/android/subdir.mk create mode 100644 CocosDenshion/AndroidDebug/libCocosDenshion.so.REMOVED.git-id create mode 100644 CocosDenshion/AndroidDebug/makefile create mode 100644 CocosDenshion/AndroidDebug/objects.mk create mode 100644 CocosDenshion/AndroidDebug/sources.mk create mode 100644 CocosDenshion/AndroidRelease/Linux/subdir.mk create mode 100644 CocosDenshion/AndroidRelease/android/jni/subdir.mk create mode 100644 CocosDenshion/AndroidRelease/android/subdir.mk create mode 100644 CocosDenshion/AndroidRelease/libCocosDenshion.so.REMOVED.git-id create mode 100644 CocosDenshion/AndroidRelease/makefile create mode 100644 CocosDenshion/AndroidRelease/objects.mk create mode 100644 CocosDenshion/AndroidRelease/sources.mk create mode 100644 HelloWorld/AndroidDebug/Classes/subdir.mk create mode 100644 HelloWorld/AndroidDebug/android/jni/helloworld/subdir.mk create mode 100644 HelloWorld/AndroidDebug/libHelloWorld.so.REMOVED.git-id create mode 100644 HelloWorld/AndroidDebug/makefile create mode 100644 HelloWorld/AndroidDebug/objects.mk create mode 100644 HelloWorld/AndroidDebug/sources.mk create mode 100644 HelloWorld/AndroidRelease/Classes/subdir.mk create mode 100644 HelloWorld/AndroidRelease/android/jni/helloworld/subdir.mk create mode 100644 HelloWorld/AndroidRelease/libHelloWorld.so.REMOVED.git-id create mode 100644 HelloWorld/AndroidRelease/makefile create mode 100644 HelloWorld/AndroidRelease/objects.mk create mode 100644 HelloWorld/AndroidRelease/sources.mk create mode 120000 HelloWorld/android/assets create mode 100644 chipmunk/CMakeCache.txt create mode 100644 chipmunk/CMakeFiles/CMakeCCompiler.cmake create mode 100644 chipmunk/CMakeFiles/CMakeCXXCompiler.cmake create mode 100755 chipmunk/CMakeFiles/CMakeDetermineCompilerABI_C.bin create mode 100755 chipmunk/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin create mode 100644 chipmunk/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 chipmunk/CMakeFiles/CMakeSystem.cmake create mode 100644 chipmunk/CMakeFiles/CompilerIdC/CMakeCCompilerId.c create mode 100644 chipmunk/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100644 chipmunk/CMakeFiles/Makefile.cmake create mode 100644 chipmunk/CMakeFiles/TargetDirectories.txt create mode 100644 chipmunk/CMakeFiles/cmake.check_cache create mode 100644 chipmunk/CMakeFiles/progress.marks create mode 100644 chipmunk/CMakeLists.txt create mode 100644 chipmunk/Makefile create mode 100644 chipmunk/cmake_install.cmake create mode 100644 chipmunk/src/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 chipmunk/src/CMakeFiles/chipmunk.dir/C.includecache create mode 100644 chipmunk/src/CMakeFiles/chipmunk.dir/DependInfo.cmake create mode 100644 chipmunk/src/CMakeFiles/chipmunk.dir/build.make create mode 100644 chipmunk/src/CMakeFiles/chipmunk.dir/cmake_clean.cmake create mode 100644 chipmunk/src/CMakeFiles/chipmunk.dir/depend.internal create mode 100644 chipmunk/src/CMakeFiles/chipmunk.dir/depend.make create mode 100644 chipmunk/src/CMakeFiles/chipmunk.dir/flags.make create mode 100644 chipmunk/src/CMakeFiles/chipmunk.dir/link.txt create mode 100644 chipmunk/src/CMakeFiles/chipmunk.dir/progress.make create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/C.includecache create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/DependInfo.cmake create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/build.make create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/cmake_clean.cmake create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/cmake_clean_target.cmake create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/depend.internal create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/depend.make create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/flags.make create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/link.txt create mode 100644 chipmunk/src/CMakeFiles/chipmunk_static.dir/progress.make create mode 100644 chipmunk/src/CMakeFiles/progress.marks create mode 100644 chipmunk/src/Makefile delete mode 100644 cocos2dx/AndroidRelease/libcocos2dx-base.REMOVED.git-id create mode 100644 cocos2dx/platform/third_party/linux/curl/Makefile.in create mode 100644 cocos2dx/platform/third_party/linux/curl/curl.h create mode 100644 cocos2dx/platform/third_party/linux/curl/curlbuild.h create mode 100644 cocos2dx/platform/third_party/linux/curl/curlbuild.h.in create mode 100644 cocos2dx/platform/third_party/linux/curl/curlrules.h create mode 100644 cocos2dx/platform/third_party/linux/curl/curlver.h create mode 100644 cocos2dx/platform/third_party/linux/curl/easy.h create mode 100644 cocos2dx/platform/third_party/linux/curl/mprintf.h create mode 100644 cocos2dx/platform/third_party/linux/curl/multi.h create mode 100644 cocos2dx/platform/third_party/linux/curl/stamp-h3 create mode 100644 cocos2dx/platform/third_party/linux/curl/stdcheaders.h create mode 100644 cocos2dx/platform/third_party/linux/curl/typecheck-gcc.h create mode 100644 cocos2dx/platform/third_party/linux/libraries/libcurl.a.REMOVED.git-id diff --git a/CocosDenshion/AndroidDebug/Linux/subdir.mk b/CocosDenshion/AndroidDebug/Linux/subdir.mk new file mode 100644 index 0000000000..8ea2a167e7 --- /dev/null +++ b/CocosDenshion/AndroidDebug/Linux/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Linux/FmodAudioPlayer.cpp \ +../Linux/SimpleAudioEngine.cpp + +OBJS += \ +./Linux/FmodAudioPlayer.o \ +./Linux/SimpleAudioEngine.o + +CPP_DEPS += \ +./Linux/FmodAudioPlayer.d \ +./Linux/SimpleAudioEngine.d + + +# Each subdirectory must supply rules for building sources it contributes +Linux/%.o: ../Linux/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/CocosDenshion/AndroidDebug/android/jni/subdir.mk b/CocosDenshion/AndroidDebug/android/jni/subdir.mk new file mode 100644 index 0000000000..ecbf9b4252 --- /dev/null +++ b/CocosDenshion/AndroidDebug/android/jni/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../android/jni/SimpleAudioEngineJni.cpp + +OBJS += \ +./android/jni/SimpleAudioEngineJni.o + +CPP_DEPS += \ +./android/jni/SimpleAudioEngineJni.d + + +# Each subdirectory must supply rules for building sources it contributes +android/jni/%.o: ../android/jni/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/CocosDenshion/AndroidDebug/android/subdir.mk b/CocosDenshion/AndroidDebug/android/subdir.mk new file mode 100644 index 0000000000..a3545fc51f --- /dev/null +++ b/CocosDenshion/AndroidDebug/android/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../android/SimpleAudioEngine.cpp + +OBJS += \ +./android/SimpleAudioEngine.o + +CPP_DEPS += \ +./android/SimpleAudioEngine.d + + +# Each subdirectory must supply rules for building sources it contributes +android/%.o: ../android/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/CocosDenshion/AndroidDebug/libCocosDenshion.so.REMOVED.git-id b/CocosDenshion/AndroidDebug/libCocosDenshion.so.REMOVED.git-id new file mode 100644 index 0000000000..d9aca5d6f6 --- /dev/null +++ b/CocosDenshion/AndroidDebug/libCocosDenshion.so.REMOVED.git-id @@ -0,0 +1 @@ +44df184b33ff13c8b7f673ff651334bca3a50fdd \ No newline at end of file diff --git a/CocosDenshion/AndroidDebug/makefile b/CocosDenshion/AndroidDebug/makefile new file mode 100644 index 0000000000..a2265e0491 --- /dev/null +++ b/CocosDenshion/AndroidDebug/makefile @@ -0,0 +1,66 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include android/jni/subdir.mk +-include android/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: libCocosDenshion.so + +# Tool invocations +libCocosDenshion.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + arm-linux-androideabi-g++ -shared -o "libCocosDenshion.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libCocosDenshion.so + -@echo ' ' + +post-build: + -@echo 'move output libs to a specific libs' + -sh ../../post.sh CocosDenshion cocosdenshion + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/CocosDenshion/AndroidDebug/objects.mk b/CocosDenshion/AndroidDebug/objects.mk new file mode 100644 index 0000000000..b143531988 --- /dev/null +++ b/CocosDenshion/AndroidDebug/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := -llog + diff --git a/CocosDenshion/AndroidDebug/sources.mk b/CocosDenshion/AndroidDebug/sources.mk new file mode 100644 index 0000000000..5b56f77175 --- /dev/null +++ b/CocosDenshion/AndroidDebug/sources.mk @@ -0,0 +1,28 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +android/jni \ +android \ + diff --git a/CocosDenshion/AndroidRelease/Linux/subdir.mk b/CocosDenshion/AndroidRelease/Linux/subdir.mk new file mode 100644 index 0000000000..c71c1b0fd3 --- /dev/null +++ b/CocosDenshion/AndroidRelease/Linux/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Linux/FmodAudioPlayer.cpp \ +../Linux/SimpleAudioEngine.cpp + +OBJS += \ +./Linux/FmodAudioPlayer.o \ +./Linux/SimpleAudioEngine.o + +CPP_DEPS += \ +./Linux/FmodAudioPlayer.d \ +./Linux/SimpleAudioEngine.d + + +# Each subdirectory must supply rules for building sources it contributes +Linux/%.o: ../Linux/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/CocosDenshion/AndroidRelease/android/jni/subdir.mk b/CocosDenshion/AndroidRelease/android/jni/subdir.mk new file mode 100644 index 0000000000..862c7e4465 --- /dev/null +++ b/CocosDenshion/AndroidRelease/android/jni/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../android/jni/SimpleAudioEngineJni.cpp + +OBJS += \ +./android/jni/SimpleAudioEngineJni.o + +CPP_DEPS += \ +./android/jni/SimpleAudioEngineJni.d + + +# Each subdirectory must supply rules for building sources it contributes +android/jni/%.o: ../android/jni/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/CocosDenshion/AndroidRelease/android/subdir.mk b/CocosDenshion/AndroidRelease/android/subdir.mk new file mode 100644 index 0000000000..4e7778a78b --- /dev/null +++ b/CocosDenshion/AndroidRelease/android/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../android/SimpleAudioEngine.cpp + +OBJS += \ +./android/SimpleAudioEngine.o + +CPP_DEPS += \ +./android/SimpleAudioEngine.d + + +# Each subdirectory must supply rules for building sources it contributes +android/%.o: ../android/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/CocosDenshion/AndroidRelease/libCocosDenshion.so.REMOVED.git-id b/CocosDenshion/AndroidRelease/libCocosDenshion.so.REMOVED.git-id new file mode 100644 index 0000000000..e1cefd40e3 --- /dev/null +++ b/CocosDenshion/AndroidRelease/libCocosDenshion.so.REMOVED.git-id @@ -0,0 +1 @@ +273438a6408c82cbe725fd85c3519c44833e65db \ No newline at end of file diff --git a/CocosDenshion/AndroidRelease/makefile b/CocosDenshion/AndroidRelease/makefile new file mode 100644 index 0000000000..a2265e0491 --- /dev/null +++ b/CocosDenshion/AndroidRelease/makefile @@ -0,0 +1,66 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include android/jni/subdir.mk +-include android/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: libCocosDenshion.so + +# Tool invocations +libCocosDenshion.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + arm-linux-androideabi-g++ -shared -o "libCocosDenshion.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libCocosDenshion.so + -@echo ' ' + +post-build: + -@echo 'move output libs to a specific libs' + -sh ../../post.sh CocosDenshion cocosdenshion + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/CocosDenshion/AndroidRelease/objects.mk b/CocosDenshion/AndroidRelease/objects.mk new file mode 100644 index 0000000000..b143531988 --- /dev/null +++ b/CocosDenshion/AndroidRelease/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := -llog + diff --git a/CocosDenshion/AndroidRelease/sources.mk b/CocosDenshion/AndroidRelease/sources.mk new file mode 100644 index 0000000000..5b56f77175 --- /dev/null +++ b/CocosDenshion/AndroidRelease/sources.mk @@ -0,0 +1,28 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +android/jni \ +android \ + diff --git a/HelloWorld/AndroidDebug/Classes/subdir.mk b/HelloWorld/AndroidDebug/Classes/subdir.mk new file mode 100644 index 0000000000..33d0912205 --- /dev/null +++ b/HelloWorld/AndroidDebug/Classes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Classes/AppDelegate.cpp \ +../Classes/HelloWorldScene.cpp + +OBJS += \ +./Classes/AppDelegate.o \ +./Classes/HelloWorldScene.o + +CPP_DEPS += \ +./Classes/AppDelegate.d \ +./Classes/HelloWorldScene.d + + +# Each subdirectory must supply rules for building sources it contributes +Classes/%.o: ../Classes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloWorld/AndroidDebug/android/jni/helloworld/subdir.mk b/HelloWorld/AndroidDebug/android/jni/helloworld/subdir.mk new file mode 100644 index 0000000000..1f93056647 --- /dev/null +++ b/HelloWorld/AndroidDebug/android/jni/helloworld/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../android/jni/helloworld/main.cpp + +OBJS += \ +./android/jni/helloworld/main.o + +CPP_DEPS += \ +./android/jni/helloworld/main.d + + +# Each subdirectory must supply rules for building sources it contributes +android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloWorld/AndroidDebug/libHelloWorld.so.REMOVED.git-id b/HelloWorld/AndroidDebug/libHelloWorld.so.REMOVED.git-id new file mode 100644 index 0000000000..d651da5bee --- /dev/null +++ b/HelloWorld/AndroidDebug/libHelloWorld.so.REMOVED.git-id @@ -0,0 +1 @@ +fa728d61c44d85bfd750298eabac3bccfd3b4229 \ No newline at end of file diff --git a/HelloWorld/AndroidDebug/makefile b/HelloWorld/AndroidDebug/makefile new file mode 100644 index 0000000000..ffa7589f5f --- /dev/null +++ b/HelloWorld/AndroidDebug/makefile @@ -0,0 +1,66 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include android/jni/helloworld/subdir.mk +-include Classes/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: libHelloWorld.so + +# Tool invocations +libHelloWorld.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/lib/android/Debug/" -shared -o "libHelloWorld.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libHelloWorld.so + -@echo ' ' + +post-build: + -@echo 'move required lib into android/libs automatically' + -sh ../postCompiled.sh AndroidDebug HelloWorld /home/laschweinski/git/cocos2d-x + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/HelloWorld/AndroidDebug/objects.mk b/HelloWorld/AndroidDebug/objects.mk new file mode 100644 index 0000000000..028c82493e --- /dev/null +++ b/HelloWorld/AndroidDebug/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := -lcocos2d -lcocosdenshion + diff --git a/HelloWorld/AndroidDebug/sources.mk b/HelloWorld/AndroidDebug/sources.mk new file mode 100644 index 0000000000..74691bfe18 --- /dev/null +++ b/HelloWorld/AndroidDebug/sources.mk @@ -0,0 +1,28 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +android/jni/helloworld \ +Classes \ + diff --git a/HelloWorld/AndroidRelease/Classes/subdir.mk b/HelloWorld/AndroidRelease/Classes/subdir.mk new file mode 100644 index 0000000000..33d0912205 --- /dev/null +++ b/HelloWorld/AndroidRelease/Classes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Classes/AppDelegate.cpp \ +../Classes/HelloWorldScene.cpp + +OBJS += \ +./Classes/AppDelegate.o \ +./Classes/HelloWorldScene.o + +CPP_DEPS += \ +./Classes/AppDelegate.d \ +./Classes/HelloWorldScene.d + + +# Each subdirectory must supply rules for building sources it contributes +Classes/%.o: ../Classes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloWorld/AndroidRelease/android/jni/helloworld/subdir.mk b/HelloWorld/AndroidRelease/android/jni/helloworld/subdir.mk new file mode 100644 index 0000000000..1f93056647 --- /dev/null +++ b/HelloWorld/AndroidRelease/android/jni/helloworld/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../android/jni/helloworld/main.cpp + +OBJS += \ +./android/jni/helloworld/main.o + +CPP_DEPS += \ +./android/jni/helloworld/main.d + + +# Each subdirectory must supply rules for building sources it contributes +android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloWorld/AndroidRelease/libHelloWorld.so.REMOVED.git-id b/HelloWorld/AndroidRelease/libHelloWorld.so.REMOVED.git-id new file mode 100644 index 0000000000..46b071f9c2 --- /dev/null +++ b/HelloWorld/AndroidRelease/libHelloWorld.so.REMOVED.git-id @@ -0,0 +1 @@ +c01ad58a5b4aa55336caf36b46f29a2dd89cb100 \ No newline at end of file diff --git a/HelloWorld/AndroidRelease/makefile b/HelloWorld/AndroidRelease/makefile new file mode 100644 index 0000000000..68ddbd420a --- /dev/null +++ b/HelloWorld/AndroidRelease/makefile @@ -0,0 +1,66 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include android/jni/helloworld/subdir.mk +-include Classes/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: libHelloWorld.so + +# Tool invocations +libHelloWorld.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/lib/android/Release/" -shared -o "libHelloWorld.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libHelloWorld.so + -@echo ' ' + +post-build: + -@echo 'move required lib into android/libs automatically' + -sh ../postCompiled.sh AndroidRelease HelloWorld /home/laschweinski/git/cocos2d-x + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/HelloWorld/AndroidRelease/objects.mk b/HelloWorld/AndroidRelease/objects.mk new file mode 100644 index 0000000000..028c82493e --- /dev/null +++ b/HelloWorld/AndroidRelease/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := -lcocos2d -lcocosdenshion + diff --git a/HelloWorld/AndroidRelease/sources.mk b/HelloWorld/AndroidRelease/sources.mk new file mode 100644 index 0000000000..74691bfe18 --- /dev/null +++ b/HelloWorld/AndroidRelease/sources.mk @@ -0,0 +1,28 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +android/jni/helloworld \ +Classes \ + diff --git a/HelloWorld/android/assets b/HelloWorld/android/assets new file mode 120000 index 0000000000..2a212c0a9e --- /dev/null +++ b/HelloWorld/android/assets @@ -0,0 +1 @@ +/home/laschweinski/git/cocos2d-x/HelloWorld/AndroidDebug/../Resource \ No newline at end of file diff --git a/chipmunk/CMakeCache.txt b/chipmunk/CMakeCache.txt new file mode 100644 index 0000000000..2cfa1b587f --- /dev/null +++ b/chipmunk/CMakeCache.txt @@ -0,0 +1,305 @@ +# This is the CMakeCache file. +# For build in directory: /home/laschweinski/git/cocos2d-x/chipmunk +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Build the demo applications +BUILD_DEMOS:BOOL=ON + +//Build and install the Ruby extension +BUILD_RUBY_EXT:BOOL=OFF + +//Build and install the shared library +BUILD_SHARED:BOOL=ON + +//Build as static library +BUILD_STATIC:BOOL=ON + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler. +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release minsize builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds (/MD /Ob1 /Oi +// /Ot /Oy /Gs will produce slightly less optimized but smaller +// files). +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during Release with Debug Info builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g + +//C compiler. +CMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release minsize builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds (/MD /Ob1 /Oi +// /Ot /Oy /Gs will produce slightly less optimized but smaller +// files). +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during Release with Debug Info builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=chipmunk + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If true, cmake will use relative paths in makefiles and projects. +CMAKE_USE_RELATIVE_PATHS:BOOL=OFF + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Install the demo applications +INSTALL_DEMOS:BOOL=OFF + +//Install the static library +INSTALL_STATIC:BOOL=ON + +//Value Computed by CMake +chipmunk_BINARY_DIR:STATIC=/home/laschweinski/git/cocos2d-x/chipmunk + +//Dependencies for target +chipmunk_LIB_DEPENDS:STATIC= + +//Value Computed by CMake +chipmunk_SOURCE_DIR:STATIC=/home/laschweinski/git/cocos2d-x/chipmunk + +//Dependencies for target +chipmunk_static_LIB_DEPENDS:STATIC= + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_BUILD_TOOL +CMAKE_BUILD_TOOL-ADVANCED:INTERNAL=1 +//What is the target build tool cmake is generating for. +CMAKE_BUILD_TOOL:INTERNAL=/usr/bin/make +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/laschweinski/git/cocos2d-x/chipmunk +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=2 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=8 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_CXX_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_C_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Result of TRY_COMPILE +CMAKE_DETERMINE_CXX_ABI_COMPILED:INTERNAL=TRUE +//Result of TRY_COMPILE +CMAKE_DETERMINE_C_ABI_COMPILED:INTERNAL=TRUE +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/cmake-gui +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Start directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/laschweinski/git/cocos2d-x/chipmunk +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=2 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-2.8 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS +CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/chipmunk/CMakeFiles/CMakeCCompiler.cmake b/chipmunk/CMakeFiles/CMakeCCompiler.cmake new file mode 100644 index 0000000000..7b5998e26a --- /dev/null +++ b/chipmunk/CMakeFiles/CMakeCCompiler.cmake @@ -0,0 +1,44 @@ +SET(CMAKE_C_COMPILER "/usr/bin/gcc") +SET(CMAKE_C_COMPILER_ARG1 "") +SET(CMAKE_C_COMPILER_ID "GNU") +SET(CMAKE_C_PLATFORM_ID "Linux") + +SET(CMAKE_AR "/usr/bin/ar") +SET(CMAKE_RANLIB "/usr/bin/ranlib") +SET(CMAKE_LINKER "/usr/bin/ld") +SET(CMAKE_COMPILER_IS_GNUCC 1) +SET(CMAKE_C_COMPILER_LOADED 1) +SET(CMAKE_COMPILER_IS_MINGW ) +SET(CMAKE_COMPILER_IS_CYGWIN ) +IF(CMAKE_COMPILER_IS_CYGWIN) + SET(CYGWIN 1) + SET(UNIX 1) +ENDIF(CMAKE_COMPILER_IS_CYGWIN) + +SET(CMAKE_C_COMPILER_ENV_VAR "CC") + +IF(CMAKE_COMPILER_IS_MINGW) + SET(MINGW 1) +ENDIF(CMAKE_COMPILER_IS_MINGW) +SET(CMAKE_C_COMPILER_ID_RUN 1) +SET(CMAKE_C_SOURCE_FILE_EXTENSIONS c) +SET(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +SET(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +SET(CMAKE_C_SIZEOF_DATA_PTR "4") +SET(CMAKE_C_COMPILER_ABI "ELF") + +IF(CMAKE_C_SIZEOF_DATA_PTR) + SET(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +ENDIF(CMAKE_C_SIZEOF_DATA_PTR) + +IF(CMAKE_C_COMPILER_ABI) + SET(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +ENDIF(CMAKE_C_COMPILER_ABI) + +SET(CMAKE_C_HAS_ISYSROOT "") + + +SET(CMAKE_C_IMPLICIT_LINK_LIBRARIES "c") +SET(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/i486-linux-gnu/4.4.3;/usr/lib;/lib;/usr/lib/i486-linux-gnu") diff --git a/chipmunk/CMakeFiles/CMakeCXXCompiler.cmake b/chipmunk/CMakeFiles/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000..6d65d1cc97 --- /dev/null +++ b/chipmunk/CMakeFiles/CMakeCXXCompiler.cmake @@ -0,0 +1,45 @@ +SET(CMAKE_CXX_COMPILER "/usr/bin/c++") +SET(CMAKE_CXX_COMPILER_ARG1 "") +SET(CMAKE_CXX_COMPILER_ID "GNU") +SET(CMAKE_CXX_PLATFORM_ID "Linux") + +SET(CMAKE_AR "/usr/bin/ar") +SET(CMAKE_RANLIB "/usr/bin/ranlib") +SET(CMAKE_LINKER "/usr/bin/ld") +SET(CMAKE_COMPILER_IS_GNUCXX 1) +SET(CMAKE_CXX_COMPILER_LOADED 1) +SET(CMAKE_COMPILER_IS_MINGW ) +SET(CMAKE_COMPILER_IS_CYGWIN ) +IF(CMAKE_COMPILER_IS_CYGWIN) + SET(CYGWIN 1) + SET(UNIX 1) +ENDIF(CMAKE_COMPILER_IS_CYGWIN) + +SET(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +IF(CMAKE_COMPILER_IS_MINGW) + SET(MINGW 1) +ENDIF(CMAKE_COMPILER_IS_MINGW) +SET(CMAKE_CXX_COMPILER_ID_RUN 1) +SET(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;H;o;O;obj;OBJ;def;DEF;rc;RC) +SET(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm) +SET(CMAKE_CXX_LINKER_PREFERENCE 30) +SET(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +SET(CMAKE_CXX_SIZEOF_DATA_PTR "4") +SET(CMAKE_CXX_COMPILER_ABI "ELF") + +IF(CMAKE_CXX_SIZEOF_DATA_PTR) + SET(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +ENDIF(CMAKE_CXX_SIZEOF_DATA_PTR) + +IF(CMAKE_CXX_COMPILER_ABI) + SET(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +ENDIF(CMAKE_CXX_COMPILER_ABI) + +SET(CMAKE_CXX_HAS_ISYSROOT "") + + +SET(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;c") +SET(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/i486-linux-gnu/4.4.3;/usr/lib;/lib;/usr/lib/i486-linux-gnu") diff --git a/chipmunk/CMakeFiles/CMakeDetermineCompilerABI_C.bin b/chipmunk/CMakeFiles/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..7e0d0e90442a13c8351a159c4b2a5b5d0be3409e GIT binary patch literal 7173 zcmeHMZERG>6`lP6OmWN-oW>0<S~Vsms(3MAXhDsNy<UTfu@hq`!GhOa@3VJdz3cA2 zO>C43J8LH*#w|)CB}!X9)TH7EKT=gn-BLxQP9aFNa@w>)sT8FpNE=~NklYBhmS4}A z*)b0TP5a+t&E7e4&)k_ebLYL8>x1E@29L)hbn*(HAPNroOKKpimMBe)2#ON1QY;tC z#C%jySJMv;vTT4x^HAqU_E861GXOpEQebB4Xq#Ckwne@HgUoC%0!m-HScuYN{t{+C z8k8clU+TROLFj|fF^>Z?Q_nt_w}8I|eKXesGi%)wm+ctfZArIph2Gu&B$&)>&#^y} zOhg|^##SX0sa&s-O&e>J4nvdr&CNSdQsbme3{|!*hveK)|H6XOV?SB^Y@xsY`S#V( zg0t-G$%i=A_aZaNXNBamGA&d>wkNL)`5xp_WcI7)p5t?;k|J0D`31M4SmxN67AbMt zFUPCrjW)!RfH)F-ZV?vco_@c76LqYooqY>KfBE&L7oQ1*|2$E;@#RHpqJO=*t8jJV z)MJ;<eDM2AM=ySNSLMEguRimuk?Uon74t?*%m04#%AfwhN4X`rpCJehpHHVC3Xf_4 z$@zL3x#T!}2`L~d#Bs=q8GPM&o%Jr<2dw!)@V^I4e}{m*GSLJ1?sM=v$R)67Kwfa+ zLEs?pZb<T9f^^&83j99o!7Zfz`;eo9+J32M0Uk&D`ygrmJCFfjt|9I1gFFQc0gRb7 z&93fr%FNo4jBT32-1?N+YIP;Dwv`DbBiXE#6>!N8y5f3aHnxBnOQg(P){3DmRmHa5 zkwi))Qk`itn>b*lJIz>+ozawzY|iXVq!PmH>@nj{qdFF`BdVpF1BwkC&1SXEN}(T% zY_Ykiu`Xn;F{(LuBrkTv-T$~>JfaFby~cq=0&eXUr(|m(u3>-Ar$b=<7C`zb;gmZL zUEZFb@E1sH9~i4%CdBX$ryR!_`lCIsupG68_xST;wAs~ue#}{S1D2c>Q}|^YX9X?B zS^VT9G;>zaa-6zP#sR5dT77lzp}*xnzV>)qYn*Eo=fXd+GtTuboC9(4$StWjuKq`* zL*%}7q8w&VSD@E{E9Llo``_OD70-r?+2tc|(tiGo=clAN<wI0U`i6^{!r6H=;K{$^ zZ{IUEVm~BCe)CoGVLv}naiS93p)>ZqqpU+=;W>X5>zwiPV@D(>a4tMW<#4!U@tgg0 zx5aOr@r0)ozU;zNXfl(~c6NW?-nqR%mmL^8|0N7~qOx#s+HposSK#SK^89`H+}n<K z$g!(de>NNr9ICG>84j01_|e%Rf0gsnFUZQD^=z2Ve3*ZyvVE_)XKc8#3jG%6>jdBP z`5TVC^fXJINAg$v&iJqoRk=wu2{T;1=HJ9<3WqV2C$YYKPkG=sjm-@$8(q%bUR|?C zRYszTc6{via8l;d+ziakz}yVX&A{9Y%+0{u45%5v8AYD^v}7%ho;;uOp2agf?_4~a z^KNh$cgufHJL%xF>g@hn9%oh54+8V9#RDGiRXp4Btk1-A$|O!Wyw|awcS7Fh?ngce z`z#-a<h_Q6QQn&=am-2gqaI^Rb4=GDcLSsNe<$9Vb)#w6C@bE5ShqP8+8A89BbrOu zxnPY^W2{|OlapxO!wL&wWc#}9NEFh}C>htKL<)D39$}=?wq?}THLkKFT}9ND${EpI z0{7-bOc+G*NH#8vSYHbEl*DC3YM!z(*+e>Z3oxO}SV{6#p(kkzLtaJ<+v-JGUS5n$ zT3$p9D{gjXBHflSI_z{Niw>07*8xK?66sEKpo26T;>VEIR7>1!&?w#AZKZ5IPydU= z9Yp#I*H*?puuxn-ow#mH4<hr<OrDHUKoLY)C;ArCYGloe!`I^A(HC{nye+8U-I4a_ zlZV0Mom9sV$YZWY{tSLY9(^{5LJZ~Eyk^wVZ^@%C526r+O^yXZ+M@67M5aHJN8f)9 zKwfHqnaE|@i%h>Ik3PE_gQ-GU_se?b{mArlmg(#L-~~~3_X{WvATu699{0*|@aWLm z9-zc|NX_HkItc~GO&<5L<{d_vV`V+}_$U<BDC<NX)APuhR{*bY2OhaEx_FE$1hF_= z6P-8)rdN=)J-$;;VE~m<qkeS1M~gf@FXIyLg7>vM@P6jvO@cQGp0+`{F27OaaqVP` z4Ize^7lMoTOBauq)AGCU-g5DH39STA_XX8Vc?@L?N&1Y8-GMg_%=Kkr8;;`wGUtWk z<Ng2I9qf_I3%=&@ojM5~-={i}!~6lV<}vP5f(5wK^L_*#>)9`F-+{aEE<;ay)yPcb zJ*bNEmpW#?%V|rewcvfK0VFw0lw4b#-p9uxh=G3@6?_Nq8PHVvvfJJyF2GA%4YfT` zZ%ce1u~J2M)q6)_Wq|J&g;fuHk0{LEF&?}J6y}>oy%!YbimLsuuv$(1ZSoaon)_Ml zRV0)9R$&#D<o;BcZ=Rd+GN1hN;-WvJ=g!4=ir*}sjD+5dm-%EQQtcD+d~)XS&BcCD zn5&}vUSWP|;WzLfh1DCIeyp(aDE-a!6~E;4OQruJh5V)~%r80o2>zpRg~U2O=o45p zSMrGm<ofF>zqs!3tigTBIu9a%4?ybidGJM939QHGfyb`{e!MszUd+d1z%qIS=|O*t zQ!>WHl_ZWszTx7#{f7PXqZe@XKLD)f&jYXi0kFIO9|89l=a>Ee99SpX`yBuSPGyiD ztj8Z9xnIfgc<&b<LzWij%j2yO*MS)^Q~IT1n))IZUPMGOU^o5>@B!Vww@hpR*6Zc* z-Y4pS^?ESgyA9YKf87i0j=!eZzBoUO$L4@_3ZgJL3%>&Fju#&TcE@jDck$_MzXiU4 z@p3&F|9uZwkB{-|4}snB<xhdN{{%3f{{nW$x1Cw~`PkC#`12xQcl=p&WbCY+>+Cc- z5XTL*wX~W|joaH8SvKo$L0dyERV;0GCDYMJ(v&ADGm`5SI3@KYE!&D2U$0)XT2Nso zV!cFbg*<+lv0Qg|pYA8zTraz6Xsz8AHZ@{5x_q-2d2ExtgtkTYTcHs8N+hiej+Gd= zjAA3EC(O-FEp@d`W=liE_HdioR$JE;=99#-X)_*4#gdkOEZqgqjAkU0iS(H=a&5XQ zWQ-jR66?RQ-srMyv!}zf<GIv+Bibv>`X`%fw>5@@D=_}~(R6L{b7S~A?yiFHv*Y%g bHr<S^-xlL{4X7CKXEgu6M(XAN0u<#xoTYo= literal 0 HcmV?d00001 diff --git a/chipmunk/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin b/chipmunk/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..4f4e3ebde5b50ab53f30e787586c9ceee6b90496 GIT binary patch literal 7307 zcmeHMacon^89&<(Fs%upWF3sCwbZatAzldt+AyXjaRN;n2n~Uzr0{TTCpK~H%zmZ` zLn_pyg@$OXV=8JjRyH>E52R*mRjp&{Kw(8_o5lv)5R*Dqh7?9<LCY$%MtHy9oi98> zShfH2MW4U>-S^#h_wK%X@9xVBHFYaoE|<{c79K&=-(z^oAj@VbO_}hEsbZdZP!x;F ztS9e)4cLzc<VmPAz#ecTaN|zHOP&c#rViDTA%s9%^4Tdukl9`oD*bSQ5W@!zFPXmQ zf!QzhZV2ym@DB_xc@UUPJ^LU>VIM``<Z58D)~&f@hj*dBT`wD6auIZ7t$!MNz&l9$ zZ-Cx8J|Frbvps}(Bpz#dBpzN6k0ml)W;$suQaTJ>>Q}B_Cw=od=o613+j0z?JL;?c zb3V83)8`8gE<T?5WZ?Vl-9u-}xfJ(-NpdbA>4WuC!6de4KbSr-4eSHczg`=T&q>}q zz;uXvoQg5!d&gi6*`J;_`Vcb;#XkS8sb0f1ZHHl0Qpb9ZVawFOpMP=j)$M_rKMnbo zy>{=SmcL$Y8oWAm<f)6t&j0S>!E@hiD&F$K>)YS&yI$Zc`uN~K&wN_YUEBU1n%+iy zK23fU9@GGmxZ8m_Uq1x<-bAc{3dL;k8_42Od_8v>xX6JI18aLf?B4?Bet^LI7l=0? zn-DjAwi)oa1@buuejB*|CBwS`lJ>uXboze@I1D|)Lh9d#EF1Oj6TQH1LeDj0`|m+6 zhkpp*>0&YD{!x1X#9P`9hvv^`uq_pq)z*<rSZO<$vMozkPj0muB5kp>9Z3b^!E`#3 zrb$<q)fq{plZjwFW_Md#7t&3K@_<rXC}gFHN?9Mud#<gA+i)ylWzvx_yik?zs3RCl z=$cSEW3|Q-F=4fKTG8iG9S+(-W$3hli4EM6PHSBx0k;uai$GITWmT<JYAzNl>uRe4 z)*^EurvT)}KDyf<-(UPw`@j!*=IwS&rAPb)WfHZUA$1%T#$wniZt*ddplf)iOr`_G z#1u$_5`pfe#AaK!=hE8jkTFQx=A8rYenp7h?~dehxt>4TlLj9^?cgQ;^rLN4^QnQ{ zk{j@tn>&JEw#m(<=O~MpFQ8d&E_;Ylclor$>?z9OT|Nd(LrtYuH|_a*_8-^QG&V#T zBT)w0)9a&*r@?n%JiPBV%8zx&H)H^29zQe-u8#_gWapI;yjzcd?#^Cum7hyL&?om< z_L%EOG|3h9P%X{N&!q-GoJ0q%><OcJ<3OMNRnhm$uW?N9pB<WY$biG1WA=SNXB`St zPZ}kx%bh+ouus|)o~#+6vbV-N{k<KV5zf;;IOeJuQ8?qkBWN;8XgjvQXV$MBtcRza z1Ld=Y$PN_`w%^R<`i=@beP5Qp51%}qbNA%zlG4w5YYO*Nmw0<?d=LgY+hdgE_P;}` z?1!%Mo2ieoCyJXlSsMp>i%ZaNe!dRzyOX_<vu7S<sdZoWijh0r>p@j!SWUvHt&W2u zv#{oSF_dSq=6o-@5L30QSJW>{$F@b1tyZ|xPBkwq+o&poEwN^Nd^f^wj_2!KY=+zg zv}csVmn7G=H4VbG-8)(C_&Gkq*zKau4}J@_e20k20&i81dm7&t6Erac6EiR|0~0ea zF#{7bF#ZhS+b_>lTGEQ&Ud>PB%ME$C8It!Xp3!-y;#r($|0B3t{`+PwS@EJetDnf? z+=%+az`RQhfq8G@xBW|C63+$0I2iHX#_u@qe7wJX8C(qiEEhrY-ogVR@6D9>)F;pG z!hs5sZLdN01EctV6YtEr(Kht;3ix%fu3H%hEc4G>*OE!t8Go5sW-eY(mXT=5!wL&w zrn@`rU<;(3QZlMbu>>v}ox)5c?TCpJ`~o}JmPc)gjM<Wj;cgrY3zH}sOh<(o?oPm; zl6FdIw&HRUOD1ju7Idjdoc5~F8MlQgZxN;)=|WlFI?Pm3-XP3K)M`xyJ0eyzjFuV+ zGh`=IX>_N=mJpP18SIFK&|MO4@MB8f$`39mXq4>eh$L)1OJ6MKz=Scy^^&;|0IsJd z>PQcPc}J$5%vnI;M_ChNjZ_NOcDoUKyJ1%%HR?y(JpstGApJ2$kHBs}$~tF2J90Jn zvwS=;hAYq@JdWLJ)G?0fkFk9i1wVXpED+KcV|+cB@l8AKg%beW1Da?{+62~d%oy&+ zU`kM@$H(^Mb}-|fWybzl*j1pc=KxUBHvBUGK|Ai9B0M~US^J|MaTcuYxYvqd$2~|p z?rUwg7iEr>_1yDiu;ZCrlkWFrRA{>}?830C&_<B7BfkpPcFZI6!)~vh4Cpv_qyu1W z$9K$fJZQ1hs2|<$!Mq)xmwAXL*v%iu?k5gAnd^cb-#41Hzjsl=e(CQ3{2hSZa%}{u z?LI)6c3fkbn?sUm^rhjj`?bT4m&lR3*!|XF$IGIDB$4h5s?qWvQ07{&UzziR-5|;s zrX;rEIL?Fh_;`oEHjY2q{>@>>ckwXn7zdhYLuMb^AM-&zEYx_<`w8q=&++k=Tyz(^ zf93t@SfbrSsMEy0$ovM-m!?NyC-2Vr3fhn;xn`Pt_apu=aAqKwBjPilsf>B2zd9r= z9(Od<{$P3s@x8@Ll@(U+Cxw**zK0Z6J@9>_Fnh;%@V-zOK@Z~lLt(C{dQT{<R#Sh| zJo%aCzE^sc;pF~SSY<1@j}_({>Q)}jBfr>qpN;Cd!*AvBJTgOiE3f8}8A`REXy?iA zO70tlxhiUZD9kUk+6M}&H#_59VYSm3*9xl>fd2M+1QrX#I8}O{0Myw)VHJ@&59vW3 zlBDy99)U%4kVnjs@t~^=aXse);67!Y3tt|#(BpIAO)w8wkI#h@$`arU`T25Vex3rB zSszFjT5o`4Zip*O9EGev-U$M6Sa3)GHtKIU`riqBIzOK-WHP@E?ChU;)xx}<{(cIq ziO+KifQci{qzmiAeayrWUM~{!Tf_YfAzbcR!i~T##CR2+Ev7TjNA*Rb7+BAbaL*JA z#^4Izd-QnR1>zZCy?!qD{bDn)ULWR(+ku^V+iw9o^Tsa%Yx1M;oiX^wz|OofzuV5d z@6R0ejK1FkKZo&gJ(!372w0DYdG0H~&OG$zz&d^kF`rYgg`IhDAFxwD6L^0<9@t+Q zurqI64$SW(R9H<!TPS6x?M!Q{8A4Jw&{*GK)zz+TWD44<z70JYaHzsbt1X^v3C1mX z9<zd(E`hUFXFOs@!seq37nKSstXQ~<Xt7X7x^SkWqg(e=v$|S#v!bDLRgI+)yV2!a zy~x9#>?N=&*d9TeIe^|`@kk1XRWsDtDXa~3rAuRp)}-ag+_CmCS&7V@uvXU9S5?+o z^($7at!cCxE34{i_?+Q%(uxKX;dn$pv>pIYsa7zR3U*sE$!$3*WU3wwVoM)eYPLme zt21QT(M+P<Z0QnK^|PxhSJei@_&IcyXV)ISIP;&+$g5^!6ZjPsw^Hra*ku3s{r}G# T{&@dqsHkvc_SJt4q>ujs9>LQ! literal 0 HcmV?d00001 diff --git a/chipmunk/CMakeFiles/CMakeDirectoryInformation.cmake b/chipmunk/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000..1abec71c2e --- /dev/null +++ b/chipmunk/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,21 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Relative path conversion top directories. +SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/laschweinski/git/cocos2d-x/chipmunk") +SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/laschweinski/git/cocos2d-x/chipmunk") + +# Force unix paths in dependencies. +SET(CMAKE_FORCE_UNIX_PATHS 1) + +# The C and CXX include file search paths: +SET(CMAKE_C_INCLUDE_PATH + ) +SET(CMAKE_CXX_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH}) +SET(CMAKE_Fortran_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH}) + +# The C and CXX include file regular expressions for this directory. +SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/chipmunk/CMakeFiles/CMakeSystem.cmake b/chipmunk/CMakeFiles/CMakeSystem.cmake new file mode 100644 index 0000000000..310a96e7ff --- /dev/null +++ b/chipmunk/CMakeFiles/CMakeSystem.cmake @@ -0,0 +1,15 @@ + + +SET(CMAKE_SYSTEM "Linux-2.6.32-21-generic") +SET(CMAKE_SYSTEM_NAME "Linux") +SET(CMAKE_SYSTEM_VERSION "2.6.32-21-generic") +SET(CMAKE_SYSTEM_PROCESSOR "i686") + +SET(CMAKE_HOST_SYSTEM "Linux-2.6.32-21-generic") +SET(CMAKE_HOST_SYSTEM_NAME "Linux") +SET(CMAKE_HOST_SYSTEM_VERSION "2.6.32-21-generic") +SET(CMAKE_HOST_SYSTEM_PROCESSOR "i686") + +SET(CMAKE_CROSSCOMPILING "FALSE") + +SET(CMAKE_SYSTEM_LOADED 1) diff --git a/chipmunk/CMakeFiles/CompilerIdC/CMakeCCompilerId.c b/chipmunk/CMakeFiles/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000..4da3198a26 --- /dev/null +++ b/chipmunk/CMakeFiles/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,217 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + +#elif defined(__WATCOMC__) +# define COMPILER_ID "Watcom" + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + +#elif defined(__IBMC__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# elif __IBMC__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" + +#elif defined(__PATHSCALE__) +# define COMPILER_ID "PathScale" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +/* Analog Devices C++ compiler for Blackfin, TigerSHARC and + SHARC (21000) DSPs */ +# define COMPILER_ID "ADSP" + +/* IAR Systems compiler for embedded systems. + http://www.iar.com + Not supported yet by CMake +#elif defined(__IAR_SYSTEMS_ICC__) +# define COMPILER_ID "IAR" */ + +/* sdcc, the small devices C compiler for embedded systems, + http://sdcc.sourceforge.net */ +#elif defined(SDCC) +# define COMPILER_ID "SDCC" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is becase + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; + (void)argv; + return require; +} +#endif diff --git a/chipmunk/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp b/chipmunk/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000..2d16102299 --- /dev/null +++ b/chipmunk/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,203 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + +#elif defined(__WATCOMC__) +# define COMPILER_ID "Watcom" + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + +#elif defined(__IBMCPP__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# elif __IBMCPP__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" + +#elif defined(__PATHSCALE__) +# define COMPILER_ID "PathScale" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +/* Analog Devices C++ compiler for Blackfin, TigerSHARC and + SHARC (21000) DSPs */ +# define COMPILER_ID "ADSP" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is becase + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + (void)argv; + return require; +} diff --git a/chipmunk/CMakeFiles/Makefile.cmake b/chipmunk/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000..fd6fdfbb51 --- /dev/null +++ b/chipmunk/CMakeFiles/Makefile.cmake @@ -0,0 +1,46 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# The generator used is: +SET(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +SET(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "CMakeFiles/CMakeCCompiler.cmake" + "CMakeFiles/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeSystem.cmake" + "CMakeLists.txt" + "src/CMakeLists.txt" + "/usr/share/cmake-2.8/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-2.8/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-2.8/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-2.8/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-2.8/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-2.8/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux.cmake" + "/usr/share/cmake-2.8/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +SET(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +SET(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + "src/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +SET(CMAKE_DEPEND_INFO_FILES + "src/CMakeFiles/chipmunk.dir/DependInfo.cmake" + "src/CMakeFiles/chipmunk_static.dir/DependInfo.cmake" + ) diff --git a/chipmunk/CMakeFiles/TargetDirectories.txt b/chipmunk/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000..8a69dfaca9 --- /dev/null +++ b/chipmunk/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,2 @@ +/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir +/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir diff --git a/chipmunk/CMakeFiles/cmake.check_cache b/chipmunk/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000..3dccd73172 --- /dev/null +++ b/chipmunk/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/chipmunk/CMakeFiles/progress.marks b/chipmunk/CMakeFiles/progress.marks new file mode 100644 index 0000000000..0691f67b20 --- /dev/null +++ b/chipmunk/CMakeFiles/progress.marks @@ -0,0 +1 @@ +52 diff --git a/chipmunk/CMakeLists.txt b/chipmunk/CMakeLists.txt new file mode 100644 index 0000000000..2f964701bb --- /dev/null +++ b/chipmunk/CMakeLists.txt @@ -0,0 +1,27 @@ +cmake_minimum_required(VERSION 2.6) +cmake_policy(SET CMP0001 NEW) # don't use MAKE_BACKWARDS_COMPATIBILITY but policies instead + +project(chipmunk) + +# to change the prefix, run cmake with the parameter: +# -D CMAKE_INSTALL_PREFIX=/my/prefix + +# to change the build type, run cmake with the parameter: +# -D CMAKE_BUILD_TYPE=<build-type> +# run "cmake --help-variable CMAKE_BUILD_TYPE" for details +set(CMAKE_BUILD_TYPE Release) + +# other options for the build, you can i.e. activate the ruby bindings by passing +# -D BUILD_RUBY_EXT=ON +# to cmake. Other options analog +option(BUILD_SHARED "Build and install the shared library" ON) +option(BUILD_STATIC "Build as static library" ON) +option(INSTALL_STATIC "Install the static library" ON) + + +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99") # allways use gnu99 +set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -ffast-math") # extend release-profile with fast-math +set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -Wall") # extend debug-profile with -Wall + +add_subdirectory(src) + diff --git a/chipmunk/Makefile b/chipmunk/Makefile new file mode 100644 index 0000000000..767216e2fc --- /dev/null +++ b/chipmunk/Makefile @@ -0,0 +1,195 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canoncical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = /usr/bin/cmake-gui + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/laschweinski/git/cocos2d-x/chipmunk + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/laschweinski/git/cocos2d-x/chipmunk + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." + /usr/bin/cmake-gui -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: install/local +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: install/strip +.PHONY : install/strip/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named chipmunk + +# Build rule for target. +chipmunk: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 chipmunk +.PHONY : chipmunk + +# fast build rule for target. +chipmunk/fast: + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/build +.PHONY : chipmunk/fast + +#============================================================================= +# Target rules for targets named chipmunk_static + +# Build rule for target. +chipmunk_static: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 chipmunk_static +.PHONY : chipmunk_static + +# fast build rule for target. +chipmunk_static/fast: + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/build +.PHONY : chipmunk_static/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... chipmunk" + @echo "... chipmunk_static" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/chipmunk/cmake_install.cmake b/chipmunk/cmake_install.cmake new file mode 100644 index 0000000000..809dd40d49 --- /dev/null +++ b/chipmunk/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /home/laschweinski/git/cocos2d-x/chipmunk + +# Set the install prefix +IF(NOT DEFINED CMAKE_INSTALL_PREFIX) + SET(CMAKE_INSTALL_PREFIX "/usr/local") +ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) +STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + IF(BUILD_TYPE) + STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + ELSE(BUILD_TYPE) + SET(CMAKE_INSTALL_CONFIG_NAME "Release") + ENDIF(BUILD_TYPE) + MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + +# Set the component getting installed. +IF(NOT CMAKE_INSTALL_COMPONENT) + IF(COMPONENT) + MESSAGE(STATUS "Install component: \"${COMPONENT}\"") + SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + ELSE(COMPONENT) + SET(CMAKE_INSTALL_COMPONENT) + ENDIF(COMPONENT) +ENDIF(NOT CMAKE_INSTALL_COMPONENT) + +# Install shared libraries without execute permission? +IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + SET(CMAKE_INSTALL_SO_NO_EXE "1") +ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + +IF(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + INCLUDE("/home/laschweinski/git/cocos2d-x/chipmunk/src/cmake_install.cmake") + +ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY) + +IF(CMAKE_INSTALL_COMPONENT) + SET(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +ELSE(CMAKE_INSTALL_COMPONENT) + SET(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +ENDIF(CMAKE_INSTALL_COMPONENT) + +FILE(WRITE "/home/laschweinski/git/cocos2d-x/chipmunk/${CMAKE_INSTALL_MANIFEST}" "") +FOREACH(file ${CMAKE_INSTALL_MANIFEST_FILES}) + FILE(APPEND "/home/laschweinski/git/cocos2d-x/chipmunk/${CMAKE_INSTALL_MANIFEST}" "${file}\n") +ENDFOREACH(file) diff --git a/chipmunk/src/CMakeFiles/CMakeDirectoryInformation.cmake b/chipmunk/src/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000..b514a1c41e --- /dev/null +++ b/chipmunk/src/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,22 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Relative path conversion top directories. +SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/laschweinski/git/cocos2d-x/chipmunk") +SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/laschweinski/git/cocos2d-x/chipmunk") + +# Force unix paths in dependencies. +SET(CMAKE_FORCE_UNIX_PATHS 1) + +# The C and CXX include file search paths: +SET(CMAKE_C_INCLUDE_PATH + "include/chipmunk" + ) +SET(CMAKE_CXX_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH}) +SET(CMAKE_Fortran_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH}) + +# The C and CXX include file regular expressions for this directory. +SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/chipmunk/src/CMakeFiles/chipmunk.dir/C.includecache b/chipmunk/src/CMakeFiles/chipmunk.dir/C.includecache new file mode 100644 index 0000000000..4f0b1c9bf1 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk.dir/C.includecache @@ -0,0 +1,348 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c +stdlib.h +- +stdio.h +- +math.h +- +chipmunk.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.h +chipmunk_ffi.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_ffi.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c +stdlib.h +- +string.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c +math.h +- +stdlib.h +- +chipmunk.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c +stdlib.h +- +float.h +- +stdarg.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c +stdlib.h +- +assert.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +prime.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +chipmunk_unsafe.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_unsafe.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c +stdlib.h +- +stdio.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +chipmunk_unsafe.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_unsafe.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c +stdlib.h +- +string.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c +math.h +- +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +prime.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c +stdio.h +- +math.h +- +chipmunk.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + +include/chipmunk/chipmunk.h +chipmunk_types.h +include/chipmunk/chipmunk_types.h +cpVect.h +include/chipmunk/cpVect.h +cpBB.h +include/chipmunk/cpBB.h +cpArray.h +include/chipmunk/cpArray.h +cpHashSet.h +include/chipmunk/cpHashSet.h +cpSpaceHash.h +include/chipmunk/cpSpaceHash.h +cpBody.h +include/chipmunk/cpBody.h +cpShape.h +include/chipmunk/cpShape.h +cpPolyShape.h +include/chipmunk/cpPolyShape.h +cpArbiter.h +include/chipmunk/cpArbiter.h +cpCollision.h +include/chipmunk/cpCollision.h +constraints/cpConstraint.h +include/chipmunk/constraints/cpConstraint.h +cpSpace.h +include/chipmunk/cpSpace.h + +include/chipmunk/chipmunk_ffi.h + +include/chipmunk/chipmunk_private.h +chipmunk.h +include/chipmunk/chipmunk.h + +include/chipmunk/chipmunk_types.h +TargetConditionals.h +include/chipmunk/TargetConditionals.h +CoreGraphics/CGGeometry.h +- +ApplicationServices/ApplicationServices.h +- + +include/chipmunk/chipmunk_unsafe.h + +include/chipmunk/constraints/cpConstraint.h +cpPinJoint.h +include/chipmunk/constraints/cpPinJoint.h +cpSlideJoint.h +include/chipmunk/constraints/cpSlideJoint.h +cpPivotJoint.h +include/chipmunk/constraints/cpPivotJoint.h +cpGrooveJoint.h +include/chipmunk/constraints/cpGrooveJoint.h +cpDampedSpring.h +include/chipmunk/constraints/cpDampedSpring.h +cpDampedRotarySpring.h +include/chipmunk/constraints/cpDampedRotarySpring.h +cpRotaryLimitJoint.h +include/chipmunk/constraints/cpRotaryLimitJoint.h +cpRatchetJoint.h +include/chipmunk/constraints/cpRatchetJoint.h +cpGearJoint.h +include/chipmunk/constraints/cpGearJoint.h +cpSimpleMotor.h +include/chipmunk/constraints/cpSimpleMotor.h + +include/chipmunk/constraints/cpDampedRotarySpring.h + +include/chipmunk/constraints/cpDampedSpring.h + +include/chipmunk/constraints/cpGearJoint.h + +include/chipmunk/constraints/cpGrooveJoint.h + +include/chipmunk/constraints/cpPinJoint.h + +include/chipmunk/constraints/cpPivotJoint.h + +include/chipmunk/constraints/cpRatchetJoint.h + +include/chipmunk/constraints/cpRotaryLimitJoint.h + +include/chipmunk/constraints/cpSimpleMotor.h + +include/chipmunk/constraints/cpSlideJoint.h + +include/chipmunk/constraints/util.h + +include/chipmunk/cpArbiter.h + +include/chipmunk/cpArray.h + +include/chipmunk/cpBB.h + +include/chipmunk/cpBody.h + +include/chipmunk/cpCollision.h + +include/chipmunk/cpHashSet.h + +include/chipmunk/cpPolyShape.h + +include/chipmunk/cpShape.h + +include/chipmunk/cpSpace.h + +include/chipmunk/cpSpaceHash.h + +include/chipmunk/cpVect.h + diff --git a/chipmunk/src/CMakeFiles/chipmunk.dir/DependInfo.cmake b/chipmunk/src/CMakeFiles/chipmunk.dir/DependInfo.cmake new file mode 100644 index 0000000000..155e6d1c57 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk.dir/DependInfo.cmake @@ -0,0 +1,44 @@ +# The set of languages for which implicit dependencies are needed: +SET(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +SET(CMAKE_DEPENDS_CHECK_C + "/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/chipmunk.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpArbiter.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpArray.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpBB.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpBody.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpCollision.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpHashSet.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpShape.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpSpace.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/cpVect.c.o" + ) +SET(CMAKE_C_COMPILER_ID "GNU") + +# Pairs of files generated by the same build rule. +SET(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/home/laschweinski/git/cocos2d-x/chipmunk/src/libchipmunk.so" "/home/laschweinski/git/cocos2d-x/chipmunk/src/libchipmunk.so.5.3.5" + ) + + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + ) diff --git a/chipmunk/src/CMakeFiles/chipmunk.dir/build.make b/chipmunk/src/CMakeFiles/chipmunk.dir/build.make new file mode 100644 index 0000000000..dda600bbd9 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk.dir/build.make @@ -0,0 +1,781 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canoncical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = /usr/bin/cmake-gui + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/laschweinski/git/cocos2d-x/chipmunk + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/laschweinski/git/cocos2d-x/chipmunk + +# Include any dependencies generated for this target. +include src/CMakeFiles/chipmunk.dir/depend.make + +# Include the progress variables for this target. +include src/CMakeFiles/chipmunk.dir/progress.make + +# Include the compile flags for this target's objects. +include src/CMakeFiles/chipmunk.dir/flags.make + +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: src/cpSpaceHash.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpSpaceHash.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c + +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpSpaceHash.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c > CMakeFiles/chipmunk.dir/cpSpaceHash.c.i + +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpSpaceHash.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c -o CMakeFiles/chipmunk.dir/cpSpaceHash.c.s + +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o.provides: src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpBody.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpBody.c.o: src/cpBody.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_2) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpBody.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpBody.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c + +src/CMakeFiles/chipmunk.dir/cpBody.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpBody.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c > CMakeFiles/chipmunk.dir/cpBody.c.i + +src/CMakeFiles/chipmunk.dir/cpBody.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpBody.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c -o CMakeFiles/chipmunk.dir/cpBody.c.s + +src/CMakeFiles/chipmunk.dir/cpBody.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpBody.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpBody.c.o.provides: src/CMakeFiles/chipmunk.dir/cpBody.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpBody.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpBody.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpBody.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpBody.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpBody.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: src/cpArbiter.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_3) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpArbiter.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpArbiter.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c + +src/CMakeFiles/chipmunk.dir/cpArbiter.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpArbiter.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c > CMakeFiles/chipmunk.dir/cpArbiter.c.i + +src/CMakeFiles/chipmunk.dir/cpArbiter.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpArbiter.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c -o CMakeFiles/chipmunk.dir/cpArbiter.c.s + +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpArbiter.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o.provides: src/CMakeFiles/chipmunk.dir/cpArbiter.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpArbiter.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpArbiter.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpArbiter.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpArbiter.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: src/cpSpaceStep.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_4) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpSpaceStep.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c + +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpSpaceStep.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c > CMakeFiles/chipmunk.dir/cpSpaceStep.c.i + +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpSpaceStep.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c -o CMakeFiles/chipmunk.dir/cpSpaceStep.c.s + +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o.provides: src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: src/cpPolyShape.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_5) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpPolyShape.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c + +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpPolyShape.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c > CMakeFiles/chipmunk.dir/cpPolyShape.c.i + +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpPolyShape.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c -o CMakeFiles/chipmunk.dir/cpPolyShape.c.s + +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o.provides: src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: src/cpSpaceComponent.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_6) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c + +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpSpaceComponent.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c > CMakeFiles/chipmunk.dir/cpSpaceComponent.c.i + +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpSpaceComponent.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c -o CMakeFiles/chipmunk.dir/cpSpaceComponent.c.s + +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o.provides: src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpArray.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpArray.c.o: src/cpArray.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_7) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpArray.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpArray.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c + +src/CMakeFiles/chipmunk.dir/cpArray.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpArray.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c > CMakeFiles/chipmunk.dir/cpArray.c.i + +src/CMakeFiles/chipmunk.dir/cpArray.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpArray.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c -o CMakeFiles/chipmunk.dir/cpArray.c.s + +src/CMakeFiles/chipmunk.dir/cpArray.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpArray.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpArray.c.o.provides: src/CMakeFiles/chipmunk.dir/cpArray.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpArray.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpArray.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpArray.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpArray.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpArray.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: src/chipmunk.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_8) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/chipmunk.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/chipmunk.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c + +src/CMakeFiles/chipmunk.dir/chipmunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/chipmunk.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c > CMakeFiles/chipmunk.dir/chipmunk.c.i + +src/CMakeFiles/chipmunk.dir/chipmunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/chipmunk.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c -o CMakeFiles/chipmunk.dir/chipmunk.c.s + +src/CMakeFiles/chipmunk.dir/chipmunk.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/chipmunk.c.o.requires + +src/CMakeFiles/chipmunk.dir/chipmunk.c.o.provides: src/CMakeFiles/chipmunk.dir/chipmunk.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/chipmunk.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/chipmunk.c.o.provides + +src/CMakeFiles/chipmunk.dir/chipmunk.c.o.provides.build: src/CMakeFiles/chipmunk.dir/chipmunk.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/chipmunk.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: src/cpSpace.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_9) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpSpace.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpSpace.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c + +src/CMakeFiles/chipmunk.dir/cpSpace.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpSpace.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c > CMakeFiles/chipmunk.dir/cpSpace.c.i + +src/CMakeFiles/chipmunk.dir/cpSpace.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpSpace.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c -o CMakeFiles/chipmunk.dir/cpSpace.c.s + +src/CMakeFiles/chipmunk.dir/cpSpace.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpace.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpSpace.c.o.provides: src/CMakeFiles/chipmunk.dir/cpSpace.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpace.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpace.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpSpace.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpSpace.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpace.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: src/cpSpaceQuery.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_10) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c + +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpSpaceQuery.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c > CMakeFiles/chipmunk.dir/cpSpaceQuery.c.i + +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpSpaceQuery.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c -o CMakeFiles/chipmunk.dir/cpSpaceQuery.c.s + +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o.provides: src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: src/cpCollision.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_11) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpCollision.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpCollision.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c + +src/CMakeFiles/chipmunk.dir/cpCollision.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpCollision.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c > CMakeFiles/chipmunk.dir/cpCollision.c.i + +src/CMakeFiles/chipmunk.dir/cpCollision.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpCollision.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c -o CMakeFiles/chipmunk.dir/cpCollision.c.s + +src/CMakeFiles/chipmunk.dir/cpCollision.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpCollision.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpCollision.c.o.provides: src/CMakeFiles/chipmunk.dir/cpCollision.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpCollision.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpCollision.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpCollision.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpCollision.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpCollision.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: src/cpHashSet.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_12) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpHashSet.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpHashSet.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c + +src/CMakeFiles/chipmunk.dir/cpHashSet.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpHashSet.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c > CMakeFiles/chipmunk.dir/cpHashSet.c.i + +src/CMakeFiles/chipmunk.dir/cpHashSet.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpHashSet.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c -o CMakeFiles/chipmunk.dir/cpHashSet.c.s + +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpHashSet.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o.provides: src/CMakeFiles/chipmunk.dir/cpHashSet.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpHashSet.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpHashSet.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpHashSet.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpHashSet.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpShape.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpShape.c.o: src/cpShape.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_13) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpShape.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpShape.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c + +src/CMakeFiles/chipmunk.dir/cpShape.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpShape.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c > CMakeFiles/chipmunk.dir/cpShape.c.i + +src/CMakeFiles/chipmunk.dir/cpShape.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpShape.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c -o CMakeFiles/chipmunk.dir/cpShape.c.s + +src/CMakeFiles/chipmunk.dir/cpShape.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpShape.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpShape.c.o.provides: src/CMakeFiles/chipmunk.dir/cpShape.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpShape.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpShape.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpShape.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpShape.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpShape.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpBB.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpBB.c.o: src/cpBB.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_14) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpBB.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpBB.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c + +src/CMakeFiles/chipmunk.dir/cpBB.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpBB.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c > CMakeFiles/chipmunk.dir/cpBB.c.i + +src/CMakeFiles/chipmunk.dir/cpBB.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpBB.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c -o CMakeFiles/chipmunk.dir/cpBB.c.s + +src/CMakeFiles/chipmunk.dir/cpBB.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpBB.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpBB.c.o.provides: src/CMakeFiles/chipmunk.dir/cpBB.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpBB.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpBB.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpBB.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpBB.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpBB.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/cpVect.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/cpVect.c.o: src/cpVect.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_15) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/cpVect.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/cpVect.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c + +src/CMakeFiles/chipmunk.dir/cpVect.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/cpVect.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c > CMakeFiles/chipmunk.dir/cpVect.c.i + +src/CMakeFiles/chipmunk.dir/cpVect.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/cpVect.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c -o CMakeFiles/chipmunk.dir/cpVect.c.s + +src/CMakeFiles/chipmunk.dir/cpVect.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/cpVect.c.o.requires + +src/CMakeFiles/chipmunk.dir/cpVect.c.o.provides: src/CMakeFiles/chipmunk.dir/cpVect.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpVect.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/cpVect.c.o.provides + +src/CMakeFiles/chipmunk.dir/cpVect.c.o.provides.build: src/CMakeFiles/chipmunk.dir/cpVect.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/cpVect.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: src/constraints/cpGearJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_16) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c + +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c > CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c -o CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: src/constraints/cpConstraint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_17) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c + +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c > CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c -o CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: src/constraints/cpGrooveJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_18) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c + +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c > CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c -o CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: src/constraints/cpPinJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_19) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c + +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c > CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c -o CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: src/constraints/cpSimpleMotor.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_20) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c + +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c > CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c -o CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: src/constraints/cpDampedRotarySpring.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_21) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c > CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c -o CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: src/constraints/cpRatchetJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_22) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c + +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c > CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c -o CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: src/constraints/cpDampedSpring.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_23) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c > CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c -o CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: src/constraints/cpSlideJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_24) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c + +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c > CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c -o CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: src/constraints/cpRotaryLimitJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_25) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c + +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c > CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c -o CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o.provides.build + +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: src/CMakeFiles/chipmunk.dir/flags.make +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: src/constraints/cpPivotJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_26) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c + +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c > CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.i + +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c -o CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.s + +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o.requires + +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o.provides: src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o.provides + +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o.provides.build: src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o +.PHONY : src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o.provides.build + +# Object files for target chipmunk +chipmunk_OBJECTS = \ +"CMakeFiles/chipmunk.dir/cpSpaceHash.c.o" \ +"CMakeFiles/chipmunk.dir/cpBody.c.o" \ +"CMakeFiles/chipmunk.dir/cpArbiter.c.o" \ +"CMakeFiles/chipmunk.dir/cpSpaceStep.c.o" \ +"CMakeFiles/chipmunk.dir/cpPolyShape.c.o" \ +"CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o" \ +"CMakeFiles/chipmunk.dir/cpArray.c.o" \ +"CMakeFiles/chipmunk.dir/chipmunk.c.o" \ +"CMakeFiles/chipmunk.dir/cpSpace.c.o" \ +"CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o" \ +"CMakeFiles/chipmunk.dir/cpCollision.c.o" \ +"CMakeFiles/chipmunk.dir/cpHashSet.c.o" \ +"CMakeFiles/chipmunk.dir/cpShape.c.o" \ +"CMakeFiles/chipmunk.dir/cpBB.c.o" \ +"CMakeFiles/chipmunk.dir/cpVect.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o" \ +"CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o" + +# External object files for target chipmunk +chipmunk_EXTERNAL_OBJECTS = + +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpBody.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpArbiter.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpArray.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/chipmunk.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpSpace.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpCollision.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpHashSet.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpShape.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpBB.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/cpVect.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/build.make +src/libchipmunk.so.5.3.5: src/CMakeFiles/chipmunk.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking C shared library libchipmunk.so" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/chipmunk.dir/link.txt --verbose=$(VERBOSE) + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && $(CMAKE_COMMAND) -E cmake_symlink_library libchipmunk.so.5.3.5 libchipmunk.so.5.3.5 libchipmunk.so + +src/libchipmunk.so: src/libchipmunk.so.5.3.5 + +# Rule to build all files generated by this target. +src/CMakeFiles/chipmunk.dir/build: src/libchipmunk.so +.PHONY : src/CMakeFiles/chipmunk.dir/build + +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpBody.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpArbiter.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpArray.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/chipmunk.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpSpace.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpCollision.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpHashSet.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpShape.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpBB.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/cpVect.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o.requires +src/CMakeFiles/chipmunk.dir/requires: src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o.requires +.PHONY : src/CMakeFiles/chipmunk.dir/requires + +src/CMakeFiles/chipmunk.dir/clean: + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && $(CMAKE_COMMAND) -P CMakeFiles/chipmunk.dir/cmake_clean.cmake +.PHONY : src/CMakeFiles/chipmunk.dir/clean + +src/CMakeFiles/chipmunk.dir/depend: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/laschweinski/git/cocos2d-x/chipmunk /home/laschweinski/git/cocos2d-x/chipmunk/src /home/laschweinski/git/cocos2d-x/chipmunk /home/laschweinski/git/cocos2d-x/chipmunk/src /home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : src/CMakeFiles/chipmunk.dir/depend + diff --git a/chipmunk/src/CMakeFiles/chipmunk.dir/cmake_clean.cmake b/chipmunk/src/CMakeFiles/chipmunk.dir/cmake_clean.cmake new file mode 100644 index 0000000000..f4165a2ac9 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk.dir/cmake_clean.cmake @@ -0,0 +1,36 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/chipmunk.dir/cpSpaceHash.c.o" + "CMakeFiles/chipmunk.dir/cpBody.c.o" + "CMakeFiles/chipmunk.dir/cpArbiter.c.o" + "CMakeFiles/chipmunk.dir/cpSpaceStep.c.o" + "CMakeFiles/chipmunk.dir/cpPolyShape.c.o" + "CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o" + "CMakeFiles/chipmunk.dir/cpArray.c.o" + "CMakeFiles/chipmunk.dir/chipmunk.c.o" + "CMakeFiles/chipmunk.dir/cpSpace.c.o" + "CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o" + "CMakeFiles/chipmunk.dir/cpCollision.c.o" + "CMakeFiles/chipmunk.dir/cpHashSet.c.o" + "CMakeFiles/chipmunk.dir/cpShape.c.o" + "CMakeFiles/chipmunk.dir/cpBB.c.o" + "CMakeFiles/chipmunk.dir/cpVect.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o" + "CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o" + "libchipmunk.pdb" + "libchipmunk.so" + "libchipmunk.so.5.3.5" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang C) + INCLUDE(CMakeFiles/chipmunk.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/chipmunk/src/CMakeFiles/chipmunk.dir/depend.internal b/chipmunk/src/CMakeFiles/chipmunk.dir/depend.internal new file mode 100644 index 0000000000..86d7ae8252 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk.dir/depend.internal @@ -0,0 +1,720 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +src/CMakeFiles/chipmunk.dir/chipmunk.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_ffi.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c + /home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/chipmunk_unsafe.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/chipmunk_unsafe.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c + /home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h diff --git a/chipmunk/src/CMakeFiles/chipmunk.dir/depend.make b/chipmunk/src/CMakeFiles/chipmunk.dir/depend.make new file mode 100644 index 0000000000..4a41c659ea --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk.dir/depend.make @@ -0,0 +1,720 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: src/chipmunk.c +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/chipmunk_ffi.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/chipmunk.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: src/constraints/cpConstraint.c +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: src/constraints/cpDampedRotarySpring.c +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: src/constraints/cpDampedSpring.c +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: src/constraints/cpGearJoint.c +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: src/constraints/cpGrooveJoint.c +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: src/constraints/cpPinJoint.c +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: src/constraints/cpPivotJoint.c +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: src/constraints/cpRatchetJoint.c +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: src/constraints/cpRotaryLimitJoint.c +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: src/constraints/cpSimpleMotor.c +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: src/constraints/cpSlideJoint.c +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: src/cpArbiter.c +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpArbiter.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpArray.c.o: src/cpArray.c +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpArray.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpBB.c.o: src/cpBB.c +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpBB.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpBody.c.o: src/cpBody.c +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpBody.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: src/cpCollision.c +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpCollision.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: src/cpHashSet.c +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: src/prime.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpHashSet.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: src/cpPolyShape.c +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/chipmunk_unsafe.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpShape.c.o: src/cpShape.c +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/chipmunk_unsafe.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpShape.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: src/cpSpace.c +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpSpace.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: src/cpSpaceComponent.c +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: src/cpSpaceHash.c +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: src/prime.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: src/cpSpaceQuery.c +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: src/cpSpaceStep.c +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk.dir/cpVect.c.o: src/cpVect.c +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk.dir/cpVect.c.o: include/chipmunk/cpVect.h + diff --git a/chipmunk/src/CMakeFiles/chipmunk.dir/flags.make b/chipmunk/src/CMakeFiles/chipmunk.dir/flags.make new file mode 100644 index 0000000000..4f53283fa2 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# compile C with /usr/bin/gcc +C_FLAGS = -std=gnu99 -O3 -DNDEBUG -ffast-math -fPIC -I/home/laschweinski/git/cocos2d-x/chipmunk/include/chipmunk + +C_DEFINES = -Dchipmunk_EXPORTS + diff --git a/chipmunk/src/CMakeFiles/chipmunk.dir/link.txt b/chipmunk/src/CMakeFiles/chipmunk.dir/link.txt new file mode 100644 index 0000000000..a24e6b90ea --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/gcc -fPIC -std=gnu99 -O3 -DNDEBUG -ffast-math -shared -Wl,-soname,libchipmunk.so.5.3.5 -o libchipmunk.so.5.3.5 CMakeFiles/chipmunk.dir/cpSpaceHash.c.o CMakeFiles/chipmunk.dir/cpBody.c.o CMakeFiles/chipmunk.dir/cpArbiter.c.o CMakeFiles/chipmunk.dir/cpSpaceStep.c.o CMakeFiles/chipmunk.dir/cpPolyShape.c.o CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o CMakeFiles/chipmunk.dir/cpArray.c.o CMakeFiles/chipmunk.dir/chipmunk.c.o CMakeFiles/chipmunk.dir/cpSpace.c.o CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o CMakeFiles/chipmunk.dir/cpCollision.c.o CMakeFiles/chipmunk.dir/cpHashSet.c.o CMakeFiles/chipmunk.dir/cpShape.c.o CMakeFiles/chipmunk.dir/cpBB.c.o CMakeFiles/chipmunk.dir/cpVect.c.o CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o diff --git a/chipmunk/src/CMakeFiles/chipmunk.dir/progress.make b/chipmunk/src/CMakeFiles/chipmunk.dir/progress.make new file mode 100644 index 0000000000..4334314440 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk.dir/progress.make @@ -0,0 +1,27 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 +CMAKE_PROGRESS_11 = 11 +CMAKE_PROGRESS_12 = 12 +CMAKE_PROGRESS_13 = 13 +CMAKE_PROGRESS_14 = 14 +CMAKE_PROGRESS_15 = 15 +CMAKE_PROGRESS_16 = 16 +CMAKE_PROGRESS_17 = 17 +CMAKE_PROGRESS_18 = 18 +CMAKE_PROGRESS_19 = 19 +CMAKE_PROGRESS_20 = 20 +CMAKE_PROGRESS_21 = 21 +CMAKE_PROGRESS_22 = 22 +CMAKE_PROGRESS_23 = 23 +CMAKE_PROGRESS_24 = 24 +CMAKE_PROGRESS_25 = 25 +CMAKE_PROGRESS_26 = 26 + diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/C.includecache b/chipmunk/src/CMakeFiles/chipmunk_static.dir/C.includecache new file mode 100644 index 0000000000..4f0b1c9bf1 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/C.includecache @@ -0,0 +1,348 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c +stdlib.h +- +stdio.h +- +math.h +- +chipmunk.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.h +chipmunk_ffi.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_ffi.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c +stdlib.h +- +string.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c +math.h +- +stdlib.h +- +chipmunk.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c +stdlib.h +- +float.h +- +stdarg.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +constraints/util.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/util.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c +stdlib.h +- +assert.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +prime.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +chipmunk_unsafe.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_unsafe.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c +stdlib.h +- +stdio.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +chipmunk_unsafe.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_unsafe.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c +stdlib.h +- +string.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c +math.h +- +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h +prime.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c +stdlib.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c +stdlib.h +- +math.h +- +chipmunk_private.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk_private.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c +stdio.h +- +math.h +- +chipmunk.h +/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.h + +/home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + +include/chipmunk/chipmunk.h +chipmunk_types.h +include/chipmunk/chipmunk_types.h +cpVect.h +include/chipmunk/cpVect.h +cpBB.h +include/chipmunk/cpBB.h +cpArray.h +include/chipmunk/cpArray.h +cpHashSet.h +include/chipmunk/cpHashSet.h +cpSpaceHash.h +include/chipmunk/cpSpaceHash.h +cpBody.h +include/chipmunk/cpBody.h +cpShape.h +include/chipmunk/cpShape.h +cpPolyShape.h +include/chipmunk/cpPolyShape.h +cpArbiter.h +include/chipmunk/cpArbiter.h +cpCollision.h +include/chipmunk/cpCollision.h +constraints/cpConstraint.h +include/chipmunk/constraints/cpConstraint.h +cpSpace.h +include/chipmunk/cpSpace.h + +include/chipmunk/chipmunk_ffi.h + +include/chipmunk/chipmunk_private.h +chipmunk.h +include/chipmunk/chipmunk.h + +include/chipmunk/chipmunk_types.h +TargetConditionals.h +include/chipmunk/TargetConditionals.h +CoreGraphics/CGGeometry.h +- +ApplicationServices/ApplicationServices.h +- + +include/chipmunk/chipmunk_unsafe.h + +include/chipmunk/constraints/cpConstraint.h +cpPinJoint.h +include/chipmunk/constraints/cpPinJoint.h +cpSlideJoint.h +include/chipmunk/constraints/cpSlideJoint.h +cpPivotJoint.h +include/chipmunk/constraints/cpPivotJoint.h +cpGrooveJoint.h +include/chipmunk/constraints/cpGrooveJoint.h +cpDampedSpring.h +include/chipmunk/constraints/cpDampedSpring.h +cpDampedRotarySpring.h +include/chipmunk/constraints/cpDampedRotarySpring.h +cpRotaryLimitJoint.h +include/chipmunk/constraints/cpRotaryLimitJoint.h +cpRatchetJoint.h +include/chipmunk/constraints/cpRatchetJoint.h +cpGearJoint.h +include/chipmunk/constraints/cpGearJoint.h +cpSimpleMotor.h +include/chipmunk/constraints/cpSimpleMotor.h + +include/chipmunk/constraints/cpDampedRotarySpring.h + +include/chipmunk/constraints/cpDampedSpring.h + +include/chipmunk/constraints/cpGearJoint.h + +include/chipmunk/constraints/cpGrooveJoint.h + +include/chipmunk/constraints/cpPinJoint.h + +include/chipmunk/constraints/cpPivotJoint.h + +include/chipmunk/constraints/cpRatchetJoint.h + +include/chipmunk/constraints/cpRotaryLimitJoint.h + +include/chipmunk/constraints/cpSimpleMotor.h + +include/chipmunk/constraints/cpSlideJoint.h + +include/chipmunk/constraints/util.h + +include/chipmunk/cpArbiter.h + +include/chipmunk/cpArray.h + +include/chipmunk/cpBB.h + +include/chipmunk/cpBody.h + +include/chipmunk/cpCollision.h + +include/chipmunk/cpHashSet.h + +include/chipmunk/cpPolyShape.h + +include/chipmunk/cpShape.h + +include/chipmunk/cpSpace.h + +include/chipmunk/cpSpaceHash.h + +include/chipmunk/cpVect.h + diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/DependInfo.cmake b/chipmunk/src/CMakeFiles/chipmunk_static.dir/DependInfo.cmake new file mode 100644 index 0000000000..9b9d8944e4 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/DependInfo.cmake @@ -0,0 +1,38 @@ +# The set of languages for which implicit dependencies are needed: +SET(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +SET(CMAKE_DEPENDS_CHECK_C + "/home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpArray.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpBB.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpBody.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpShape.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o" + "/home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c" "/home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/cpVect.c.o" + ) +SET(CMAKE_C_COMPILER_ID "GNU") + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + ) diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/build.make b/chipmunk/src/CMakeFiles/chipmunk_static.dir/build.make new file mode 100644 index 0000000000..05b42d877e --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/build.make @@ -0,0 +1,779 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canoncical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = /usr/bin/cmake-gui + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/laschweinski/git/cocos2d-x/chipmunk + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/laschweinski/git/cocos2d-x/chipmunk + +# Include any dependencies generated for this target. +include src/CMakeFiles/chipmunk_static.dir/depend.make + +# Include the progress variables for this target. +include src/CMakeFiles/chipmunk_static.dir/progress.make + +# Include the compile flags for this target's objects. +include src/CMakeFiles/chipmunk_static.dir/flags.make + +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: src/cpSpaceHash.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c + +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c > CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.i + +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c -o CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.s + +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: src/cpBody.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_2) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpBody.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpBody.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c + +src/CMakeFiles/chipmunk_static.dir/cpBody.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpBody.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c > CMakeFiles/chipmunk_static.dir/cpBody.c.i + +src/CMakeFiles/chipmunk_static.dir/cpBody.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpBody.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c -o CMakeFiles/chipmunk_static.dir/cpBody.c.s + +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpBody.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpBody.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpBody.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpBody.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpBody.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpBody.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: src/cpArbiter.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_3) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpArbiter.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c + +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpArbiter.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c > CMakeFiles/chipmunk_static.dir/cpArbiter.c.i + +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpArbiter.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c -o CMakeFiles/chipmunk_static.dir/cpArbiter.c.s + +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: src/cpSpaceStep.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_4) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c + +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c > CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.i + +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c -o CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.s + +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: src/cpPolyShape.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_5) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c + +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpPolyShape.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c > CMakeFiles/chipmunk_static.dir/cpPolyShape.c.i + +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpPolyShape.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c -o CMakeFiles/chipmunk_static.dir/cpPolyShape.c.s + +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: src/cpSpaceComponent.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_6) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c + +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c > CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.i + +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c -o CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.s + +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: src/cpArray.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_7) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpArray.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpArray.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c + +src/CMakeFiles/chipmunk_static.dir/cpArray.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpArray.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c > CMakeFiles/chipmunk_static.dir/cpArray.c.i + +src/CMakeFiles/chipmunk_static.dir/cpArray.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpArray.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c -o CMakeFiles/chipmunk_static.dir/cpArray.c.s + +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpArray.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpArray.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpArray.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpArray.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpArray.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpArray.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: src/chipmunk.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_8) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/chipmunk.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c + +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/chipmunk.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c > CMakeFiles/chipmunk_static.dir/chipmunk.c.i + +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/chipmunk.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c -o CMakeFiles/chipmunk_static.dir/chipmunk.c.s + +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o.provides: src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: src/cpSpace.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_9) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpSpace.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c + +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpSpace.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c > CMakeFiles/chipmunk_static.dir/cpSpace.c.i + +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpSpace.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c -o CMakeFiles/chipmunk_static.dir/cpSpace.c.s + +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: src/cpSpaceQuery.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_10) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c + +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c > CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.i + +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c -o CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.s + +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: src/cpCollision.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_11) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpCollision.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c + +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpCollision.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c > CMakeFiles/chipmunk_static.dir/cpCollision.c.i + +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpCollision.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c -o CMakeFiles/chipmunk_static.dir/cpCollision.c.s + +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: src/cpHashSet.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_12) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpHashSet.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c + +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpHashSet.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c > CMakeFiles/chipmunk_static.dir/cpHashSet.c.i + +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpHashSet.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c -o CMakeFiles/chipmunk_static.dir/cpHashSet.c.s + +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: src/cpShape.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_13) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpShape.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpShape.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c + +src/CMakeFiles/chipmunk_static.dir/cpShape.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpShape.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c > CMakeFiles/chipmunk_static.dir/cpShape.c.i + +src/CMakeFiles/chipmunk_static.dir/cpShape.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpShape.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c -o CMakeFiles/chipmunk_static.dir/cpShape.c.s + +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpShape.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpShape.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpShape.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpShape.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpShape.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpShape.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: src/cpBB.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_14) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpBB.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpBB.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c + +src/CMakeFiles/chipmunk_static.dir/cpBB.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpBB.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c > CMakeFiles/chipmunk_static.dir/cpBB.c.i + +src/CMakeFiles/chipmunk_static.dir/cpBB.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpBB.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c -o CMakeFiles/chipmunk_static.dir/cpBB.c.s + +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpBB.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpBB.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpBB.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpBB.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpBB.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpBB.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: src/cpVect.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_15) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/cpVect.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/cpVect.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c + +src/CMakeFiles/chipmunk_static.dir/cpVect.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/cpVect.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c > CMakeFiles/chipmunk_static.dir/cpVect.c.i + +src/CMakeFiles/chipmunk_static.dir/cpVect.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/cpVect.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c -o CMakeFiles/chipmunk_static.dir/cpVect.c.s + +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpVect.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o.provides: src/CMakeFiles/chipmunk_static.dir/cpVect.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpVect.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpVect.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/cpVect.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/cpVect.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: src/constraints/cpGearJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_16) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c > CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c -o CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: src/constraints/cpConstraint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_17) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c > CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c -o CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: src/constraints/cpGrooveJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_18) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c > CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c -o CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: src/constraints/cpPinJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_19) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c > CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c -o CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: src/constraints/cpSimpleMotor.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_20) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c > CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c -o CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: src/constraints/cpDampedRotarySpring.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_21) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c > CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c -o CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: src/constraints/cpRatchetJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_22) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c > CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c -o CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: src/constraints/cpDampedSpring.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_23) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c > CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c -o CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: src/constraints/cpSlideJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_24) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c > CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c -o CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: src/constraints/cpRotaryLimitJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_25) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c > CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c -o CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o.provides.build + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: src/CMakeFiles/chipmunk_static.dir/flags.make +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: src/constraints/cpPivotJoint.c + $(CMAKE_COMMAND) -E cmake_progress_report /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles $(CMAKE_PROGRESS_26) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o -c /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.i" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c > CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.i + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.s" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c -o CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.s + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o.requires: +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o.requires + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o.provides: src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o.requires + $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o.provides.build +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o.provides + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o.provides.build: src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o +.PHONY : src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o.provides.build + +# Object files for target chipmunk_static +chipmunk_static_OBJECTS = \ +"CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpBody.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpArbiter.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpArray.c.o" \ +"CMakeFiles/chipmunk_static.dir/chipmunk.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpSpace.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpCollision.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpHashSet.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpShape.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpBB.c.o" \ +"CMakeFiles/chipmunk_static.dir/cpVect.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o" \ +"CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o" + +# External object files for target chipmunk_static +chipmunk_static_EXTERNAL_OBJECTS = + +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpBody.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpArray.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpShape.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpBB.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/cpVect.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/build.make +src/libchipmunk.a: src/CMakeFiles/chipmunk_static.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking C static library libchipmunk.a" + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && $(CMAKE_COMMAND) -P CMakeFiles/chipmunk_static.dir/cmake_clean_target.cmake + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/chipmunk_static.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +src/CMakeFiles/chipmunk_static.dir/build: src/libchipmunk.a +.PHONY : src/CMakeFiles/chipmunk_static.dir/build + +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpBody.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpArray.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpShape.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpBB.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/cpVect.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o.requires +src/CMakeFiles/chipmunk_static.dir/requires: src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o.requires +.PHONY : src/CMakeFiles/chipmunk_static.dir/requires + +src/CMakeFiles/chipmunk_static.dir/clean: + cd /home/laschweinski/git/cocos2d-x/chipmunk/src && $(CMAKE_COMMAND) -P CMakeFiles/chipmunk_static.dir/cmake_clean.cmake +.PHONY : src/CMakeFiles/chipmunk_static.dir/clean + +src/CMakeFiles/chipmunk_static.dir/depend: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/laschweinski/git/cocos2d-x/chipmunk /home/laschweinski/git/cocos2d-x/chipmunk/src /home/laschweinski/git/cocos2d-x/chipmunk /home/laschweinski/git/cocos2d-x/chipmunk/src /home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/chipmunk_static.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : src/CMakeFiles/chipmunk_static.dir/depend + diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/cmake_clean.cmake b/chipmunk/src/CMakeFiles/chipmunk_static.dir/cmake_clean.cmake new file mode 100644 index 0000000000..75642c147b --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/cmake_clean.cmake @@ -0,0 +1,35 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o" + "CMakeFiles/chipmunk_static.dir/cpBody.c.o" + "CMakeFiles/chipmunk_static.dir/cpArbiter.c.o" + "CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o" + "CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o" + "CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o" + "CMakeFiles/chipmunk_static.dir/cpArray.c.o" + "CMakeFiles/chipmunk_static.dir/chipmunk.c.o" + "CMakeFiles/chipmunk_static.dir/cpSpace.c.o" + "CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o" + "CMakeFiles/chipmunk_static.dir/cpCollision.c.o" + "CMakeFiles/chipmunk_static.dir/cpHashSet.c.o" + "CMakeFiles/chipmunk_static.dir/cpShape.c.o" + "CMakeFiles/chipmunk_static.dir/cpBB.c.o" + "CMakeFiles/chipmunk_static.dir/cpVect.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o" + "CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o" + "libchipmunk.pdb" + "libchipmunk.a" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang C) + INCLUDE(CMakeFiles/chipmunk_static.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/cmake_clean_target.cmake b/chipmunk/src/CMakeFiles/chipmunk_static.dir/cmake_clean_target.cmake new file mode 100644 index 0000000000..61ea46f21f --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +FILE(REMOVE_RECURSE + "libchipmunk.a" +) diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/depend.internal b/chipmunk/src/CMakeFiles/chipmunk_static.dir/depend.internal new file mode 100644 index 0000000000..df6a5d1e75 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/depend.internal @@ -0,0 +1,720 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/chipmunk.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_ffi.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpConstraint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedRotarySpring.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpDampedSpring.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGearJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpGrooveJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPinJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpPivotJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRatchetJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpRotaryLimitJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSimpleMotor.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/constraints/cpSlideJoint.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArbiter.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpArray.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBB.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpBody.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/constraints/util.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpCollision.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpHashSet.c + /home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpPolyShape.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/chipmunk_unsafe.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpShape.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/chipmunk_unsafe.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpace.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceComponent.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceHash.c + /home/laschweinski/git/cocos2d-x/chipmunk/src/prime.h + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceQuery.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpSpaceStep.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_private.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o + /home/laschweinski/git/cocos2d-x/chipmunk/src/cpVect.c + include/chipmunk/chipmunk.h + include/chipmunk/chipmunk_types.h + include/chipmunk/constraints/cpConstraint.h + include/chipmunk/constraints/cpDampedRotarySpring.h + include/chipmunk/constraints/cpDampedSpring.h + include/chipmunk/constraints/cpGearJoint.h + include/chipmunk/constraints/cpGrooveJoint.h + include/chipmunk/constraints/cpPinJoint.h + include/chipmunk/constraints/cpPivotJoint.h + include/chipmunk/constraints/cpRatchetJoint.h + include/chipmunk/constraints/cpRotaryLimitJoint.h + include/chipmunk/constraints/cpSimpleMotor.h + include/chipmunk/constraints/cpSlideJoint.h + include/chipmunk/cpArbiter.h + include/chipmunk/cpArray.h + include/chipmunk/cpBB.h + include/chipmunk/cpBody.h + include/chipmunk/cpCollision.h + include/chipmunk/cpHashSet.h + include/chipmunk/cpPolyShape.h + include/chipmunk/cpShape.h + include/chipmunk/cpSpace.h + include/chipmunk/cpSpaceHash.h + include/chipmunk/cpVect.h diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/depend.make b/chipmunk/src/CMakeFiles/chipmunk_static.dir/depend.make new file mode 100644 index 0000000000..e0f5409e65 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/depend.make @@ -0,0 +1,720 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: src/chipmunk.c +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/chipmunk_ffi.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: src/constraints/cpConstraint.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: src/constraints/cpDampedRotarySpring.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: src/constraints/cpDampedSpring.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: src/constraints/cpGearJoint.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: src/constraints/cpGrooveJoint.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: src/constraints/cpPinJoint.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: src/constraints/cpPivotJoint.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: src/constraints/cpRatchetJoint.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: src/constraints/cpRotaryLimitJoint.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: src/constraints/cpSimpleMotor.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: src/constraints/cpSlideJoint.c +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: src/cpArbiter.c +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: src/cpArray.c +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpArray.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: src/cpBB.c +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpBB.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: src/cpBody.c +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/constraints/util.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpBody.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: src/cpCollision.c +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: src/cpHashSet.c +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: src/prime.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: src/cpPolyShape.c +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/chipmunk_unsafe.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: src/cpShape.c +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/chipmunk_unsafe.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpShape.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: src/cpSpace.c +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: src/cpSpaceComponent.c +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: src/cpSpaceHash.c +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: src/prime.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: src/cpSpaceQuery.c +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: src/cpSpaceStep.c +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/chipmunk_private.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o: include/chipmunk/cpVect.h + +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: src/cpVect.c +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/chipmunk.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/chipmunk_types.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpConstraint.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpDampedRotarySpring.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpDampedSpring.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpGearJoint.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpGrooveJoint.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpPinJoint.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpPivotJoint.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpRatchetJoint.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpRotaryLimitJoint.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpSimpleMotor.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/constraints/cpSlideJoint.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpArbiter.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpArray.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpBB.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpBody.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpCollision.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpHashSet.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpPolyShape.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpShape.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpSpace.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpSpaceHash.h +src/CMakeFiles/chipmunk_static.dir/cpVect.c.o: include/chipmunk/cpVect.h + diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/flags.make b/chipmunk/src/CMakeFiles/chipmunk_static.dir/flags.make new file mode 100644 index 0000000000..248fc66d5d --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# compile C with /usr/bin/gcc +C_FLAGS = -std=gnu99 -O3 -DNDEBUG -ffast-math -I/home/laschweinski/git/cocos2d-x/chipmunk/include/chipmunk + +C_DEFINES = + diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/link.txt b/chipmunk/src/CMakeFiles/chipmunk_static.dir/link.txt new file mode 100644 index 0000000000..dd2b916b78 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar cr libchipmunk.a CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o CMakeFiles/chipmunk_static.dir/cpBody.c.o CMakeFiles/chipmunk_static.dir/cpArbiter.c.o CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o CMakeFiles/chipmunk_static.dir/cpArray.c.o CMakeFiles/chipmunk_static.dir/chipmunk.c.o CMakeFiles/chipmunk_static.dir/cpSpace.c.o CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o CMakeFiles/chipmunk_static.dir/cpCollision.c.o CMakeFiles/chipmunk_static.dir/cpHashSet.c.o CMakeFiles/chipmunk_static.dir/cpShape.c.o CMakeFiles/chipmunk_static.dir/cpBB.c.o CMakeFiles/chipmunk_static.dir/cpVect.c.o CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o +/usr/bin/ranlib libchipmunk.a diff --git a/chipmunk/src/CMakeFiles/chipmunk_static.dir/progress.make b/chipmunk/src/CMakeFiles/chipmunk_static.dir/progress.make new file mode 100644 index 0000000000..1dfd02ff21 --- /dev/null +++ b/chipmunk/src/CMakeFiles/chipmunk_static.dir/progress.make @@ -0,0 +1,27 @@ +CMAKE_PROGRESS_1 = 27 +CMAKE_PROGRESS_2 = 28 +CMAKE_PROGRESS_3 = 29 +CMAKE_PROGRESS_4 = 30 +CMAKE_PROGRESS_5 = 31 +CMAKE_PROGRESS_6 = 32 +CMAKE_PROGRESS_7 = 33 +CMAKE_PROGRESS_8 = 34 +CMAKE_PROGRESS_9 = 35 +CMAKE_PROGRESS_10 = 36 +CMAKE_PROGRESS_11 = 37 +CMAKE_PROGRESS_12 = 38 +CMAKE_PROGRESS_13 = 39 +CMAKE_PROGRESS_14 = 40 +CMAKE_PROGRESS_15 = 41 +CMAKE_PROGRESS_16 = 42 +CMAKE_PROGRESS_17 = 43 +CMAKE_PROGRESS_18 = 44 +CMAKE_PROGRESS_19 = 45 +CMAKE_PROGRESS_20 = 46 +CMAKE_PROGRESS_21 = 47 +CMAKE_PROGRESS_22 = 48 +CMAKE_PROGRESS_23 = 49 +CMAKE_PROGRESS_24 = 50 +CMAKE_PROGRESS_25 = 51 +CMAKE_PROGRESS_26 = 52 + diff --git a/chipmunk/src/CMakeFiles/progress.marks b/chipmunk/src/CMakeFiles/progress.marks new file mode 100644 index 0000000000..0691f67b20 --- /dev/null +++ b/chipmunk/src/CMakeFiles/progress.marks @@ -0,0 +1 @@ +52 diff --git a/chipmunk/src/Makefile b/chipmunk/src/Makefile new file mode 100644 index 0000000000..2fcf6348e7 --- /dev/null +++ b/chipmunk/src/Makefile @@ -0,0 +1,977 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canoncical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = /usr/bin/cmake-gui + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/laschweinski/git/cocos2d-x/chipmunk + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/laschweinski/git/cocos2d-x/chipmunk + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." + /usr/bin/cmake-gui -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: install/local +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: install/strip +.PHONY : install/strip/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(CMAKE_COMMAND) -E cmake_progress_start /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles /home/laschweinski/git/cocos2d-x/chipmunk/src/CMakeFiles/progress.marks + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f CMakeFiles/Makefile2 src/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/laschweinski/git/cocos2d-x/chipmunk/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f CMakeFiles/Makefile2 src/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f CMakeFiles/Makefile2 src/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f CMakeFiles/Makefile2 src/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +src/CMakeFiles/chipmunk.dir/rule: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f CMakeFiles/Makefile2 src/CMakeFiles/chipmunk.dir/rule +.PHONY : src/CMakeFiles/chipmunk.dir/rule + +# Convenience name for target. +chipmunk: src/CMakeFiles/chipmunk.dir/rule +.PHONY : chipmunk + +# fast build rule for target. +chipmunk/fast: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/build +.PHONY : chipmunk/fast + +# Convenience name for target. +src/CMakeFiles/chipmunk_static.dir/rule: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f CMakeFiles/Makefile2 src/CMakeFiles/chipmunk_static.dir/rule +.PHONY : src/CMakeFiles/chipmunk_static.dir/rule + +# Convenience name for target. +chipmunk_static: src/CMakeFiles/chipmunk_static.dir/rule +.PHONY : chipmunk_static + +# fast build rule for target. +chipmunk_static/fast: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/build +.PHONY : chipmunk_static/fast + +chipmunk.o: chipmunk.c.o +.PHONY : chipmunk.o + +# target to build an object file +chipmunk.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/chipmunk.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/chipmunk.c.o +.PHONY : chipmunk.c.o + +chipmunk.i: chipmunk.c.i +.PHONY : chipmunk.i + +# target to preprocess a source file +chipmunk.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/chipmunk.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/chipmunk.c.i +.PHONY : chipmunk.c.i + +chipmunk.s: chipmunk.c.s +.PHONY : chipmunk.s + +# target to generate assembly for a file +chipmunk.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/chipmunk.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/chipmunk.c.s +.PHONY : chipmunk.c.s + +constraints/cpConstraint.o: constraints/cpConstraint.c.o +.PHONY : constraints/cpConstraint.o + +# target to build an object file +constraints/cpConstraint.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.o +.PHONY : constraints/cpConstraint.c.o + +constraints/cpConstraint.i: constraints/cpConstraint.c.i +.PHONY : constraints/cpConstraint.i + +# target to preprocess a source file +constraints/cpConstraint.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.i +.PHONY : constraints/cpConstraint.c.i + +constraints/cpConstraint.s: constraints/cpConstraint.c.s +.PHONY : constraints/cpConstraint.s + +# target to generate assembly for a file +constraints/cpConstraint.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpConstraint.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpConstraint.c.s +.PHONY : constraints/cpConstraint.c.s + +constraints/cpDampedRotarySpring.o: constraints/cpDampedRotarySpring.c.o +.PHONY : constraints/cpDampedRotarySpring.o + +# target to build an object file +constraints/cpDampedRotarySpring.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.o +.PHONY : constraints/cpDampedRotarySpring.c.o + +constraints/cpDampedRotarySpring.i: constraints/cpDampedRotarySpring.c.i +.PHONY : constraints/cpDampedRotarySpring.i + +# target to preprocess a source file +constraints/cpDampedRotarySpring.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.i +.PHONY : constraints/cpDampedRotarySpring.c.i + +constraints/cpDampedRotarySpring.s: constraints/cpDampedRotarySpring.c.s +.PHONY : constraints/cpDampedRotarySpring.s + +# target to generate assembly for a file +constraints/cpDampedRotarySpring.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpDampedRotarySpring.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedRotarySpring.c.s +.PHONY : constraints/cpDampedRotarySpring.c.s + +constraints/cpDampedSpring.o: constraints/cpDampedSpring.c.o +.PHONY : constraints/cpDampedSpring.o + +# target to build an object file +constraints/cpDampedSpring.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.o +.PHONY : constraints/cpDampedSpring.c.o + +constraints/cpDampedSpring.i: constraints/cpDampedSpring.c.i +.PHONY : constraints/cpDampedSpring.i + +# target to preprocess a source file +constraints/cpDampedSpring.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.i +.PHONY : constraints/cpDampedSpring.c.i + +constraints/cpDampedSpring.s: constraints/cpDampedSpring.c.s +.PHONY : constraints/cpDampedSpring.s + +# target to generate assembly for a file +constraints/cpDampedSpring.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpDampedSpring.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpDampedSpring.c.s +.PHONY : constraints/cpDampedSpring.c.s + +constraints/cpGearJoint.o: constraints/cpGearJoint.c.o +.PHONY : constraints/cpGearJoint.o + +# target to build an object file +constraints/cpGearJoint.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.o +.PHONY : constraints/cpGearJoint.c.o + +constraints/cpGearJoint.i: constraints/cpGearJoint.c.i +.PHONY : constraints/cpGearJoint.i + +# target to preprocess a source file +constraints/cpGearJoint.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.i +.PHONY : constraints/cpGearJoint.c.i + +constraints/cpGearJoint.s: constraints/cpGearJoint.c.s +.PHONY : constraints/cpGearJoint.s + +# target to generate assembly for a file +constraints/cpGearJoint.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpGearJoint.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpGearJoint.c.s +.PHONY : constraints/cpGearJoint.c.s + +constraints/cpGrooveJoint.o: constraints/cpGrooveJoint.c.o +.PHONY : constraints/cpGrooveJoint.o + +# target to build an object file +constraints/cpGrooveJoint.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.o +.PHONY : constraints/cpGrooveJoint.c.o + +constraints/cpGrooveJoint.i: constraints/cpGrooveJoint.c.i +.PHONY : constraints/cpGrooveJoint.i + +# target to preprocess a source file +constraints/cpGrooveJoint.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.i +.PHONY : constraints/cpGrooveJoint.c.i + +constraints/cpGrooveJoint.s: constraints/cpGrooveJoint.c.s +.PHONY : constraints/cpGrooveJoint.s + +# target to generate assembly for a file +constraints/cpGrooveJoint.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpGrooveJoint.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpGrooveJoint.c.s +.PHONY : constraints/cpGrooveJoint.c.s + +constraints/cpPinJoint.o: constraints/cpPinJoint.c.o +.PHONY : constraints/cpPinJoint.o + +# target to build an object file +constraints/cpPinJoint.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.o +.PHONY : constraints/cpPinJoint.c.o + +constraints/cpPinJoint.i: constraints/cpPinJoint.c.i +.PHONY : constraints/cpPinJoint.i + +# target to preprocess a source file +constraints/cpPinJoint.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.i +.PHONY : constraints/cpPinJoint.c.i + +constraints/cpPinJoint.s: constraints/cpPinJoint.c.s +.PHONY : constraints/cpPinJoint.s + +# target to generate assembly for a file +constraints/cpPinJoint.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpPinJoint.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpPinJoint.c.s +.PHONY : constraints/cpPinJoint.c.s + +constraints/cpPivotJoint.o: constraints/cpPivotJoint.c.o +.PHONY : constraints/cpPivotJoint.o + +# target to build an object file +constraints/cpPivotJoint.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.o +.PHONY : constraints/cpPivotJoint.c.o + +constraints/cpPivotJoint.i: constraints/cpPivotJoint.c.i +.PHONY : constraints/cpPivotJoint.i + +# target to preprocess a source file +constraints/cpPivotJoint.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.i +.PHONY : constraints/cpPivotJoint.c.i + +constraints/cpPivotJoint.s: constraints/cpPivotJoint.c.s +.PHONY : constraints/cpPivotJoint.s + +# target to generate assembly for a file +constraints/cpPivotJoint.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpPivotJoint.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpPivotJoint.c.s +.PHONY : constraints/cpPivotJoint.c.s + +constraints/cpRatchetJoint.o: constraints/cpRatchetJoint.c.o +.PHONY : constraints/cpRatchetJoint.o + +# target to build an object file +constraints/cpRatchetJoint.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.o +.PHONY : constraints/cpRatchetJoint.c.o + +constraints/cpRatchetJoint.i: constraints/cpRatchetJoint.c.i +.PHONY : constraints/cpRatchetJoint.i + +# target to preprocess a source file +constraints/cpRatchetJoint.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.i +.PHONY : constraints/cpRatchetJoint.c.i + +constraints/cpRatchetJoint.s: constraints/cpRatchetJoint.c.s +.PHONY : constraints/cpRatchetJoint.s + +# target to generate assembly for a file +constraints/cpRatchetJoint.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpRatchetJoint.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpRatchetJoint.c.s +.PHONY : constraints/cpRatchetJoint.c.s + +constraints/cpRotaryLimitJoint.o: constraints/cpRotaryLimitJoint.c.o +.PHONY : constraints/cpRotaryLimitJoint.o + +# target to build an object file +constraints/cpRotaryLimitJoint.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.o +.PHONY : constraints/cpRotaryLimitJoint.c.o + +constraints/cpRotaryLimitJoint.i: constraints/cpRotaryLimitJoint.c.i +.PHONY : constraints/cpRotaryLimitJoint.i + +# target to preprocess a source file +constraints/cpRotaryLimitJoint.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.i +.PHONY : constraints/cpRotaryLimitJoint.c.i + +constraints/cpRotaryLimitJoint.s: constraints/cpRotaryLimitJoint.c.s +.PHONY : constraints/cpRotaryLimitJoint.s + +# target to generate assembly for a file +constraints/cpRotaryLimitJoint.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpRotaryLimitJoint.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpRotaryLimitJoint.c.s +.PHONY : constraints/cpRotaryLimitJoint.c.s + +constraints/cpSimpleMotor.o: constraints/cpSimpleMotor.c.o +.PHONY : constraints/cpSimpleMotor.o + +# target to build an object file +constraints/cpSimpleMotor.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.o +.PHONY : constraints/cpSimpleMotor.c.o + +constraints/cpSimpleMotor.i: constraints/cpSimpleMotor.c.i +.PHONY : constraints/cpSimpleMotor.i + +# target to preprocess a source file +constraints/cpSimpleMotor.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.i +.PHONY : constraints/cpSimpleMotor.c.i + +constraints/cpSimpleMotor.s: constraints/cpSimpleMotor.c.s +.PHONY : constraints/cpSimpleMotor.s + +# target to generate assembly for a file +constraints/cpSimpleMotor.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpSimpleMotor.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpSimpleMotor.c.s +.PHONY : constraints/cpSimpleMotor.c.s + +constraints/cpSlideJoint.o: constraints/cpSlideJoint.c.o +.PHONY : constraints/cpSlideJoint.o + +# target to build an object file +constraints/cpSlideJoint.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.o +.PHONY : constraints/cpSlideJoint.c.o + +constraints/cpSlideJoint.i: constraints/cpSlideJoint.c.i +.PHONY : constraints/cpSlideJoint.i + +# target to preprocess a source file +constraints/cpSlideJoint.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.i +.PHONY : constraints/cpSlideJoint.c.i + +constraints/cpSlideJoint.s: constraints/cpSlideJoint.c.s +.PHONY : constraints/cpSlideJoint.s + +# target to generate assembly for a file +constraints/cpSlideJoint.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/constraints/cpSlideJoint.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/constraints/cpSlideJoint.c.s +.PHONY : constraints/cpSlideJoint.c.s + +cpArbiter.o: cpArbiter.c.o +.PHONY : cpArbiter.o + +# target to build an object file +cpArbiter.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpArbiter.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.o +.PHONY : cpArbiter.c.o + +cpArbiter.i: cpArbiter.c.i +.PHONY : cpArbiter.i + +# target to preprocess a source file +cpArbiter.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpArbiter.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.i +.PHONY : cpArbiter.c.i + +cpArbiter.s: cpArbiter.c.s +.PHONY : cpArbiter.s + +# target to generate assembly for a file +cpArbiter.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpArbiter.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpArbiter.c.s +.PHONY : cpArbiter.c.s + +cpArray.o: cpArray.c.o +.PHONY : cpArray.o + +# target to build an object file +cpArray.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpArray.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpArray.c.o +.PHONY : cpArray.c.o + +cpArray.i: cpArray.c.i +.PHONY : cpArray.i + +# target to preprocess a source file +cpArray.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpArray.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpArray.c.i +.PHONY : cpArray.c.i + +cpArray.s: cpArray.c.s +.PHONY : cpArray.s + +# target to generate assembly for a file +cpArray.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpArray.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpArray.c.s +.PHONY : cpArray.c.s + +cpBB.o: cpBB.c.o +.PHONY : cpBB.o + +# target to build an object file +cpBB.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpBB.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpBB.c.o +.PHONY : cpBB.c.o + +cpBB.i: cpBB.c.i +.PHONY : cpBB.i + +# target to preprocess a source file +cpBB.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpBB.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpBB.c.i +.PHONY : cpBB.c.i + +cpBB.s: cpBB.c.s +.PHONY : cpBB.s + +# target to generate assembly for a file +cpBB.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpBB.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpBB.c.s +.PHONY : cpBB.c.s + +cpBody.o: cpBody.c.o +.PHONY : cpBody.o + +# target to build an object file +cpBody.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpBody.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpBody.c.o +.PHONY : cpBody.c.o + +cpBody.i: cpBody.c.i +.PHONY : cpBody.i + +# target to preprocess a source file +cpBody.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpBody.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpBody.c.i +.PHONY : cpBody.c.i + +cpBody.s: cpBody.c.s +.PHONY : cpBody.s + +# target to generate assembly for a file +cpBody.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpBody.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpBody.c.s +.PHONY : cpBody.c.s + +cpCollision.o: cpCollision.c.o +.PHONY : cpCollision.o + +# target to build an object file +cpCollision.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpCollision.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpCollision.c.o +.PHONY : cpCollision.c.o + +cpCollision.i: cpCollision.c.i +.PHONY : cpCollision.i + +# target to preprocess a source file +cpCollision.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpCollision.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpCollision.c.i +.PHONY : cpCollision.c.i + +cpCollision.s: cpCollision.c.s +.PHONY : cpCollision.s + +# target to generate assembly for a file +cpCollision.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpCollision.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpCollision.c.s +.PHONY : cpCollision.c.s + +cpHashSet.o: cpHashSet.c.o +.PHONY : cpHashSet.o + +# target to build an object file +cpHashSet.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpHashSet.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.o +.PHONY : cpHashSet.c.o + +cpHashSet.i: cpHashSet.c.i +.PHONY : cpHashSet.i + +# target to preprocess a source file +cpHashSet.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpHashSet.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.i +.PHONY : cpHashSet.c.i + +cpHashSet.s: cpHashSet.c.s +.PHONY : cpHashSet.s + +# target to generate assembly for a file +cpHashSet.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpHashSet.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpHashSet.c.s +.PHONY : cpHashSet.c.s + +cpPolyShape.o: cpPolyShape.c.o +.PHONY : cpPolyShape.o + +# target to build an object file +cpPolyShape.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpPolyShape.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.o +.PHONY : cpPolyShape.c.o + +cpPolyShape.i: cpPolyShape.c.i +.PHONY : cpPolyShape.i + +# target to preprocess a source file +cpPolyShape.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpPolyShape.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.i +.PHONY : cpPolyShape.c.i + +cpPolyShape.s: cpPolyShape.c.s +.PHONY : cpPolyShape.s + +# target to generate assembly for a file +cpPolyShape.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpPolyShape.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpPolyShape.c.s +.PHONY : cpPolyShape.c.s + +cpShape.o: cpShape.c.o +.PHONY : cpShape.o + +# target to build an object file +cpShape.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpShape.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpShape.c.o +.PHONY : cpShape.c.o + +cpShape.i: cpShape.c.i +.PHONY : cpShape.i + +# target to preprocess a source file +cpShape.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpShape.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpShape.c.i +.PHONY : cpShape.c.i + +cpShape.s: cpShape.c.s +.PHONY : cpShape.s + +# target to generate assembly for a file +cpShape.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpShape.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpShape.c.s +.PHONY : cpShape.c.s + +cpSpace.o: cpSpace.c.o +.PHONY : cpSpace.o + +# target to build an object file +cpSpace.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpace.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpace.c.o +.PHONY : cpSpace.c.o + +cpSpace.i: cpSpace.c.i +.PHONY : cpSpace.i + +# target to preprocess a source file +cpSpace.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpace.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpace.c.i +.PHONY : cpSpace.c.i + +cpSpace.s: cpSpace.c.s +.PHONY : cpSpace.s + +# target to generate assembly for a file +cpSpace.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpace.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpace.c.s +.PHONY : cpSpace.c.s + +cpSpaceComponent.o: cpSpaceComponent.c.o +.PHONY : cpSpaceComponent.o + +# target to build an object file +cpSpaceComponent.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.o +.PHONY : cpSpaceComponent.c.o + +cpSpaceComponent.i: cpSpaceComponent.c.i +.PHONY : cpSpaceComponent.i + +# target to preprocess a source file +cpSpaceComponent.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.i +.PHONY : cpSpaceComponent.c.i + +cpSpaceComponent.s: cpSpaceComponent.c.s +.PHONY : cpSpaceComponent.s + +# target to generate assembly for a file +cpSpaceComponent.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceComponent.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceComponent.c.s +.PHONY : cpSpaceComponent.c.s + +cpSpaceHash.o: cpSpaceHash.c.o +.PHONY : cpSpaceHash.o + +# target to build an object file +cpSpaceHash.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.o +.PHONY : cpSpaceHash.c.o + +cpSpaceHash.i: cpSpaceHash.c.i +.PHONY : cpSpaceHash.i + +# target to preprocess a source file +cpSpaceHash.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.i +.PHONY : cpSpaceHash.c.i + +cpSpaceHash.s: cpSpaceHash.c.s +.PHONY : cpSpaceHash.s + +# target to generate assembly for a file +cpSpaceHash.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceHash.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceHash.c.s +.PHONY : cpSpaceHash.c.s + +cpSpaceQuery.o: cpSpaceQuery.c.o +.PHONY : cpSpaceQuery.o + +# target to build an object file +cpSpaceQuery.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.o +.PHONY : cpSpaceQuery.c.o + +cpSpaceQuery.i: cpSpaceQuery.c.i +.PHONY : cpSpaceQuery.i + +# target to preprocess a source file +cpSpaceQuery.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.i +.PHONY : cpSpaceQuery.c.i + +cpSpaceQuery.s: cpSpaceQuery.c.s +.PHONY : cpSpaceQuery.s + +# target to generate assembly for a file +cpSpaceQuery.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceQuery.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceQuery.c.s +.PHONY : cpSpaceQuery.c.s + +cpSpaceStep.o: cpSpaceStep.c.o +.PHONY : cpSpaceStep.o + +# target to build an object file +cpSpaceStep.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.o +.PHONY : cpSpaceStep.c.o + +cpSpaceStep.i: cpSpaceStep.c.i +.PHONY : cpSpaceStep.i + +# target to preprocess a source file +cpSpaceStep.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.i +.PHONY : cpSpaceStep.c.i + +cpSpaceStep.s: cpSpaceStep.c.s +.PHONY : cpSpaceStep.s + +# target to generate assembly for a file +cpSpaceStep.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpSpaceStep.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpSpaceStep.c.s +.PHONY : cpSpaceStep.c.s + +cpVect.o: cpVect.c.o +.PHONY : cpVect.o + +# target to build an object file +cpVect.c.o: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpVect.c.o + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpVect.c.o +.PHONY : cpVect.c.o + +cpVect.i: cpVect.c.i +.PHONY : cpVect.i + +# target to preprocess a source file +cpVect.c.i: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpVect.c.i + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpVect.c.i +.PHONY : cpVect.c.i + +cpVect.s: cpVect.c.s +.PHONY : cpVect.s + +# target to generate assembly for a file +cpVect.c.s: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk.dir/build.make src/CMakeFiles/chipmunk.dir/cpVect.c.s + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(MAKE) -f src/CMakeFiles/chipmunk_static.dir/build.make src/CMakeFiles/chipmunk_static.dir/cpVect.c.s +.PHONY : cpVect.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... chipmunk" + @echo "... chipmunk_static" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... chipmunk.o" + @echo "... chipmunk.i" + @echo "... chipmunk.s" + @echo "... constraints/cpConstraint.o" + @echo "... constraints/cpConstraint.i" + @echo "... constraints/cpConstraint.s" + @echo "... constraints/cpDampedRotarySpring.o" + @echo "... constraints/cpDampedRotarySpring.i" + @echo "... constraints/cpDampedRotarySpring.s" + @echo "... constraints/cpDampedSpring.o" + @echo "... constraints/cpDampedSpring.i" + @echo "... constraints/cpDampedSpring.s" + @echo "... constraints/cpGearJoint.o" + @echo "... constraints/cpGearJoint.i" + @echo "... constraints/cpGearJoint.s" + @echo "... constraints/cpGrooveJoint.o" + @echo "... constraints/cpGrooveJoint.i" + @echo "... constraints/cpGrooveJoint.s" + @echo "... constraints/cpPinJoint.o" + @echo "... constraints/cpPinJoint.i" + @echo "... constraints/cpPinJoint.s" + @echo "... constraints/cpPivotJoint.o" + @echo "... constraints/cpPivotJoint.i" + @echo "... constraints/cpPivotJoint.s" + @echo "... constraints/cpRatchetJoint.o" + @echo "... constraints/cpRatchetJoint.i" + @echo "... constraints/cpRatchetJoint.s" + @echo "... constraints/cpRotaryLimitJoint.o" + @echo "... constraints/cpRotaryLimitJoint.i" + @echo "... constraints/cpRotaryLimitJoint.s" + @echo "... constraints/cpSimpleMotor.o" + @echo "... constraints/cpSimpleMotor.i" + @echo "... constraints/cpSimpleMotor.s" + @echo "... constraints/cpSlideJoint.o" + @echo "... constraints/cpSlideJoint.i" + @echo "... constraints/cpSlideJoint.s" + @echo "... cpArbiter.o" + @echo "... cpArbiter.i" + @echo "... cpArbiter.s" + @echo "... cpArray.o" + @echo "... cpArray.i" + @echo "... cpArray.s" + @echo "... cpBB.o" + @echo "... cpBB.i" + @echo "... cpBB.s" + @echo "... cpBody.o" + @echo "... cpBody.i" + @echo "... cpBody.s" + @echo "... cpCollision.o" + @echo "... cpCollision.i" + @echo "... cpCollision.s" + @echo "... cpHashSet.o" + @echo "... cpHashSet.i" + @echo "... cpHashSet.s" + @echo "... cpPolyShape.o" + @echo "... cpPolyShape.i" + @echo "... cpPolyShape.s" + @echo "... cpShape.o" + @echo "... cpShape.i" + @echo "... cpShape.s" + @echo "... cpSpace.o" + @echo "... cpSpace.i" + @echo "... cpSpace.s" + @echo "... cpSpaceComponent.o" + @echo "... cpSpaceComponent.i" + @echo "... cpSpaceComponent.s" + @echo "... cpSpaceHash.o" + @echo "... cpSpaceHash.i" + @echo "... cpSpaceHash.s" + @echo "... cpSpaceQuery.o" + @echo "... cpSpaceQuery.i" + @echo "... cpSpaceQuery.s" + @echo "... cpSpaceStep.o" + @echo "... cpSpaceStep.i" + @echo "... cpSpaceStep.s" + @echo "... cpVect.o" + @echo "... cpVect.i" + @echo "... cpVect.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/laschweinski/git/cocos2d-x/chipmunk && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/cocos2dx/AndroidRelease/libcocos2dx-base.REMOVED.git-id b/cocos2dx/AndroidRelease/libcocos2dx-base.REMOVED.git-id deleted file mode 100644 index 08d2dfaf43..0000000000 --- a/cocos2dx/AndroidRelease/libcocos2dx-base.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -fce974f66e5fa717d51a772d72c953a041e3f1d4 \ No newline at end of file diff --git a/cocos2dx/platform/third_party/linux/curl/Makefile.in b/cocos2dx/platform/third_party/linux/curl/Makefile.in new file mode 100644 index 0000000000..62cf5fe80d --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/Makefile.in @@ -0,0 +1,560 @@ +# Makefile.in generated by automake 1.9.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +top_builddir = ../.. +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = @INSTALL@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = include/curl +DIST_COMMON = $(pkginclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(srcdir)/curlbuild.h.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/curl-compilers.m4 \ + $(top_srcdir)/m4/curl-confopts.m4 \ + $(top_srcdir)/m4/curl-functions.m4 \ + $(top_srcdir)/m4/curl-openssl.m4 \ + $(top_srcdir)/m4/curl-override.m4 \ + $(top_srcdir)/m4/curl-reentrant.m4 \ + $(top_srcdir)/m4/curl-system.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/xc-translit.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/lib/curl_config.h \ + $(top_builddir)/src/curl_config.h curlbuild.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(pkgincludedir)" +pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(pkginclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +pkgincludedir = $(includedir)/curl +ACLOCAL = @ACLOCAL@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AR = @AR@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BUILD_LIBHOSTNAME_FALSE = @BUILD_LIBHOSTNAME_FALSE@ +BUILD_LIBHOSTNAME_TRUE = @BUILD_LIBHOSTNAME_TRUE@ +BUILD_UNITTESTS_FALSE = @BUILD_UNITTESTS_FALSE@ +BUILD_UNITTESTS_TRUE = @BUILD_UNITTESTS_TRUE@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CROSSCOMPILING_FALSE = @CROSSCOMPILING_FALSE@ +CROSSCOMPILING_TRUE = @CROSSCOMPILING_TRUE@ +CURLDEBUG_FALSE = @CURLDEBUG_FALSE@ +CURLDEBUG_TRUE = @CURLDEBUG_TRUE@ +CURLVERSION = @CURLVERSION@ +CURL_CA_BUNDLE = @CURL_CA_BUNDLE@ +CURL_CFLAG_EXTRAS = @CURL_CFLAG_EXTRAS@ +CURL_DISABLE_DICT = @CURL_DISABLE_DICT@ +CURL_DISABLE_FILE = @CURL_DISABLE_FILE@ +CURL_DISABLE_FTP = @CURL_DISABLE_FTP@ +CURL_DISABLE_GOPHER = @CURL_DISABLE_GOPHER@ +CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@ +CURL_DISABLE_IMAP = @CURL_DISABLE_IMAP@ +CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@ +CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@ +CURL_DISABLE_POP3 = @CURL_DISABLE_POP3@ +CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@ +CURL_DISABLE_RTSP = @CURL_DISABLE_RTSP@ +CURL_DISABLE_SMTP = @CURL_DISABLE_SMTP@ +CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@ +CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@ +CURL_LIBS = @CURL_LIBS@ +CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENABLE_SHARED = @ENABLE_SHARED@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GREP = @GREP@ +HAVE_GNUTLS_SRP = @HAVE_GNUTLS_SRP@ +HAVE_LDAP_SSL = @HAVE_LDAP_SSL@ +HAVE_LIBZ = @HAVE_LIBZ@ +HAVE_LIBZ_FALSE = @HAVE_LIBZ_FALSE@ +HAVE_LIBZ_TRUE = @HAVE_LIBZ_TRUE@ +HAVE_PK11_CREATEGENERICOBJECT = @HAVE_PK11_CREATEGENERICOBJECT@ +HAVE_SSLEAY_SRP = @HAVE_SSLEAY_SRP@ +IDN_ENABLED = @IDN_ENABLED@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +IPV6_ENABLED = @IPV6_ENABLED@ +KRB4_ENABLED = @KRB4_ENABLED@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBCURL_LIBS = @LIBCURL_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MANOPT = @MANOPT@ +MIMPURE_FALSE = @MIMPURE_FALSE@ +MIMPURE_TRUE = @MIMPURE_TRUE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +NO_UNDEFINED_FALSE = @NO_UNDEFINED_FALSE@ +NO_UNDEFINED_TRUE = @NO_UNDEFINED_TRUE@ +NROFF = @NROFF@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH = @PATH@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +PKGADD_NAME = @PKGADD_NAME@ +PKGADD_PKG = @PKGADD_PKG@ +PKGADD_VENDOR = @PKGADD_VENDOR@ +PKGCONFIG = @PKGCONFIG@ +RANDOM_FILE = @RANDOM_FILE@ +RANLIB = @RANLIB@ +REQUIRE_LIB_DEPS = @REQUIRE_LIB_DEPS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SONAME_BUMP_FALSE = @SONAME_BUMP_FALSE@ +SONAME_BUMP_TRUE = @SONAME_BUMP_TRUE@ +SSL_ENABLED = @SSL_ENABLED@ +STATICLIB_FALSE = @STATICLIB_FALSE@ +STATICLIB_TRUE = @STATICLIB_TRUE@ +STRIP = @STRIP@ +SUPPORT_FEATURES = @SUPPORT_FEATURES@ +SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@ +TEST_SERVER_LIBS = @TEST_SERVER_LIBS@ +USE_ARES = @USE_ARES@ +USE_AXTLS = @USE_AXTLS@ +USE_CYASSL = @USE_CYASSL@ +USE_EMBEDDED_ARES_FALSE = @USE_EMBEDDED_ARES_FALSE@ +USE_EMBEDDED_ARES_TRUE = @USE_EMBEDDED_ARES_TRUE@ +USE_GNUTLS = @USE_GNUTLS@ +USE_LIBRTMP = @USE_LIBRTMP@ +USE_LIBSSH2 = @USE_LIBSSH2@ +USE_MANUAL_FALSE = @USE_MANUAL_FALSE@ +USE_MANUAL_TRUE = @USE_MANUAL_TRUE@ +USE_NSS = @USE_NSS@ +USE_OPENLDAP = @USE_OPENLDAP@ +USE_POLARSSL = @USE_POLARSSL@ +USE_SSLEAY = @USE_SSLEAY@ +USE_WINDOWS_SSPI = @USE_WINDOWS_SSPI@ +VERSION = @VERSION@ +VERSIONNUM = @VERSIONNUM@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +libext = @libext@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +subdirs = @subdirs@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ + +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at http://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### +pkginclude_HEADERS = \ + curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h \ + typecheck-gcc.h curlbuild.h curlrules.h + + +# curlbuild.h does not exist in the git tree. When the original libcurl +# source code distribution archive file is created, curlbuild.h.dist is +# renamed to curlbuild.h and included in the tarball so that it can be +# used directly on non-configure systems. +# +# The distributed curlbuild.h will be overwritten on configure systems +# when the configure script runs, with one that is suitable and specific +# to the library being configured and built. +# +# curlbuild.h.in is the distributed template file from which the configure +# script creates curlbuild.h at library configuration time, overwiting the +# one included in the distribution archive. +# +# curlbuild.h.dist is not included in the source code distribution archive. +EXTRA_DIST = curlbuild.h.in +DISTCLEANFILES = curlbuild.h +all: curlbuild.h + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign include/curl/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --foreign include/curl/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +curlbuild.h: stamp-h3 + @if test ! -f $@; then \ + rm -f stamp-h3; \ + $(MAKE) stamp-h3; \ + else :; fi + +stamp-h3: $(srcdir)/curlbuild.h.in $(top_builddir)/config.status + @rm -f stamp-h3 + cd $(top_builddir) && $(SHELL) ./config.status include/curl/curlbuild.h +$(srcdir)/curlbuild.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_srcdir) && $(AUTOHEADER) + rm -f stamp-h3 + touch $@ + +distclean-hdr: + -rm -f curlbuild.h stamp-h3 + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: +install-pkgincludeHEADERS: $(pkginclude_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" + @list='$(pkginclude_HEADERS)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(pkgincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \ + $(pkgincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \ + done + +uninstall-pkgincludeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(pkginclude_HEADERS)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \ + rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) curlbuild.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) curlbuild.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) curlbuild.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) curlbuild.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +@CURLDEBUG_FALSE@all-local: +all-am: Makefile $(HEADERS) curlbuild.h all-local +installdirs: + for dir in "$(DESTDIR)$(pkgincludedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-hdr \ + distclean-libtool distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-pkgincludeHEADERS + +install-exec-am: + +install-info: install-info-am + +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS + +.PHONY: CTAGS GTAGS all all-am all-local check check-am clean \ + clean-generic clean-libtool ctags distclean distclean-generic \ + distclean-hdr distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man \ + install-pkgincludeHEADERS install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-info-am uninstall-pkgincludeHEADERS + + +checksrc: + @@PERL@ $(top_srcdir)/lib/checksrc.pl -Wcurlbuild.h -D$(top_srcdir)/include/curl $(pkginclude_HEADERS) $(EXTRA_DIST) + +# for debug builds, we scan the sources on all regular make invokes +@CURLDEBUG_TRUE@all-local: checksrc +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/cocos2dx/platform/third_party/linux/curl/curl.h b/cocos2dx/platform/third_party/linux/curl/curl.h new file mode 100644 index 0000000000..a9d42fad69 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/curl.h @@ -0,0 +1,2174 @@ +#ifndef __CURL_CURL_H +#define __CURL_CURL_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ + +/* + * If you have libcurl problems, all docs and details are found here: + * http://curl.haxx.se/libcurl/ + * + * curl-library mailing list subscription and unsubscription web interface: + * http://cool.haxx.se/mailman/listinfo/curl-library/ + */ + +#include "curlver.h" /* libcurl version defines */ +#include "curlbuild.h" /* libcurl build definitions */ +#include "curlrules.h" /* libcurl rules enforcement */ + +/* + * Define WIN32 when build target is Win32 API + */ + +#if (defined(_WIN32) || defined(__WIN32__)) && \ + !defined(WIN32) && !defined(__SYMBIAN32__) +#define WIN32 +#endif + +#include <stdio.h> +#include <limits.h> + +#if defined(__FreeBSD__) && (__FreeBSD__ >= 2) +/* Needed for __FreeBSD_version symbol definition */ +#include <osreldate.h> +#endif + +/* The include stuff here below is mainly for time_t! */ +#include <sys/types.h> +#include <time.h> + +#if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__GNUC__) && \ + !defined(__CYGWIN__) || defined(__MINGW32__) +#if !(defined(_WINSOCKAPI_) || defined(_WINSOCK_H)) +/* The check above prevents the winsock2 inclusion if winsock.h already was + included, since they can't co-exist without problems */ +#include <winsock2.h> +#include <ws2tcpip.h> +#endif +#else + +/* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish + libc5-based Linux systems. Only include it on system that are known to + require it! */ +#if defined(_AIX) || defined(__NOVELL_LIBC__) || defined(__NetBSD__) || \ + defined(__minix) || defined(__SYMBIAN32__) || defined(__INTEGRITY) || \ + defined(ANDROID) || \ + (defined(__FreeBSD_version) && (__FreeBSD_version < 800000)) +#include <sys/select.h> +#endif + +#ifndef _WIN32_WCE +#include <sys/socket.h> +#endif +#if !defined(WIN32) && !defined(__WATCOMC__) && !defined(__VXWORKS__) +#include <sys/time.h> +#endif +#include <sys/types.h> +#endif + +#ifdef __BEOS__ +#include <support/SupportDefs.h> +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +typedef void CURL; + +/* + * Decorate exportable functions for Win32 and Symbian OS DLL linking. + * This avoids using a .def file for building libcurl.dll. + */ +#if (defined(WIN32) || defined(_WIN32) || defined(__SYMBIAN32__)) && \ + !defined(CURL_STATICLIB) +#if defined(BUILDING_LIBCURL) +#define CURL_EXTERN __declspec(dllexport) +#else +#define CURL_EXTERN __declspec(dllimport) +#endif +#else + +#ifdef CURL_HIDDEN_SYMBOLS +/* + * This definition is used to make external definitions visible in the + * shared library when symbols are hidden by default. It makes no + * difference when compiling applications whether this is set or not, + * only when compiling the library. + */ +#define CURL_EXTERN CURL_EXTERN_SYMBOL +#else +#define CURL_EXTERN +#endif +#endif + +#ifndef curl_socket_typedef +/* socket typedef */ +#ifdef WIN32 +typedef SOCKET curl_socket_t; +#define CURL_SOCKET_BAD INVALID_SOCKET +#else +typedef int curl_socket_t; +#define CURL_SOCKET_BAD -1 +#endif +#define curl_socket_typedef +#endif /* curl_socket_typedef */ + +struct curl_httppost { + struct curl_httppost *next; /* next entry in the list */ + char *name; /* pointer to allocated name */ + long namelength; /* length of name length */ + char *contents; /* pointer to allocated data contents */ + long contentslength; /* length of contents field */ + char *buffer; /* pointer to allocated buffer contents */ + long bufferlength; /* length of buffer field */ + char *contenttype; /* Content-Type */ + struct curl_slist* contentheader; /* list of extra headers for this form */ + struct curl_httppost *more; /* if one field name has more than one + file, this link should link to following + files */ + long flags; /* as defined below */ +#define HTTPPOST_FILENAME (1<<0) /* specified content is a file name */ +#define HTTPPOST_READFILE (1<<1) /* specified content is a file name */ +#define HTTPPOST_PTRNAME (1<<2) /* name is only stored pointer + do not free in formfree */ +#define HTTPPOST_PTRCONTENTS (1<<3) /* contents is only stored pointer + do not free in formfree */ +#define HTTPPOST_BUFFER (1<<4) /* upload file from buffer */ +#define HTTPPOST_PTRBUFFER (1<<5) /* upload file from pointer contents */ +#define HTTPPOST_CALLBACK (1<<6) /* upload file contents by using the + regular read callback to get the data + and pass the given pointer as custom + pointer */ + + char *showfilename; /* The file name to show. If not set, the + actual file name will be used (if this + is a file part) */ + void *userp; /* custom pointer used for + HTTPPOST_CALLBACK posts */ +}; + +typedef int (*curl_progress_callback)(void *clientp, + double dltotal, + double dlnow, + double ultotal, + double ulnow); + +#ifndef CURL_MAX_WRITE_SIZE + /* Tests have proven that 20K is a very bad buffer size for uploads on + Windows, while 16K for some odd reason performed a lot better. + We do the ifndef check to allow this value to easier be changed at build + time for those who feel adventurous. The practical minimum is about + 400 bytes since libcurl uses a buffer of this size as a scratch area + (unrelated to network send operations). */ +#define CURL_MAX_WRITE_SIZE 16384 +#endif + +#ifndef CURL_MAX_HTTP_HEADER +/* The only reason to have a max limit for this is to avoid the risk of a bad + server feeding libcurl with a never-ending header that will cause reallocs + infinitely */ +#define CURL_MAX_HTTP_HEADER (100*1024) +#endif + + +/* This is a magic return code for the write callback that, when returned, + will signal libcurl to pause receiving on the current transfer. */ +#define CURL_WRITEFUNC_PAUSE 0x10000001 +typedef size_t (*curl_write_callback)(char *buffer, + size_t size, + size_t nitems, + void *outstream); + + + +/* enumeration of file types */ +typedef enum { + CURLFILETYPE_FILE = 0, + CURLFILETYPE_DIRECTORY, + CURLFILETYPE_SYMLINK, + CURLFILETYPE_DEVICE_BLOCK, + CURLFILETYPE_DEVICE_CHAR, + CURLFILETYPE_NAMEDPIPE, + CURLFILETYPE_SOCKET, + CURLFILETYPE_DOOR, /* is possible only on Sun Solaris now */ + + CURLFILETYPE_UNKNOWN /* should never occur */ +} curlfiletype; + +#define CURLFINFOFLAG_KNOWN_FILENAME (1<<0) +#define CURLFINFOFLAG_KNOWN_FILETYPE (1<<1) +#define CURLFINFOFLAG_KNOWN_TIME (1<<2) +#define CURLFINFOFLAG_KNOWN_PERM (1<<3) +#define CURLFINFOFLAG_KNOWN_UID (1<<4) +#define CURLFINFOFLAG_KNOWN_GID (1<<5) +#define CURLFINFOFLAG_KNOWN_SIZE (1<<6) +#define CURLFINFOFLAG_KNOWN_HLINKCOUNT (1<<7) + +/* Content of this structure depends on information which is known and is + achievable (e.g. by FTP LIST parsing). Please see the url_easy_setopt(3) man + page for callbacks returning this structure -- some fields are mandatory, + some others are optional. The FLAG field has special meaning. */ +struct curl_fileinfo { + char *filename; + curlfiletype filetype; + time_t time; + unsigned int perm; + int uid; + int gid; + curl_off_t size; + long int hardlinks; + + struct { + /* If some of these fields is not NULL, it is a pointer to b_data. */ + char *time; + char *perm; + char *user; + char *group; + char *target; /* pointer to the target filename of a symlink */ + } strings; + + unsigned int flags; + + /* used internally */ + char * b_data; + size_t b_size; + size_t b_used; +}; + +/* return codes for CURLOPT_CHUNK_BGN_FUNCTION */ +#define CURL_CHUNK_BGN_FUNC_OK 0 +#define CURL_CHUNK_BGN_FUNC_FAIL 1 /* tell the lib to end the task */ +#define CURL_CHUNK_BGN_FUNC_SKIP 2 /* skip this chunk over */ + +/* if splitting of data transfer is enabled, this callback is called before + download of an individual chunk started. Note that parameter "remains" works + only for FTP wildcard downloading (for now), otherwise is not used */ +typedef long (*curl_chunk_bgn_callback)(const void *transfer_info, + void *ptr, + int remains); + +/* return codes for CURLOPT_CHUNK_END_FUNCTION */ +#define CURL_CHUNK_END_FUNC_OK 0 +#define CURL_CHUNK_END_FUNC_FAIL 1 /* tell the lib to end the task */ + +/* If splitting of data transfer is enabled this callback is called after + download of an individual chunk finished. + Note! After this callback was set then it have to be called FOR ALL chunks. + Even if downloading of this chunk was skipped in CHUNK_BGN_FUNC. + This is the reason why we don't need "transfer_info" parameter in this + callback and we are not interested in "remains" parameter too. */ +typedef long (*curl_chunk_end_callback)(void *ptr); + +/* return codes for FNMATCHFUNCTION */ +#define CURL_FNMATCHFUNC_MATCH 0 /* string corresponds to the pattern */ +#define CURL_FNMATCHFUNC_NOMATCH 1 /* pattern doesn't match the string */ +#define CURL_FNMATCHFUNC_FAIL 2 /* an error occurred */ + +/* callback type for wildcard downloading pattern matching. If the + string matches the pattern, return CURL_FNMATCHFUNC_MATCH value, etc. */ +typedef int (*curl_fnmatch_callback)(void *ptr, + const char *pattern, + const char *string); + +/* These are the return codes for the seek callbacks */ +#define CURL_SEEKFUNC_OK 0 +#define CURL_SEEKFUNC_FAIL 1 /* fail the entire transfer */ +#define CURL_SEEKFUNC_CANTSEEK 2 /* tell libcurl seeking can't be done, so + libcurl might try other means instead */ +typedef int (*curl_seek_callback)(void *instream, + curl_off_t offset, + int origin); /* 'whence' */ + +/* This is a return code for the read callback that, when returned, will + signal libcurl to immediately abort the current transfer. */ +#define CURL_READFUNC_ABORT 0x10000000 +/* This is a return code for the read callback that, when returned, will + signal libcurl to pause sending data on the current transfer. */ +#define CURL_READFUNC_PAUSE 0x10000001 + +typedef size_t (*curl_read_callback)(char *buffer, + size_t size, + size_t nitems, + void *instream); + +typedef enum { + CURLSOCKTYPE_IPCXN, /* socket created for a specific IP connection */ + CURLSOCKTYPE_LAST /* never use */ +} curlsocktype; + +/* The return code from the sockopt_callback can signal information back + to libcurl: */ +#define CURL_SOCKOPT_OK 0 +#define CURL_SOCKOPT_ERROR 1 /* causes libcurl to abort and return + CURLE_ABORTED_BY_CALLBACK */ +#define CURL_SOCKOPT_ALREADY_CONNECTED 2 + +typedef int (*curl_sockopt_callback)(void *clientp, + curl_socket_t curlfd, + curlsocktype purpose); + +struct curl_sockaddr { + int family; + int socktype; + int protocol; + unsigned int addrlen; /* addrlen was a socklen_t type before 7.18.0 but it + turned really ugly and painful on the systems that + lack this type */ + struct sockaddr addr; +}; + +typedef curl_socket_t +(*curl_opensocket_callback)(void *clientp, + curlsocktype purpose, + struct curl_sockaddr *address); + +typedef int +(*curl_closesocket_callback)(void *clientp, curl_socket_t item); + +typedef enum { + CURLIOE_OK, /* I/O operation successful */ + CURLIOE_UNKNOWNCMD, /* command was unknown to callback */ + CURLIOE_FAILRESTART, /* failed to restart the read */ + CURLIOE_LAST /* never use */ +} curlioerr; + +typedef enum { + CURLIOCMD_NOP, /* no operation */ + CURLIOCMD_RESTARTREAD, /* restart the read stream from start */ + CURLIOCMD_LAST /* never use */ +} curliocmd; + +typedef curlioerr (*curl_ioctl_callback)(CURL *handle, + int cmd, + void *clientp); + +/* + * The following typedef's are signatures of malloc, free, realloc, strdup and + * calloc respectively. Function pointers of these types can be passed to the + * curl_global_init_mem() function to set user defined memory management + * callback routines. + */ +typedef void *(*curl_malloc_callback)(size_t size); +typedef void (*curl_free_callback)(void *ptr); +typedef void *(*curl_realloc_callback)(void *ptr, size_t size); +typedef char *(*curl_strdup_callback)(const char *str); +typedef void *(*curl_calloc_callback)(size_t nmemb, size_t size); + +/* the kind of data that is passed to information_callback*/ +typedef enum { + CURLINFO_TEXT = 0, + CURLINFO_HEADER_IN, /* 1 */ + CURLINFO_HEADER_OUT, /* 2 */ + CURLINFO_DATA_IN, /* 3 */ + CURLINFO_DATA_OUT, /* 4 */ + CURLINFO_SSL_DATA_IN, /* 5 */ + CURLINFO_SSL_DATA_OUT, /* 6 */ + CURLINFO_END +} curl_infotype; + +typedef int (*curl_debug_callback) + (CURL *handle, /* the handle/transfer this concerns */ + curl_infotype type, /* what kind of data */ + char *data, /* points to the data */ + size_t size, /* size of the data pointed to */ + void *userptr); /* whatever the user please */ + +/* All possible error codes from all sorts of curl functions. Future versions + may return other values, stay prepared. + + Always add new return codes last. Never *EVER* remove any. The return + codes must remain the same! + */ + +typedef enum { + CURLE_OK = 0, + CURLE_UNSUPPORTED_PROTOCOL, /* 1 */ + CURLE_FAILED_INIT, /* 2 */ + CURLE_URL_MALFORMAT, /* 3 */ + CURLE_NOT_BUILT_IN, /* 4 - [was obsoleted in August 2007 for + 7.17.0, reused in April 2011 for 7.21.5] */ + CURLE_COULDNT_RESOLVE_PROXY, /* 5 */ + CURLE_COULDNT_RESOLVE_HOST, /* 6 */ + CURLE_COULDNT_CONNECT, /* 7 */ + CURLE_FTP_WEIRD_SERVER_REPLY, /* 8 */ + CURLE_REMOTE_ACCESS_DENIED, /* 9 a service was denied by the server + due to lack of access - when login fails + this is not returned. */ + CURLE_OBSOLETE10, /* 10 - NOT USED */ + CURLE_FTP_WEIRD_PASS_REPLY, /* 11 */ + CURLE_OBSOLETE12, /* 12 - NOT USED */ + CURLE_FTP_WEIRD_PASV_REPLY, /* 13 */ + CURLE_FTP_WEIRD_227_FORMAT, /* 14 */ + CURLE_FTP_CANT_GET_HOST, /* 15 */ + CURLE_OBSOLETE16, /* 16 - NOT USED */ + CURLE_FTP_COULDNT_SET_TYPE, /* 17 */ + CURLE_PARTIAL_FILE, /* 18 */ + CURLE_FTP_COULDNT_RETR_FILE, /* 19 */ + CURLE_OBSOLETE20, /* 20 - NOT USED */ + CURLE_QUOTE_ERROR, /* 21 - quote command failure */ + CURLE_HTTP_RETURNED_ERROR, /* 22 */ + CURLE_WRITE_ERROR, /* 23 */ + CURLE_OBSOLETE24, /* 24 - NOT USED */ + CURLE_UPLOAD_FAILED, /* 25 - failed upload "command" */ + CURLE_READ_ERROR, /* 26 - couldn't open/read from file */ + CURLE_OUT_OF_MEMORY, /* 27 */ + /* Note: CURLE_OUT_OF_MEMORY may sometimes indicate a conversion error + instead of a memory allocation error if CURL_DOES_CONVERSIONS + is defined + */ + CURLE_OPERATION_TIMEDOUT, /* 28 - the timeout time was reached */ + CURLE_OBSOLETE29, /* 29 - NOT USED */ + CURLE_FTP_PORT_FAILED, /* 30 - FTP PORT operation failed */ + CURLE_FTP_COULDNT_USE_REST, /* 31 - the REST command failed */ + CURLE_OBSOLETE32, /* 32 - NOT USED */ + CURLE_RANGE_ERROR, /* 33 - RANGE "command" didn't work */ + CURLE_HTTP_POST_ERROR, /* 34 */ + CURLE_SSL_CONNECT_ERROR, /* 35 - wrong when connecting with SSL */ + CURLE_BAD_DOWNLOAD_RESUME, /* 36 - couldn't resume download */ + CURLE_FILE_COULDNT_READ_FILE, /* 37 */ + CURLE_LDAP_CANNOT_BIND, /* 38 */ + CURLE_LDAP_SEARCH_FAILED, /* 39 */ + CURLE_OBSOLETE40, /* 40 - NOT USED */ + CURLE_FUNCTION_NOT_FOUND, /* 41 */ + CURLE_ABORTED_BY_CALLBACK, /* 42 */ + CURLE_BAD_FUNCTION_ARGUMENT, /* 43 */ + CURLE_OBSOLETE44, /* 44 - NOT USED */ + CURLE_INTERFACE_FAILED, /* 45 - CURLOPT_INTERFACE failed */ + CURLE_OBSOLETE46, /* 46 - NOT USED */ + CURLE_TOO_MANY_REDIRECTS , /* 47 - catch endless re-direct loops */ + CURLE_UNKNOWN_OPTION, /* 48 - User specified an unknown option */ + CURLE_TELNET_OPTION_SYNTAX , /* 49 - Malformed telnet option */ + CURLE_OBSOLETE50, /* 50 - NOT USED */ + CURLE_PEER_FAILED_VERIFICATION, /* 51 - peer's certificate or fingerprint + wasn't verified fine */ + CURLE_GOT_NOTHING, /* 52 - when this is a specific error */ + CURLE_SSL_ENGINE_NOTFOUND, /* 53 - SSL crypto engine not found */ + CURLE_SSL_ENGINE_SETFAILED, /* 54 - can not set SSL crypto engine as + default */ + CURLE_SEND_ERROR, /* 55 - failed sending network data */ + CURLE_RECV_ERROR, /* 56 - failure in receiving network data */ + CURLE_OBSOLETE57, /* 57 - NOT IN USE */ + CURLE_SSL_CERTPROBLEM, /* 58 - problem with the local certificate */ + CURLE_SSL_CIPHER, /* 59 - couldn't use specified cipher */ + CURLE_SSL_CACERT, /* 60 - problem with the CA cert (path?) */ + CURLE_BAD_CONTENT_ENCODING, /* 61 - Unrecognized/bad encoding */ + CURLE_LDAP_INVALID_URL, /* 62 - Invalid LDAP URL */ + CURLE_FILESIZE_EXCEEDED, /* 63 - Maximum file size exceeded */ + CURLE_USE_SSL_FAILED, /* 64 - Requested FTP SSL level failed */ + CURLE_SEND_FAIL_REWIND, /* 65 - Sending the data requires a rewind + that failed */ + CURLE_SSL_ENGINE_INITFAILED, /* 66 - failed to initialise ENGINE */ + CURLE_LOGIN_DENIED, /* 67 - user, password or similar was not + accepted and we failed to login */ + CURLE_TFTP_NOTFOUND, /* 68 - file not found on server */ + CURLE_TFTP_PERM, /* 69 - permission problem on server */ + CURLE_REMOTE_DISK_FULL, /* 70 - out of disk space on server */ + CURLE_TFTP_ILLEGAL, /* 71 - Illegal TFTP operation */ + CURLE_TFTP_UNKNOWNID, /* 72 - Unknown transfer ID */ + CURLE_REMOTE_FILE_EXISTS, /* 73 - File already exists */ + CURLE_TFTP_NOSUCHUSER, /* 74 - No such user */ + CURLE_CONV_FAILED, /* 75 - conversion failed */ + CURLE_CONV_REQD, /* 76 - caller must register conversion + callbacks using curl_easy_setopt options + CURLOPT_CONV_FROM_NETWORK_FUNCTION, + CURLOPT_CONV_TO_NETWORK_FUNCTION, and + CURLOPT_CONV_FROM_UTF8_FUNCTION */ + CURLE_SSL_CACERT_BADFILE, /* 77 - could not load CACERT file, missing + or wrong format */ + CURLE_REMOTE_FILE_NOT_FOUND, /* 78 - remote file not found */ + CURLE_SSH, /* 79 - error from the SSH layer, somewhat + generic so the error message will be of + interest when this has happened */ + + CURLE_SSL_SHUTDOWN_FAILED, /* 80 - Failed to shut down the SSL + connection */ + CURLE_AGAIN, /* 81 - socket is not ready for send/recv, + wait till it's ready and try again (Added + in 7.18.2) */ + CURLE_SSL_CRL_BADFILE, /* 82 - could not load CRL file, missing or + wrong format (Added in 7.19.0) */ + CURLE_SSL_ISSUER_ERROR, /* 83 - Issuer check failed. (Added in + 7.19.0) */ + CURLE_FTP_PRET_FAILED, /* 84 - a PRET command failed */ + CURLE_RTSP_CSEQ_ERROR, /* 85 - mismatch of RTSP CSeq numbers */ + CURLE_RTSP_SESSION_ERROR, /* 86 - mismatch of RTSP Session Ids */ + CURLE_FTP_BAD_FILE_LIST, /* 87 - unable to parse FTP file list */ + CURLE_CHUNK_FAILED, /* 88 - chunk callback reported error */ + + CURL_LAST /* never use! */ +} CURLcode; + +#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all + the obsolete stuff removed! */ + +/* compatibility with older names */ +#define CURLOPT_ENCODING CURLOPT_ACCEPT_ENCODING + +/* The following were added in 7.21.5, April 2011 */ +#define CURLE_UNKNOWN_TELNET_OPTION CURLE_UNKNOWN_OPTION + +/* The following were added in 7.17.1 */ +/* These are scheduled to disappear by 2009 */ +#define CURLE_SSL_PEER_CERTIFICATE CURLE_PEER_FAILED_VERIFICATION + +/* The following were added in 7.17.0 */ +/* These are scheduled to disappear by 2009 */ +#define CURLE_OBSOLETE CURLE_OBSOLETE50 /* no one should be using this! */ +#define CURLE_BAD_PASSWORD_ENTERED CURLE_OBSOLETE46 +#define CURLE_BAD_CALLING_ORDER CURLE_OBSOLETE44 +#define CURLE_FTP_USER_PASSWORD_INCORRECT CURLE_OBSOLETE10 +#define CURLE_FTP_CANT_RECONNECT CURLE_OBSOLETE16 +#define CURLE_FTP_COULDNT_GET_SIZE CURLE_OBSOLETE32 +#define CURLE_FTP_COULDNT_SET_ASCII CURLE_OBSOLETE29 +#define CURLE_FTP_WEIRD_USER_REPLY CURLE_OBSOLETE12 +#define CURLE_FTP_WRITE_ERROR CURLE_OBSOLETE20 +#define CURLE_LIBRARY_NOT_FOUND CURLE_OBSOLETE40 +#define CURLE_MALFORMAT_USER CURLE_OBSOLETE24 +#define CURLE_SHARE_IN_USE CURLE_OBSOLETE57 +#define CURLE_URL_MALFORMAT_USER CURLE_NOT_BUILT_IN + +#define CURLE_FTP_ACCESS_DENIED CURLE_REMOTE_ACCESS_DENIED +#define CURLE_FTP_COULDNT_SET_BINARY CURLE_FTP_COULDNT_SET_TYPE +#define CURLE_FTP_QUOTE_ERROR CURLE_QUOTE_ERROR +#define CURLE_TFTP_DISKFULL CURLE_REMOTE_DISK_FULL +#define CURLE_TFTP_EXISTS CURLE_REMOTE_FILE_EXISTS +#define CURLE_HTTP_RANGE_ERROR CURLE_RANGE_ERROR +#define CURLE_FTP_SSL_FAILED CURLE_USE_SSL_FAILED + +/* The following were added earlier */ + +#define CURLE_OPERATION_TIMEOUTED CURLE_OPERATION_TIMEDOUT + +#define CURLE_HTTP_NOT_FOUND CURLE_HTTP_RETURNED_ERROR +#define CURLE_HTTP_PORT_FAILED CURLE_INTERFACE_FAILED +#define CURLE_FTP_COULDNT_STOR_FILE CURLE_UPLOAD_FAILED + +#define CURLE_FTP_PARTIAL_FILE CURLE_PARTIAL_FILE +#define CURLE_FTP_BAD_DOWNLOAD_RESUME CURLE_BAD_DOWNLOAD_RESUME + +/* This was the error code 50 in 7.7.3 and a few earlier versions, this + is no longer used by libcurl but is instead #defined here only to not + make programs break */ +#define CURLE_ALREADY_COMPLETE 99999 + +#endif /*!CURL_NO_OLDIES*/ + +/* This prototype applies to all conversion callbacks */ +typedef CURLcode (*curl_conv_callback)(char *buffer, size_t length); + +typedef CURLcode (*curl_ssl_ctx_callback)(CURL *curl, /* easy handle */ + void *ssl_ctx, /* actually an + OpenSSL SSL_CTX */ + void *userptr); + +typedef enum { + CURLPROXY_HTTP = 0, /* added in 7.10, new in 7.19.4 default is to use + CONNECT HTTP/1.1 */ + CURLPROXY_HTTP_1_0 = 1, /* added in 7.19.4, force to use CONNECT + HTTP/1.0 */ + CURLPROXY_SOCKS4 = 4, /* support added in 7.15.2, enum existed already + in 7.10 */ + CURLPROXY_SOCKS5 = 5, /* added in 7.10 */ + CURLPROXY_SOCKS4A = 6, /* added in 7.18.0 */ + CURLPROXY_SOCKS5_HOSTNAME = 7 /* Use the SOCKS5 protocol but pass along the + host name rather than the IP address. added + in 7.18.0 */ +} curl_proxytype; /* this enum was added in 7.10 */ + +#define CURLAUTH_NONE 0 /* nothing */ +#define CURLAUTH_BASIC (1<<0) /* Basic (default) */ +#define CURLAUTH_DIGEST (1<<1) /* Digest */ +#define CURLAUTH_GSSNEGOTIATE (1<<2) /* GSS-Negotiate */ +#define CURLAUTH_NTLM (1<<3) /* NTLM */ +#define CURLAUTH_DIGEST_IE (1<<4) /* Digest with IE flavour */ +#define CURLAUTH_ONLY (1<<31) /* used together with a single other + type to force no auth or just that + single type */ +#define CURLAUTH_ANY (~CURLAUTH_DIGEST_IE) /* all fine types set */ +#define CURLAUTH_ANYSAFE (~(CURLAUTH_BASIC|CURLAUTH_DIGEST_IE)) + +#define CURLSSH_AUTH_ANY ~0 /* all types supported by the server */ +#define CURLSSH_AUTH_NONE 0 /* none allowed, silly but complete */ +#define CURLSSH_AUTH_PUBLICKEY (1<<0) /* public/private key files */ +#define CURLSSH_AUTH_PASSWORD (1<<1) /* password */ +#define CURLSSH_AUTH_HOST (1<<2) /* host key files */ +#define CURLSSH_AUTH_KEYBOARD (1<<3) /* keyboard interactive */ +#define CURLSSH_AUTH_DEFAULT CURLSSH_AUTH_ANY + +#define CURL_ERROR_SIZE 256 + +struct curl_khkey { + const char *key; /* points to a zero-terminated string encoded with base64 + if len is zero, otherwise to the "raw" data */ + size_t len; + enum type { + CURLKHTYPE_UNKNOWN, + CURLKHTYPE_RSA1, + CURLKHTYPE_RSA, + CURLKHTYPE_DSS + } keytype; +}; + +/* this is the set of return values expected from the curl_sshkeycallback + callback */ +enum curl_khstat { + CURLKHSTAT_FINE_ADD_TO_FILE, + CURLKHSTAT_FINE, + CURLKHSTAT_REJECT, /* reject the connection, return an error */ + CURLKHSTAT_DEFER, /* do not accept it, but we can't answer right now so + this causes a CURLE_DEFER error but otherwise the + connection will be left intact etc */ + CURLKHSTAT_LAST /* not for use, only a marker for last-in-list */ +}; + +/* this is the set of status codes pass in to the callback */ +enum curl_khmatch { + CURLKHMATCH_OK, /* match */ + CURLKHMATCH_MISMATCH, /* host found, key mismatch! */ + CURLKHMATCH_MISSING, /* no matching host/key found */ + CURLKHMATCH_LAST /* not for use, only a marker for last-in-list */ +}; + +typedef int + (*curl_sshkeycallback) (CURL *easy, /* easy handle */ + const struct curl_khkey *knownkey, /* known */ + const struct curl_khkey *foundkey, /* found */ + enum curl_khmatch, /* libcurl's view on the keys */ + void *clientp); /* custom pointer passed from app */ + +/* parameter for the CURLOPT_USE_SSL option */ +typedef enum { + CURLUSESSL_NONE, /* do not attempt to use SSL */ + CURLUSESSL_TRY, /* try using SSL, proceed anyway otherwise */ + CURLUSESSL_CONTROL, /* SSL for the control connection or fail */ + CURLUSESSL_ALL, /* SSL for all communication or fail */ + CURLUSESSL_LAST /* not an option, never use */ +} curl_usessl; + +#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all + the obsolete stuff removed! */ + +/* Backwards compatibility with older names */ +/* These are scheduled to disappear by 2009 */ + +#define CURLFTPSSL_NONE CURLUSESSL_NONE +#define CURLFTPSSL_TRY CURLUSESSL_TRY +#define CURLFTPSSL_CONTROL CURLUSESSL_CONTROL +#define CURLFTPSSL_ALL CURLUSESSL_ALL +#define CURLFTPSSL_LAST CURLUSESSL_LAST +#define curl_ftpssl curl_usessl +#endif /*!CURL_NO_OLDIES*/ + +/* parameter for the CURLOPT_FTP_SSL_CCC option */ +typedef enum { + CURLFTPSSL_CCC_NONE, /* do not send CCC */ + CURLFTPSSL_CCC_PASSIVE, /* Let the server initiate the shutdown */ + CURLFTPSSL_CCC_ACTIVE, /* Initiate the shutdown */ + CURLFTPSSL_CCC_LAST /* not an option, never use */ +} curl_ftpccc; + +/* parameter for the CURLOPT_FTPSSLAUTH option */ +typedef enum { + CURLFTPAUTH_DEFAULT, /* let libcurl decide */ + CURLFTPAUTH_SSL, /* use "AUTH SSL" */ + CURLFTPAUTH_TLS, /* use "AUTH TLS" */ + CURLFTPAUTH_LAST /* not an option, never use */ +} curl_ftpauth; + +/* parameter for the CURLOPT_FTP_CREATE_MISSING_DIRS option */ +typedef enum { + CURLFTP_CREATE_DIR_NONE, /* do NOT create missing dirs! */ + CURLFTP_CREATE_DIR, /* (FTP/SFTP) if CWD fails, try MKD and then CWD + again if MKD succeeded, for SFTP this does + similar magic */ + CURLFTP_CREATE_DIR_RETRY, /* (FTP only) if CWD fails, try MKD and then CWD + again even if MKD failed! */ + CURLFTP_CREATE_DIR_LAST /* not an option, never use */ +} curl_ftpcreatedir; + +/* parameter for the CURLOPT_FTP_FILEMETHOD option */ +typedef enum { + CURLFTPMETHOD_DEFAULT, /* let libcurl pick */ + CURLFTPMETHOD_MULTICWD, /* single CWD operation for each path part */ + CURLFTPMETHOD_NOCWD, /* no CWD at all */ + CURLFTPMETHOD_SINGLECWD, /* one CWD to full dir, then work on file */ + CURLFTPMETHOD_LAST /* not an option, never use */ +} curl_ftpmethod; + +/* CURLPROTO_ defines are for the CURLOPT_*PROTOCOLS options */ +#define CURLPROTO_HTTP (1<<0) +#define CURLPROTO_HTTPS (1<<1) +#define CURLPROTO_FTP (1<<2) +#define CURLPROTO_FTPS (1<<3) +#define CURLPROTO_SCP (1<<4) +#define CURLPROTO_SFTP (1<<5) +#define CURLPROTO_TELNET (1<<6) +#define CURLPROTO_LDAP (1<<7) +#define CURLPROTO_LDAPS (1<<8) +#define CURLPROTO_DICT (1<<9) +#define CURLPROTO_FILE (1<<10) +#define CURLPROTO_TFTP (1<<11) +#define CURLPROTO_IMAP (1<<12) +#define CURLPROTO_IMAPS (1<<13) +#define CURLPROTO_POP3 (1<<14) +#define CURLPROTO_POP3S (1<<15) +#define CURLPROTO_SMTP (1<<16) +#define CURLPROTO_SMTPS (1<<17) +#define CURLPROTO_RTSP (1<<18) +#define CURLPROTO_RTMP (1<<19) +#define CURLPROTO_RTMPT (1<<20) +#define CURLPROTO_RTMPE (1<<21) +#define CURLPROTO_RTMPTE (1<<22) +#define CURLPROTO_RTMPS (1<<23) +#define CURLPROTO_RTMPTS (1<<24) +#define CURLPROTO_GOPHER (1<<25) +#define CURLPROTO_ALL (~0) /* enable everything */ + +/* long may be 32 or 64 bits, but we should never depend on anything else + but 32 */ +#define CURLOPTTYPE_LONG 0 +#define CURLOPTTYPE_OBJECTPOINT 10000 +#define CURLOPTTYPE_FUNCTIONPOINT 20000 +#define CURLOPTTYPE_OFF_T 30000 + +/* name is uppercase CURLOPT_<name>, + type is one of the defined CURLOPTTYPE_<type> + number is unique identifier */ +#ifdef CINIT +#undef CINIT +#endif + +#ifdef CURL_ISOCPP +#define CINIT(na,t,nu) CURLOPT_ ## na = CURLOPTTYPE_ ## t + nu +#else +/* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */ +#define LONG CURLOPTTYPE_LONG +#define OBJECTPOINT CURLOPTTYPE_OBJECTPOINT +#define FUNCTIONPOINT CURLOPTTYPE_FUNCTIONPOINT +#define OFF_T CURLOPTTYPE_OFF_T +#define CINIT(name,type,number) CURLOPT_/**/name = type + number +#endif + +/* + * This macro-mania below setups the CURLOPT_[what] enum, to be used with + * curl_easy_setopt(). The first argument in the CINIT() macro is the [what] + * word. + */ + +typedef enum { + /* This is the FILE * or void * the regular output should be written to. */ + CINIT(FILE, OBJECTPOINT, 1), + + /* The full URL to get/put */ + CINIT(URL, OBJECTPOINT, 2), + + /* Port number to connect to, if other than default. */ + CINIT(PORT, LONG, 3), + + /* Name of proxy to use. */ + CINIT(PROXY, OBJECTPOINT, 4), + + /* "name:password" to use when fetching. */ + CINIT(USERPWD, OBJECTPOINT, 5), + + /* "name:password" to use with proxy. */ + CINIT(PROXYUSERPWD, OBJECTPOINT, 6), + + /* Range to get, specified as an ASCII string. */ + CINIT(RANGE, OBJECTPOINT, 7), + + /* not used */ + + /* Specified file stream to upload from (use as input): */ + CINIT(INFILE, OBJECTPOINT, 9), + + /* Buffer to receive error messages in, must be at least CURL_ERROR_SIZE + * bytes big. If this is not used, error messages go to stderr instead: */ + CINIT(ERRORBUFFER, OBJECTPOINT, 10), + + /* Function that will be called to store the output (instead of fwrite). The + * parameters will use fwrite() syntax, make sure to follow them. */ + CINIT(WRITEFUNCTION, FUNCTIONPOINT, 11), + + /* Function that will be called to read the input (instead of fread). The + * parameters will use fread() syntax, make sure to follow them. */ + CINIT(READFUNCTION, FUNCTIONPOINT, 12), + + /* Time-out the read operation after this amount of seconds */ + CINIT(TIMEOUT, LONG, 13), + + /* If the CURLOPT_INFILE is used, this can be used to inform libcurl about + * how large the file being sent really is. That allows better error + * checking and better verifies that the upload was successful. -1 means + * unknown size. + * + * For large file support, there is also a _LARGE version of the key + * which takes an off_t type, allowing platforms with larger off_t + * sizes to handle larger files. See below for INFILESIZE_LARGE. + */ + CINIT(INFILESIZE, LONG, 14), + + /* POST static input fields. */ + CINIT(POSTFIELDS, OBJECTPOINT, 15), + + /* Set the referrer page (needed by some CGIs) */ + CINIT(REFERER, OBJECTPOINT, 16), + + /* Set the FTP PORT string (interface name, named or numerical IP address) + Use i.e '-' to use default address. */ + CINIT(FTPPORT, OBJECTPOINT, 17), + + /* Set the User-Agent string (examined by some CGIs) */ + CINIT(USERAGENT, OBJECTPOINT, 18), + + /* If the download receives less than "low speed limit" bytes/second + * during "low speed time" seconds, the operations is aborted. + * You could i.e if you have a pretty high speed connection, abort if + * it is less than 2000 bytes/sec during 20 seconds. + */ + + /* Set the "low speed limit" */ + CINIT(LOW_SPEED_LIMIT, LONG, 19), + + /* Set the "low speed time" */ + CINIT(LOW_SPEED_TIME, LONG, 20), + + /* Set the continuation offset. + * + * Note there is also a _LARGE version of this key which uses + * off_t types, allowing for large file offsets on platforms which + * use larger-than-32-bit off_t's. Look below for RESUME_FROM_LARGE. + */ + CINIT(RESUME_FROM, LONG, 21), + + /* Set cookie in request: */ + CINIT(COOKIE, OBJECTPOINT, 22), + + /* This points to a linked list of headers, struct curl_slist kind */ + CINIT(HTTPHEADER, OBJECTPOINT, 23), + + /* This points to a linked list of post entries, struct curl_httppost */ + CINIT(HTTPPOST, OBJECTPOINT, 24), + + /* name of the file keeping your private SSL-certificate */ + CINIT(SSLCERT, OBJECTPOINT, 25), + + /* password for the SSL or SSH private key */ + CINIT(KEYPASSWD, OBJECTPOINT, 26), + + /* send TYPE parameter? */ + CINIT(CRLF, LONG, 27), + + /* send linked-list of QUOTE commands */ + CINIT(QUOTE, OBJECTPOINT, 28), + + /* send FILE * or void * to store headers to, if you use a callback it + is simply passed to the callback unmodified */ + CINIT(WRITEHEADER, OBJECTPOINT, 29), + + /* point to a file to read the initial cookies from, also enables + "cookie awareness" */ + CINIT(COOKIEFILE, OBJECTPOINT, 31), + + /* What version to specifically try to use. + See CURL_SSLVERSION defines below. */ + CINIT(SSLVERSION, LONG, 32), + + /* What kind of HTTP time condition to use, see defines */ + CINIT(TIMECONDITION, LONG, 33), + + /* Time to use with the above condition. Specified in number of seconds + since 1 Jan 1970 */ + CINIT(TIMEVALUE, LONG, 34), + + /* 35 = OBSOLETE */ + + /* Custom request, for customizing the get command like + HTTP: DELETE, TRACE and others + FTP: to use a different list command + */ + CINIT(CUSTOMREQUEST, OBJECTPOINT, 36), + + /* HTTP request, for odd commands like DELETE, TRACE and others */ + CINIT(STDERR, OBJECTPOINT, 37), + + /* 38 is not used */ + + /* send linked-list of post-transfer QUOTE commands */ + CINIT(POSTQUOTE, OBJECTPOINT, 39), + + /* Pass a pointer to string of the output using full variable-replacement + as described elsewhere. */ + CINIT(WRITEINFO, OBJECTPOINT, 40), + + CINIT(VERBOSE, LONG, 41), /* talk a lot */ + CINIT(HEADER, LONG, 42), /* throw the header out too */ + CINIT(NOPROGRESS, LONG, 43), /* shut off the progress meter */ + CINIT(NOBODY, LONG, 44), /* use HEAD to get http document */ + CINIT(FAILONERROR, LONG, 45), /* no output on http error codes >= 300 */ + CINIT(UPLOAD, LONG, 46), /* this is an upload */ + CINIT(POST, LONG, 47), /* HTTP POST method */ + CINIT(DIRLISTONLY, LONG, 48), /* bare names when listing directories */ + + CINIT(APPEND, LONG, 50), /* Append instead of overwrite on upload! */ + + /* Specify whether to read the user+password from the .netrc or the URL. + * This must be one of the CURL_NETRC_* enums below. */ + CINIT(NETRC, LONG, 51), + + CINIT(FOLLOWLOCATION, LONG, 52), /* use Location: Luke! */ + + CINIT(TRANSFERTEXT, LONG, 53), /* transfer data in text/ASCII format */ + CINIT(PUT, LONG, 54), /* HTTP PUT */ + + /* 55 = OBSOLETE */ + + /* Function that will be called instead of the internal progress display + * function. This function should be defined as the curl_progress_callback + * prototype defines. */ + CINIT(PROGRESSFUNCTION, FUNCTIONPOINT, 56), + + /* Data passed to the progress callback */ + CINIT(PROGRESSDATA, OBJECTPOINT, 57), + + /* We want the referrer field set automatically when following locations */ + CINIT(AUTOREFERER, LONG, 58), + + /* Port of the proxy, can be set in the proxy string as well with: + "[host]:[port]" */ + CINIT(PROXYPORT, LONG, 59), + + /* size of the POST input data, if strlen() is not good to use */ + CINIT(POSTFIELDSIZE, LONG, 60), + + /* tunnel non-http operations through a HTTP proxy */ + CINIT(HTTPPROXYTUNNEL, LONG, 61), + + /* Set the interface string to use as outgoing network interface */ + CINIT(INTERFACE, OBJECTPOINT, 62), + + /* Set the krb4/5 security level, this also enables krb4/5 awareness. This + * is a string, 'clear', 'safe', 'confidential' or 'private'. If the string + * is set but doesn't match one of these, 'private' will be used. */ + CINIT(KRBLEVEL, OBJECTPOINT, 63), + + /* Set if we should verify the peer in ssl handshake, set 1 to verify. */ + CINIT(SSL_VERIFYPEER, LONG, 64), + + /* The CApath or CAfile used to validate the peer certificate + this option is used only if SSL_VERIFYPEER is true */ + CINIT(CAINFO, OBJECTPOINT, 65), + + /* 66 = OBSOLETE */ + /* 67 = OBSOLETE */ + + /* Maximum number of http redirects to follow */ + CINIT(MAXREDIRS, LONG, 68), + + /* Pass a long set to 1 to get the date of the requested document (if + possible)! Pass a zero to shut it off. */ + CINIT(FILETIME, LONG, 69), + + /* This points to a linked list of telnet options */ + CINIT(TELNETOPTIONS, OBJECTPOINT, 70), + + /* Max amount of cached alive connections */ + CINIT(MAXCONNECTS, LONG, 71), + + /* 72 - DEPRECATED */ + CINIT(CLOSEPOLICY, LONG, 72), + + /* 73 = OBSOLETE */ + + /* Set to explicitly use a new connection for the upcoming transfer. + Do not use this unless you're absolutely sure of this, as it makes the + operation slower and is less friendly for the network. */ + CINIT(FRESH_CONNECT, LONG, 74), + + /* Set to explicitly forbid the upcoming transfer's connection to be re-used + when done. Do not use this unless you're absolutely sure of this, as it + makes the operation slower and is less friendly for the network. */ + CINIT(FORBID_REUSE, LONG, 75), + + /* Set to a file name that contains random data for libcurl to use to + seed the random engine when doing SSL connects. */ + CINIT(RANDOM_FILE, OBJECTPOINT, 76), + + /* Set to the Entropy Gathering Daemon socket pathname */ + CINIT(EGDSOCKET, OBJECTPOINT, 77), + + /* Time-out connect operations after this amount of seconds, if connects + are OK within this time, then fine... This only aborts the connect + phase. [Only works on unix-style/SIGALRM operating systems] */ + CINIT(CONNECTTIMEOUT, LONG, 78), + + /* Function that will be called to store headers (instead of fwrite). The + * parameters will use fwrite() syntax, make sure to follow them. */ + CINIT(HEADERFUNCTION, FUNCTIONPOINT, 79), + + /* Set this to force the HTTP request to get back to GET. Only really usable + if POST, PUT or a custom request have been used first. + */ + CINIT(HTTPGET, LONG, 80), + + /* Set if we should verify the Common name from the peer certificate in ssl + * handshake, set 1 to check existence, 2 to ensure that it matches the + * provided hostname. */ + CINIT(SSL_VERIFYHOST, LONG, 81), + + /* Specify which file name to write all known cookies in after completed + operation. Set file name to "-" (dash) to make it go to stdout. */ + CINIT(COOKIEJAR, OBJECTPOINT, 82), + + /* Specify which SSL ciphers to use */ + CINIT(SSL_CIPHER_LIST, OBJECTPOINT, 83), + + /* Specify which HTTP version to use! This must be set to one of the + CURL_HTTP_VERSION* enums set below. */ + CINIT(HTTP_VERSION, LONG, 84), + + /* Specifically switch on or off the FTP engine's use of the EPSV command. By + default, that one will always be attempted before the more traditional + PASV command. */ + CINIT(FTP_USE_EPSV, LONG, 85), + + /* type of the file keeping your SSL-certificate ("DER", "PEM", "ENG") */ + CINIT(SSLCERTTYPE, OBJECTPOINT, 86), + + /* name of the file keeping your private SSL-key */ + CINIT(SSLKEY, OBJECTPOINT, 87), + + /* type of the file keeping your private SSL-key ("DER", "PEM", "ENG") */ + CINIT(SSLKEYTYPE, OBJECTPOINT, 88), + + /* crypto engine for the SSL-sub system */ + CINIT(SSLENGINE, OBJECTPOINT, 89), + + /* set the crypto engine for the SSL-sub system as default + the param has no meaning... + */ + CINIT(SSLENGINE_DEFAULT, LONG, 90), + + /* Non-zero value means to use the global dns cache */ + CINIT(DNS_USE_GLOBAL_CACHE, LONG, 91), /* To become OBSOLETE soon */ + + /* DNS cache timeout */ + CINIT(DNS_CACHE_TIMEOUT, LONG, 92), + + /* send linked-list of pre-transfer QUOTE commands */ + CINIT(PREQUOTE, OBJECTPOINT, 93), + + /* set the debug function */ + CINIT(DEBUGFUNCTION, FUNCTIONPOINT, 94), + + /* set the data for the debug function */ + CINIT(DEBUGDATA, OBJECTPOINT, 95), + + /* mark this as start of a cookie session */ + CINIT(COOKIESESSION, LONG, 96), + + /* The CApath directory used to validate the peer certificate + this option is used only if SSL_VERIFYPEER is true */ + CINIT(CAPATH, OBJECTPOINT, 97), + + /* Instruct libcurl to use a smaller receive buffer */ + CINIT(BUFFERSIZE, LONG, 98), + + /* Instruct libcurl to not use any signal/alarm handlers, even when using + timeouts. This option is useful for multi-threaded applications. + See libcurl-the-guide for more background information. */ + CINIT(NOSIGNAL, LONG, 99), + + /* Provide a CURLShare for mutexing non-ts data */ + CINIT(SHARE, OBJECTPOINT, 100), + + /* indicates type of proxy. accepted values are CURLPROXY_HTTP (default), + CURLPROXY_SOCKS4, CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5. */ + CINIT(PROXYTYPE, LONG, 101), + + /* Set the Accept-Encoding string. Use this to tell a server you would like + the response to be compressed. Before 7.21.6, this was known as + CURLOPT_ENCODING */ + CINIT(ACCEPT_ENCODING, OBJECTPOINT, 102), + + /* Set pointer to private data */ + CINIT(PRIVATE, OBJECTPOINT, 103), + + /* Set aliases for HTTP 200 in the HTTP Response header */ + CINIT(HTTP200ALIASES, OBJECTPOINT, 104), + + /* Continue to send authentication (user+password) when following locations, + even when hostname changed. This can potentially send off the name + and password to whatever host the server decides. */ + CINIT(UNRESTRICTED_AUTH, LONG, 105), + + /* Specifically switch on or off the FTP engine's use of the EPRT command ( + it also disables the LPRT attempt). By default, those ones will always be + attempted before the good old traditional PORT command. */ + CINIT(FTP_USE_EPRT, LONG, 106), + + /* Set this to a bitmask value to enable the particular authentications + methods you like. Use this in combination with CURLOPT_USERPWD. + Note that setting multiple bits may cause extra network round-trips. */ + CINIT(HTTPAUTH, LONG, 107), + + /* Set the ssl context callback function, currently only for OpenSSL ssl_ctx + in second argument. The function must be matching the + curl_ssl_ctx_callback proto. */ + CINIT(SSL_CTX_FUNCTION, FUNCTIONPOINT, 108), + + /* Set the userdata for the ssl context callback function's third + argument */ + CINIT(SSL_CTX_DATA, OBJECTPOINT, 109), + + /* FTP Option that causes missing dirs to be created on the remote server. + In 7.19.4 we introduced the convenience enums for this option using the + CURLFTP_CREATE_DIR prefix. + */ + CINIT(FTP_CREATE_MISSING_DIRS, LONG, 110), + + /* Set this to a bitmask value to enable the particular authentications + methods you like. Use this in combination with CURLOPT_PROXYUSERPWD. + Note that setting multiple bits may cause extra network round-trips. */ + CINIT(PROXYAUTH, LONG, 111), + + /* FTP option that changes the timeout, in seconds, associated with + getting a response. This is different from transfer timeout time and + essentially places a demand on the FTP server to acknowledge commands + in a timely manner. */ + CINIT(FTP_RESPONSE_TIMEOUT, LONG, 112), +#define CURLOPT_SERVER_RESPONSE_TIMEOUT CURLOPT_FTP_RESPONSE_TIMEOUT + + /* Set this option to one of the CURL_IPRESOLVE_* defines (see below) to + tell libcurl to resolve names to those IP versions only. This only has + affect on systems with support for more than one, i.e IPv4 _and_ IPv6. */ + CINIT(IPRESOLVE, LONG, 113), + + /* Set this option to limit the size of a file that will be downloaded from + an HTTP or FTP server. + + Note there is also _LARGE version which adds large file support for + platforms which have larger off_t sizes. See MAXFILESIZE_LARGE below. */ + CINIT(MAXFILESIZE, LONG, 114), + + /* See the comment for INFILESIZE above, but in short, specifies + * the size of the file being uploaded. -1 means unknown. + */ + CINIT(INFILESIZE_LARGE, OFF_T, 115), + + /* Sets the continuation offset. There is also a LONG version of this; + * look above for RESUME_FROM. + */ + CINIT(RESUME_FROM_LARGE, OFF_T, 116), + + /* Sets the maximum size of data that will be downloaded from + * an HTTP or FTP server. See MAXFILESIZE above for the LONG version. + */ + CINIT(MAXFILESIZE_LARGE, OFF_T, 117), + + /* Set this option to the file name of your .netrc file you want libcurl + to parse (using the CURLOPT_NETRC option). If not set, libcurl will do + a poor attempt to find the user's home directory and check for a .netrc + file in there. */ + CINIT(NETRC_FILE, OBJECTPOINT, 118), + + /* Enable SSL/TLS for FTP, pick one of: + CURLFTPSSL_TRY - try using SSL, proceed anyway otherwise + CURLFTPSSL_CONTROL - SSL for the control connection or fail + CURLFTPSSL_ALL - SSL for all communication or fail + */ + CINIT(USE_SSL, LONG, 119), + + /* The _LARGE version of the standard POSTFIELDSIZE option */ + CINIT(POSTFIELDSIZE_LARGE, OFF_T, 120), + + /* Enable/disable the TCP Nagle algorithm */ + CINIT(TCP_NODELAY, LONG, 121), + + /* 122 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ + /* 123 OBSOLETE. Gone in 7.16.0 */ + /* 124 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ + /* 125 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ + /* 126 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ + /* 127 OBSOLETE. Gone in 7.16.0 */ + /* 128 OBSOLETE. Gone in 7.16.0 */ + + /* When FTP over SSL/TLS is selected (with CURLOPT_USE_SSL), this option + can be used to change libcurl's default action which is to first try + "AUTH SSL" and then "AUTH TLS" in this order, and proceed when a OK + response has been received. + + Available parameters are: + CURLFTPAUTH_DEFAULT - let libcurl decide + CURLFTPAUTH_SSL - try "AUTH SSL" first, then TLS + CURLFTPAUTH_TLS - try "AUTH TLS" first, then SSL + */ + CINIT(FTPSSLAUTH, LONG, 129), + + CINIT(IOCTLFUNCTION, FUNCTIONPOINT, 130), + CINIT(IOCTLDATA, OBJECTPOINT, 131), + + /* 132 OBSOLETE. Gone in 7.16.0 */ + /* 133 OBSOLETE. Gone in 7.16.0 */ + + /* zero terminated string for pass on to the FTP server when asked for + "account" info */ + CINIT(FTP_ACCOUNT, OBJECTPOINT, 134), + + /* feed cookies into cookie engine */ + CINIT(COOKIELIST, OBJECTPOINT, 135), + + /* ignore Content-Length */ + CINIT(IGNORE_CONTENT_LENGTH, LONG, 136), + + /* Set to non-zero to skip the IP address received in a 227 PASV FTP server + response. Typically used for FTP-SSL purposes but is not restricted to + that. libcurl will then instead use the same IP address it used for the + control connection. */ + CINIT(FTP_SKIP_PASV_IP, LONG, 137), + + /* Select "file method" to use when doing FTP, see the curl_ftpmethod + above. */ + CINIT(FTP_FILEMETHOD, LONG, 138), + + /* Local port number to bind the socket to */ + CINIT(LOCALPORT, LONG, 139), + + /* Number of ports to try, including the first one set with LOCALPORT. + Thus, setting it to 1 will make no additional attempts but the first. + */ + CINIT(LOCALPORTRANGE, LONG, 140), + + /* no transfer, set up connection and let application use the socket by + extracting it with CURLINFO_LASTSOCKET */ + CINIT(CONNECT_ONLY, LONG, 141), + + /* Function that will be called to convert from the + network encoding (instead of using the iconv calls in libcurl) */ + CINIT(CONV_FROM_NETWORK_FUNCTION, FUNCTIONPOINT, 142), + + /* Function that will be called to convert to the + network encoding (instead of using the iconv calls in libcurl) */ + CINIT(CONV_TO_NETWORK_FUNCTION, FUNCTIONPOINT, 143), + + /* Function that will be called to convert from UTF8 + (instead of using the iconv calls in libcurl) + Note that this is used only for SSL certificate processing */ + CINIT(CONV_FROM_UTF8_FUNCTION, FUNCTIONPOINT, 144), + + /* if the connection proceeds too quickly then need to slow it down */ + /* limit-rate: maximum number of bytes per second to send or receive */ + CINIT(MAX_SEND_SPEED_LARGE, OFF_T, 145), + CINIT(MAX_RECV_SPEED_LARGE, OFF_T, 146), + + /* Pointer to command string to send if USER/PASS fails. */ + CINIT(FTP_ALTERNATIVE_TO_USER, OBJECTPOINT, 147), + + /* callback function for setting socket options */ + CINIT(SOCKOPTFUNCTION, FUNCTIONPOINT, 148), + CINIT(SOCKOPTDATA, OBJECTPOINT, 149), + + /* set to 0 to disable session ID re-use for this transfer, default is + enabled (== 1) */ + CINIT(SSL_SESSIONID_CACHE, LONG, 150), + + /* allowed SSH authentication methods */ + CINIT(SSH_AUTH_TYPES, LONG, 151), + + /* Used by scp/sftp to do public/private key authentication */ + CINIT(SSH_PUBLIC_KEYFILE, OBJECTPOINT, 152), + CINIT(SSH_PRIVATE_KEYFILE, OBJECTPOINT, 153), + + /* Send CCC (Clear Command Channel) after authentication */ + CINIT(FTP_SSL_CCC, LONG, 154), + + /* Same as TIMEOUT and CONNECTTIMEOUT, but with ms resolution */ + CINIT(TIMEOUT_MS, LONG, 155), + CINIT(CONNECTTIMEOUT_MS, LONG, 156), + + /* set to zero to disable the libcurl's decoding and thus pass the raw body + data to the application even when it is encoded/compressed */ + CINIT(HTTP_TRANSFER_DECODING, LONG, 157), + CINIT(HTTP_CONTENT_DECODING, LONG, 158), + + /* Permission used when creating new files and directories on the remote + server for protocols that support it, SFTP/SCP/FILE */ + CINIT(NEW_FILE_PERMS, LONG, 159), + CINIT(NEW_DIRECTORY_PERMS, LONG, 160), + + /* Set the behaviour of POST when redirecting. Values must be set to one + of CURL_REDIR* defines below. This used to be called CURLOPT_POST301 */ + CINIT(POSTREDIR, LONG, 161), + + /* used by scp/sftp to verify the host's public key */ + CINIT(SSH_HOST_PUBLIC_KEY_MD5, OBJECTPOINT, 162), + + /* Callback function for opening socket (instead of socket(2)). Optionally, + callback is able change the address or refuse to connect returning + CURL_SOCKET_BAD. The callback should have type + curl_opensocket_callback */ + CINIT(OPENSOCKETFUNCTION, FUNCTIONPOINT, 163), + CINIT(OPENSOCKETDATA, OBJECTPOINT, 164), + + /* POST volatile input fields. */ + CINIT(COPYPOSTFIELDS, OBJECTPOINT, 165), + + /* set transfer mode (;type=<a|i>) when doing FTP via an HTTP proxy */ + CINIT(PROXY_TRANSFER_MODE, LONG, 166), + + /* Callback function for seeking in the input stream */ + CINIT(SEEKFUNCTION, FUNCTIONPOINT, 167), + CINIT(SEEKDATA, OBJECTPOINT, 168), + + /* CRL file */ + CINIT(CRLFILE, OBJECTPOINT, 169), + + /* Issuer certificate */ + CINIT(ISSUERCERT, OBJECTPOINT, 170), + + /* (IPv6) Address scope */ + CINIT(ADDRESS_SCOPE, LONG, 171), + + /* Collect certificate chain info and allow it to get retrievable with + CURLINFO_CERTINFO after the transfer is complete. (Unfortunately) only + working with OpenSSL-powered builds. */ + CINIT(CERTINFO, LONG, 172), + + /* "name" and "pwd" to use when fetching. */ + CINIT(USERNAME, OBJECTPOINT, 173), + CINIT(PASSWORD, OBJECTPOINT, 174), + + /* "name" and "pwd" to use with Proxy when fetching. */ + CINIT(PROXYUSERNAME, OBJECTPOINT, 175), + CINIT(PROXYPASSWORD, OBJECTPOINT, 176), + + /* Comma separated list of hostnames defining no-proxy zones. These should + match both hostnames directly, and hostnames within a domain. For + example, local.com will match local.com and www.local.com, but NOT + notlocal.com or www.notlocal.com. For compatibility with other + implementations of this, .local.com will be considered to be the same as + local.com. A single * is the only valid wildcard, and effectively + disables the use of proxy. */ + CINIT(NOPROXY, OBJECTPOINT, 177), + + /* block size for TFTP transfers */ + CINIT(TFTP_BLKSIZE, LONG, 178), + + /* Socks Service */ + CINIT(SOCKS5_GSSAPI_SERVICE, OBJECTPOINT, 179), + + /* Socks Service */ + CINIT(SOCKS5_GSSAPI_NEC, LONG, 180), + + /* set the bitmask for the protocols that are allowed to be used for the + transfer, which thus helps the app which takes URLs from users or other + external inputs and want to restrict what protocol(s) to deal + with. Defaults to CURLPROTO_ALL. */ + CINIT(PROTOCOLS, LONG, 181), + + /* set the bitmask for the protocols that libcurl is allowed to follow to, + as a subset of the CURLOPT_PROTOCOLS ones. That means the protocol needs + to be set in both bitmasks to be allowed to get redirected to. Defaults + to all protocols except FILE and SCP. */ + CINIT(REDIR_PROTOCOLS, LONG, 182), + + /* set the SSH knownhost file name to use */ + CINIT(SSH_KNOWNHOSTS, OBJECTPOINT, 183), + + /* set the SSH host key callback, must point to a curl_sshkeycallback + function */ + CINIT(SSH_KEYFUNCTION, FUNCTIONPOINT, 184), + + /* set the SSH host key callback custom pointer */ + CINIT(SSH_KEYDATA, OBJECTPOINT, 185), + + /* set the SMTP mail originator */ + CINIT(MAIL_FROM, OBJECTPOINT, 186), + + /* set the SMTP mail receiver(s) */ + CINIT(MAIL_RCPT, OBJECTPOINT, 187), + + /* FTP: send PRET before PASV */ + CINIT(FTP_USE_PRET, LONG, 188), + + /* RTSP request method (OPTIONS, SETUP, PLAY, etc...) */ + CINIT(RTSP_REQUEST, LONG, 189), + + /* The RTSP session identifier */ + CINIT(RTSP_SESSION_ID, OBJECTPOINT, 190), + + /* The RTSP stream URI */ + CINIT(RTSP_STREAM_URI, OBJECTPOINT, 191), + + /* The Transport: header to use in RTSP requests */ + CINIT(RTSP_TRANSPORT, OBJECTPOINT, 192), + + /* Manually initialize the client RTSP CSeq for this handle */ + CINIT(RTSP_CLIENT_CSEQ, LONG, 193), + + /* Manually initialize the server RTSP CSeq for this handle */ + CINIT(RTSP_SERVER_CSEQ, LONG, 194), + + /* The stream to pass to INTERLEAVEFUNCTION. */ + CINIT(INTERLEAVEDATA, OBJECTPOINT, 195), + + /* Let the application define a custom write method for RTP data */ + CINIT(INTERLEAVEFUNCTION, FUNCTIONPOINT, 196), + + /* Turn on wildcard matching */ + CINIT(WILDCARDMATCH, LONG, 197), + + /* Directory matching callback called before downloading of an + individual file (chunk) started */ + CINIT(CHUNK_BGN_FUNCTION, FUNCTIONPOINT, 198), + + /* Directory matching callback called after the file (chunk) + was downloaded, or skipped */ + CINIT(CHUNK_END_FUNCTION, FUNCTIONPOINT, 199), + + /* Change match (fnmatch-like) callback for wildcard matching */ + CINIT(FNMATCH_FUNCTION, FUNCTIONPOINT, 200), + + /* Let the application define custom chunk data pointer */ + CINIT(CHUNK_DATA, OBJECTPOINT, 201), + + /* FNMATCH_FUNCTION user pointer */ + CINIT(FNMATCH_DATA, OBJECTPOINT, 202), + + /* send linked-list of name:port:address sets */ + CINIT(RESOLVE, OBJECTPOINT, 203), + + /* Set a username for authenticated TLS */ + CINIT(TLSAUTH_USERNAME, OBJECTPOINT, 204), + + /* Set a password for authenticated TLS */ + CINIT(TLSAUTH_PASSWORD, OBJECTPOINT, 205), + + /* Set authentication type for authenticated TLS */ + CINIT(TLSAUTH_TYPE, OBJECTPOINT, 206), + + /* Set to 1 to enable the "TE:" header in HTTP requests to ask for + compressed transfer-encoded responses. Set to 0 to disable the use of TE: + in outgoing requests. The current default is 0, but it might change in a + future libcurl release. + + libcurl will ask for the compressed methods it knows of, and if that + isn't any, it will not ask for transfer-encoding at all even if this + option is set to 1. + + */ + CINIT(TRANSFER_ENCODING, LONG, 207), + + /* Callback function for closing socket (instead of close(2)). The callback + should have type curl_closesocket_callback */ + CINIT(CLOSESOCKETFUNCTION, FUNCTIONPOINT, 208), + CINIT(CLOSESOCKETDATA, OBJECTPOINT, 209), + + CURLOPT_LASTENTRY /* the last unused */ +} CURLoption; + +#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all + the obsolete stuff removed! */ + +/* Backwards compatibility with older names */ +/* These are scheduled to disappear by 2011 */ + +/* This was added in version 7.19.1 */ +#define CURLOPT_POST301 CURLOPT_POSTREDIR + +/* These are scheduled to disappear by 2009 */ + +/* The following were added in 7.17.0 */ +#define CURLOPT_SSLKEYPASSWD CURLOPT_KEYPASSWD +#define CURLOPT_FTPAPPEND CURLOPT_APPEND +#define CURLOPT_FTPLISTONLY CURLOPT_DIRLISTONLY +#define CURLOPT_FTP_SSL CURLOPT_USE_SSL + +/* The following were added earlier */ + +#define CURLOPT_SSLCERTPASSWD CURLOPT_KEYPASSWD +#define CURLOPT_KRB4LEVEL CURLOPT_KRBLEVEL + +#else +/* This is set if CURL_NO_OLDIES is defined at compile-time */ +#undef CURLOPT_DNS_USE_GLOBAL_CACHE /* soon obsolete */ +#endif + + + /* Below here follows defines for the CURLOPT_IPRESOLVE option. If a host + name resolves addresses using more than one IP protocol version, this + option might be handy to force libcurl to use a specific IP version. */ +#define CURL_IPRESOLVE_WHATEVER 0 /* default, resolves addresses to all IP + versions that your system allows */ +#define CURL_IPRESOLVE_V4 1 /* resolve to ipv4 addresses */ +#define CURL_IPRESOLVE_V6 2 /* resolve to ipv6 addresses */ + + /* three convenient "aliases" that follow the name scheme better */ +#define CURLOPT_WRITEDATA CURLOPT_FILE +#define CURLOPT_READDATA CURLOPT_INFILE +#define CURLOPT_HEADERDATA CURLOPT_WRITEHEADER +#define CURLOPT_RTSPHEADER CURLOPT_HTTPHEADER + + /* These enums are for use with the CURLOPT_HTTP_VERSION option. */ +enum { + CURL_HTTP_VERSION_NONE, /* setting this means we don't care, and that we'd + like the library to choose the best possible + for us! */ + CURL_HTTP_VERSION_1_0, /* please use HTTP 1.0 in the request */ + CURL_HTTP_VERSION_1_1, /* please use HTTP 1.1 in the request */ + + CURL_HTTP_VERSION_LAST /* *ILLEGAL* http version */ +}; + +/* + * Public API enums for RTSP requests + */ +enum { + CURL_RTSPREQ_NONE, /* first in list */ + CURL_RTSPREQ_OPTIONS, + CURL_RTSPREQ_DESCRIBE, + CURL_RTSPREQ_ANNOUNCE, + CURL_RTSPREQ_SETUP, + CURL_RTSPREQ_PLAY, + CURL_RTSPREQ_PAUSE, + CURL_RTSPREQ_TEARDOWN, + CURL_RTSPREQ_GET_PARAMETER, + CURL_RTSPREQ_SET_PARAMETER, + CURL_RTSPREQ_RECORD, + CURL_RTSPREQ_RECEIVE, + CURL_RTSPREQ_LAST /* last in list */ +}; + + /* These enums are for use with the CURLOPT_NETRC option. */ +enum CURL_NETRC_OPTION { + CURL_NETRC_IGNORED, /* The .netrc will never be read. + * This is the default. */ + CURL_NETRC_OPTIONAL, /* A user:password in the URL will be preferred + * to one in the .netrc. */ + CURL_NETRC_REQUIRED, /* A user:password in the URL will be ignored. + * Unless one is set programmatically, the .netrc + * will be queried. */ + CURL_NETRC_LAST +}; + +enum { + CURL_SSLVERSION_DEFAULT, + CURL_SSLVERSION_TLSv1, + CURL_SSLVERSION_SSLv2, + CURL_SSLVERSION_SSLv3, + + CURL_SSLVERSION_LAST /* never use, keep last */ +}; + +enum CURL_TLSAUTH { + CURL_TLSAUTH_NONE, + CURL_TLSAUTH_SRP, + CURL_TLSAUTH_LAST /* never use, keep last */ +}; + +/* symbols to use with CURLOPT_POSTREDIR. + CURL_REDIR_POST_301 and CURL_REDIR_POST_302 can be bitwise ORed so that + CURL_REDIR_POST_301 | CURL_REDIR_POST_302 == CURL_REDIR_POST_ALL */ + +#define CURL_REDIR_GET_ALL 0 +#define CURL_REDIR_POST_301 1 +#define CURL_REDIR_POST_302 2 +#define CURL_REDIR_POST_ALL (CURL_REDIR_POST_301|CURL_REDIR_POST_302) + +typedef enum { + CURL_TIMECOND_NONE, + + CURL_TIMECOND_IFMODSINCE, + CURL_TIMECOND_IFUNMODSINCE, + CURL_TIMECOND_LASTMOD, + + CURL_TIMECOND_LAST +} curl_TimeCond; + + +/* curl_strequal() and curl_strnequal() are subject for removal in a future + libcurl, see lib/README.curlx for details */ +CURL_EXTERN int (curl_strequal)(const char *s1, const char *s2); +CURL_EXTERN int (curl_strnequal)(const char *s1, const char *s2, size_t n); + +/* name is uppercase CURLFORM_<name> */ +#ifdef CFINIT +#undef CFINIT +#endif + +#ifdef CURL_ISOCPP +#define CFINIT(name) CURLFORM_ ## name +#else +/* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */ +#define CFINIT(name) CURLFORM_/**/name +#endif + +typedef enum { + CFINIT(NOTHING), /********* the first one is unused ************/ + + /* */ + CFINIT(COPYNAME), + CFINIT(PTRNAME), + CFINIT(NAMELENGTH), + CFINIT(COPYCONTENTS), + CFINIT(PTRCONTENTS), + CFINIT(CONTENTSLENGTH), + CFINIT(FILECONTENT), + CFINIT(ARRAY), + CFINIT(OBSOLETE), + CFINIT(FILE), + + CFINIT(BUFFER), + CFINIT(BUFFERPTR), + CFINIT(BUFFERLENGTH), + + CFINIT(CONTENTTYPE), + CFINIT(CONTENTHEADER), + CFINIT(FILENAME), + CFINIT(END), + CFINIT(OBSOLETE2), + + CFINIT(STREAM), + + CURLFORM_LASTENTRY /* the last unused */ +} CURLformoption; + +#undef CFINIT /* done */ + +/* structure to be used as parameter for CURLFORM_ARRAY */ +struct curl_forms { + CURLformoption option; + const char *value; +}; + +/* use this for multipart formpost building */ +/* Returns code for curl_formadd() + * + * Returns: + * CURL_FORMADD_OK on success + * CURL_FORMADD_MEMORY if the FormInfo allocation fails + * CURL_FORMADD_OPTION_TWICE if one option is given twice for one Form + * CURL_FORMADD_NULL if a null pointer was given for a char + * CURL_FORMADD_MEMORY if the allocation of a FormInfo struct failed + * CURL_FORMADD_UNKNOWN_OPTION if an unknown option was used + * CURL_FORMADD_INCOMPLETE if the some FormInfo is not complete (or error) + * CURL_FORMADD_MEMORY if a curl_httppost struct cannot be allocated + * CURL_FORMADD_MEMORY if some allocation for string copying failed. + * CURL_FORMADD_ILLEGAL_ARRAY if an illegal option is used in an array + * + ***************************************************************************/ +typedef enum { + CURL_FORMADD_OK, /* first, no error */ + + CURL_FORMADD_MEMORY, + CURL_FORMADD_OPTION_TWICE, + CURL_FORMADD_NULL, + CURL_FORMADD_UNKNOWN_OPTION, + CURL_FORMADD_INCOMPLETE, + CURL_FORMADD_ILLEGAL_ARRAY, + CURL_FORMADD_DISABLED, /* libcurl was built with this disabled */ + + CURL_FORMADD_LAST /* last */ +} CURLFORMcode; + +/* + * NAME curl_formadd() + * + * DESCRIPTION + * + * Pretty advanced function for building multi-part formposts. Each invoke + * adds one part that together construct a full post. Then use + * CURLOPT_HTTPPOST to send it off to libcurl. + */ +CURL_EXTERN CURLFORMcode curl_formadd(struct curl_httppost **httppost, + struct curl_httppost **last_post, + ...); + +/* + * callback function for curl_formget() + * The void *arg pointer will be the one passed as second argument to + * curl_formget(). + * The character buffer passed to it must not be freed. + * Should return the buffer length passed to it as the argument "len" on + * success. + */ +typedef size_t (*curl_formget_callback)(void *arg, const char *buf, + size_t len); + +/* + * NAME curl_formget() + * + * DESCRIPTION + * + * Serialize a curl_httppost struct built with curl_formadd(). + * Accepts a void pointer as second argument which will be passed to + * the curl_formget_callback function. + * Returns 0 on success. + */ +CURL_EXTERN int curl_formget(struct curl_httppost *form, void *arg, + curl_formget_callback append); +/* + * NAME curl_formfree() + * + * DESCRIPTION + * + * Free a multipart formpost previously built with curl_formadd(). + */ +CURL_EXTERN void curl_formfree(struct curl_httppost *form); + +/* + * NAME curl_getenv() + * + * DESCRIPTION + * + * Returns a malloc()'ed string that MUST be curl_free()ed after usage is + * complete. DEPRECATED - see lib/README.curlx + */ +CURL_EXTERN char *curl_getenv(const char *variable); + +/* + * NAME curl_version() + * + * DESCRIPTION + * + * Returns a static ascii string of the libcurl version. + */ +CURL_EXTERN char *curl_version(void); + +/* + * NAME curl_easy_escape() + * + * DESCRIPTION + * + * Escapes URL strings (converts all letters consider illegal in URLs to their + * %XX versions). This function returns a new allocated string or NULL if an + * error occurred. + */ +CURL_EXTERN char *curl_easy_escape(CURL *handle, + const char *string, + int length); + +/* the previous version: */ +CURL_EXTERN char *curl_escape(const char *string, + int length); + + +/* + * NAME curl_easy_unescape() + * + * DESCRIPTION + * + * Unescapes URL encoding in strings (converts all %XX codes to their 8bit + * versions). This function returns a new allocated string or NULL if an error + * occurred. + * Conversion Note: On non-ASCII platforms the ASCII %XX codes are + * converted into the host encoding. + */ +CURL_EXTERN char *curl_easy_unescape(CURL *handle, + const char *string, + int length, + int *outlength); + +/* the previous version */ +CURL_EXTERN char *curl_unescape(const char *string, + int length); + +/* + * NAME curl_free() + * + * DESCRIPTION + * + * Provided for de-allocation in the same translation unit that did the + * allocation. Added in libcurl 7.10 + */ +CURL_EXTERN void curl_free(void *p); + +/* + * NAME curl_global_init() + * + * DESCRIPTION + * + * curl_global_init() should be invoked exactly once for each application that + * uses libcurl and before any call of other libcurl functions. + * + * This function is not thread-safe! + */ +CURL_EXTERN CURLcode curl_global_init(long flags); + +/* + * NAME curl_global_init_mem() + * + * DESCRIPTION + * + * curl_global_init() or curl_global_init_mem() should be invoked exactly once + * for each application that uses libcurl. This function can be used to + * initialize libcurl and set user defined memory management callback + * functions. Users can implement memory management routines to check for + * memory leaks, check for mis-use of the curl library etc. User registered + * callback routines with be invoked by this library instead of the system + * memory management routines like malloc, free etc. + */ +CURL_EXTERN CURLcode curl_global_init_mem(long flags, + curl_malloc_callback m, + curl_free_callback f, + curl_realloc_callback r, + curl_strdup_callback s, + curl_calloc_callback c); + +/* + * NAME curl_global_cleanup() + * + * DESCRIPTION + * + * curl_global_cleanup() should be invoked exactly once for each application + * that uses libcurl + */ +CURL_EXTERN void curl_global_cleanup(void); + +/* linked-list structure for the CURLOPT_QUOTE option (and other) */ +struct curl_slist { + char *data; + struct curl_slist *next; +}; + +/* + * NAME curl_slist_append() + * + * DESCRIPTION + * + * Appends a string to a linked list. If no list exists, it will be created + * first. Returns the new list, after appending. + */ +CURL_EXTERN struct curl_slist *curl_slist_append(struct curl_slist *, + const char *); + +/* + * NAME curl_slist_free_all() + * + * DESCRIPTION + * + * free a previously built curl_slist. + */ +CURL_EXTERN void curl_slist_free_all(struct curl_slist *); + +/* + * NAME curl_getdate() + * + * DESCRIPTION + * + * Returns the time, in seconds since 1 Jan 1970 of the time string given in + * the first argument. The time argument in the second parameter is unused + * and should be set to NULL. + */ +CURL_EXTERN time_t curl_getdate(const char *p, const time_t *unused); + +/* info about the certificate chain, only for OpenSSL builds. Asked + for with CURLOPT_CERTINFO / CURLINFO_CERTINFO */ +struct curl_certinfo { + int num_of_certs; /* number of certificates with information */ + struct curl_slist **certinfo; /* for each index in this array, there's a + linked list with textual information in the + format "name: value" */ +}; + +#define CURLINFO_STRING 0x100000 +#define CURLINFO_LONG 0x200000 +#define CURLINFO_DOUBLE 0x300000 +#define CURLINFO_SLIST 0x400000 +#define CURLINFO_MASK 0x0fffff +#define CURLINFO_TYPEMASK 0xf00000 + +typedef enum { + CURLINFO_NONE, /* first, never use this */ + CURLINFO_EFFECTIVE_URL = CURLINFO_STRING + 1, + CURLINFO_RESPONSE_CODE = CURLINFO_LONG + 2, + CURLINFO_TOTAL_TIME = CURLINFO_DOUBLE + 3, + CURLINFO_NAMELOOKUP_TIME = CURLINFO_DOUBLE + 4, + CURLINFO_CONNECT_TIME = CURLINFO_DOUBLE + 5, + CURLINFO_PRETRANSFER_TIME = CURLINFO_DOUBLE + 6, + CURLINFO_SIZE_UPLOAD = CURLINFO_DOUBLE + 7, + CURLINFO_SIZE_DOWNLOAD = CURLINFO_DOUBLE + 8, + CURLINFO_SPEED_DOWNLOAD = CURLINFO_DOUBLE + 9, + CURLINFO_SPEED_UPLOAD = CURLINFO_DOUBLE + 10, + CURLINFO_HEADER_SIZE = CURLINFO_LONG + 11, + CURLINFO_REQUEST_SIZE = CURLINFO_LONG + 12, + CURLINFO_SSL_VERIFYRESULT = CURLINFO_LONG + 13, + CURLINFO_FILETIME = CURLINFO_LONG + 14, + CURLINFO_CONTENT_LENGTH_DOWNLOAD = CURLINFO_DOUBLE + 15, + CURLINFO_CONTENT_LENGTH_UPLOAD = CURLINFO_DOUBLE + 16, + CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE + 17, + CURLINFO_CONTENT_TYPE = CURLINFO_STRING + 18, + CURLINFO_REDIRECT_TIME = CURLINFO_DOUBLE + 19, + CURLINFO_REDIRECT_COUNT = CURLINFO_LONG + 20, + CURLINFO_PRIVATE = CURLINFO_STRING + 21, + CURLINFO_HTTP_CONNECTCODE = CURLINFO_LONG + 22, + CURLINFO_HTTPAUTH_AVAIL = CURLINFO_LONG + 23, + CURLINFO_PROXYAUTH_AVAIL = CURLINFO_LONG + 24, + CURLINFO_OS_ERRNO = CURLINFO_LONG + 25, + CURLINFO_NUM_CONNECTS = CURLINFO_LONG + 26, + CURLINFO_SSL_ENGINES = CURLINFO_SLIST + 27, + CURLINFO_COOKIELIST = CURLINFO_SLIST + 28, + CURLINFO_LASTSOCKET = CURLINFO_LONG + 29, + CURLINFO_FTP_ENTRY_PATH = CURLINFO_STRING + 30, + CURLINFO_REDIRECT_URL = CURLINFO_STRING + 31, + CURLINFO_PRIMARY_IP = CURLINFO_STRING + 32, + CURLINFO_APPCONNECT_TIME = CURLINFO_DOUBLE + 33, + CURLINFO_CERTINFO = CURLINFO_SLIST + 34, + CURLINFO_CONDITION_UNMET = CURLINFO_LONG + 35, + CURLINFO_RTSP_SESSION_ID = CURLINFO_STRING + 36, + CURLINFO_RTSP_CLIENT_CSEQ = CURLINFO_LONG + 37, + CURLINFO_RTSP_SERVER_CSEQ = CURLINFO_LONG + 38, + CURLINFO_RTSP_CSEQ_RECV = CURLINFO_LONG + 39, + CURLINFO_PRIMARY_PORT = CURLINFO_LONG + 40, + CURLINFO_LOCAL_IP = CURLINFO_STRING + 41, + CURLINFO_LOCAL_PORT = CURLINFO_LONG + 42, + /* Fill in new entries below here! */ + + CURLINFO_LASTONE = 42 +} CURLINFO; + +/* CURLINFO_RESPONSE_CODE is the new name for the option previously known as + CURLINFO_HTTP_CODE */ +#define CURLINFO_HTTP_CODE CURLINFO_RESPONSE_CODE + +typedef enum { + CURLCLOSEPOLICY_NONE, /* first, never use this */ + + CURLCLOSEPOLICY_OLDEST, + CURLCLOSEPOLICY_LEAST_RECENTLY_USED, + CURLCLOSEPOLICY_LEAST_TRAFFIC, + CURLCLOSEPOLICY_SLOWEST, + CURLCLOSEPOLICY_CALLBACK, + + CURLCLOSEPOLICY_LAST /* last, never use this */ +} curl_closepolicy; + +#define CURL_GLOBAL_SSL (1<<0) +#define CURL_GLOBAL_WIN32 (1<<1) +#define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL|CURL_GLOBAL_WIN32) +#define CURL_GLOBAL_NOTHING 0 +#define CURL_GLOBAL_DEFAULT CURL_GLOBAL_ALL + + +/***************************************************************************** + * Setup defines, protos etc for the sharing stuff. + */ + +/* Different data locks for a single share */ +typedef enum { + CURL_LOCK_DATA_NONE = 0, + /* CURL_LOCK_DATA_SHARE is used internally to say that + * the locking is just made to change the internal state of the share + * itself. + */ + CURL_LOCK_DATA_SHARE, + CURL_LOCK_DATA_COOKIE, + CURL_LOCK_DATA_DNS, + CURL_LOCK_DATA_SSL_SESSION, + CURL_LOCK_DATA_CONNECT, + CURL_LOCK_DATA_LAST +} curl_lock_data; + +/* Different lock access types */ +typedef enum { + CURL_LOCK_ACCESS_NONE = 0, /* unspecified action */ + CURL_LOCK_ACCESS_SHARED = 1, /* for read perhaps */ + CURL_LOCK_ACCESS_SINGLE = 2, /* for write perhaps */ + CURL_LOCK_ACCESS_LAST /* never use */ +} curl_lock_access; + +typedef void (*curl_lock_function)(CURL *handle, + curl_lock_data data, + curl_lock_access locktype, + void *userptr); +typedef void (*curl_unlock_function)(CURL *handle, + curl_lock_data data, + void *userptr); + +typedef void CURLSH; + +typedef enum { + CURLSHE_OK, /* all is fine */ + CURLSHE_BAD_OPTION, /* 1 */ + CURLSHE_IN_USE, /* 2 */ + CURLSHE_INVALID, /* 3 */ + CURLSHE_NOMEM, /* out of memory */ + CURLSHE_LAST /* never use */ +} CURLSHcode; + +typedef enum { + CURLSHOPT_NONE, /* don't use */ + CURLSHOPT_SHARE, /* specify a data type to share */ + CURLSHOPT_UNSHARE, /* specify which data type to stop sharing */ + CURLSHOPT_LOCKFUNC, /* pass in a 'curl_lock_function' pointer */ + CURLSHOPT_UNLOCKFUNC, /* pass in a 'curl_unlock_function' pointer */ + CURLSHOPT_USERDATA, /* pass in a user data pointer used in the lock/unlock + callback functions */ + CURLSHOPT_LAST /* never use */ +} CURLSHoption; + +CURL_EXTERN CURLSH *curl_share_init(void); +CURL_EXTERN CURLSHcode curl_share_setopt(CURLSH *, CURLSHoption option, ...); +CURL_EXTERN CURLSHcode curl_share_cleanup(CURLSH *); + +/**************************************************************************** + * Structures for querying information about the curl library at runtime. + */ + +typedef enum { + CURLVERSION_FIRST, + CURLVERSION_SECOND, + CURLVERSION_THIRD, + CURLVERSION_FOURTH, + CURLVERSION_LAST /* never actually use this */ +} CURLversion; + +/* The 'CURLVERSION_NOW' is the symbolic name meant to be used by + basically all programs ever that want to get version information. It is + meant to be a built-in version number for what kind of struct the caller + expects. If the struct ever changes, we redefine the NOW to another enum + from above. */ +#define CURLVERSION_NOW CURLVERSION_FOURTH + +typedef struct { + CURLversion age; /* age of the returned struct */ + const char *version; /* LIBCURL_VERSION */ + unsigned int version_num; /* LIBCURL_VERSION_NUM */ + const char *host; /* OS/host/cpu/machine when configured */ + int features; /* bitmask, see defines below */ + const char *ssl_version; /* human readable string */ + long ssl_version_num; /* not used anymore, always 0 */ + const char *libz_version; /* human readable string */ + /* protocols is terminated by an entry with a NULL protoname */ + const char * const *protocols; + + /* The fields below this were added in CURLVERSION_SECOND */ + const char *ares; + int ares_num; + + /* This field was added in CURLVERSION_THIRD */ + const char *libidn; + + /* These field were added in CURLVERSION_FOURTH */ + + /* Same as '_libiconv_version' if built with HAVE_ICONV */ + int iconv_ver_num; + + const char *libssh_version; /* human readable string */ + +} curl_version_info_data; + +#define CURL_VERSION_IPV6 (1<<0) /* IPv6-enabled */ +#define CURL_VERSION_KERBEROS4 (1<<1) /* kerberos auth is supported */ +#define CURL_VERSION_SSL (1<<2) /* SSL options are present */ +#define CURL_VERSION_LIBZ (1<<3) /* libz features are present */ +#define CURL_VERSION_NTLM (1<<4) /* NTLM auth is supported */ +#define CURL_VERSION_GSSNEGOTIATE (1<<5) /* Negotiate auth support */ +#define CURL_VERSION_DEBUG (1<<6) /* built with debug capabilities */ +#define CURL_VERSION_ASYNCHDNS (1<<7) /* asynchronous dns resolves */ +#define CURL_VERSION_SPNEGO (1<<8) /* SPNEGO auth */ +#define CURL_VERSION_LARGEFILE (1<<9) /* supports files bigger than 2GB */ +#define CURL_VERSION_IDN (1<<10) /* International Domain Names support */ +#define CURL_VERSION_SSPI (1<<11) /* SSPI is supported */ +#define CURL_VERSION_CONV (1<<12) /* character conversions supported */ +#define CURL_VERSION_CURLDEBUG (1<<13) /* debug memory tracking supported */ +#define CURL_VERSION_TLSAUTH_SRP (1<<14) /* TLS-SRP auth is supported */ + +/* + * NAME curl_version_info() + * + * DESCRIPTION + * + * This function returns a pointer to a static copy of the version info + * struct. See above. + */ +CURL_EXTERN curl_version_info_data *curl_version_info(CURLversion); + +/* + * NAME curl_easy_strerror() + * + * DESCRIPTION + * + * The curl_easy_strerror function may be used to turn a CURLcode value + * into the equivalent human readable error string. This is useful + * for printing meaningful error messages. + */ +CURL_EXTERN const char *curl_easy_strerror(CURLcode); + +/* + * NAME curl_share_strerror() + * + * DESCRIPTION + * + * The curl_share_strerror function may be used to turn a CURLSHcode value + * into the equivalent human readable error string. This is useful + * for printing meaningful error messages. + */ +CURL_EXTERN const char *curl_share_strerror(CURLSHcode); + +/* + * NAME curl_easy_pause() + * + * DESCRIPTION + * + * The curl_easy_pause function pauses or unpauses transfers. Select the new + * state by setting the bitmask, use the convenience defines below. + * + */ +CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask); + +#define CURLPAUSE_RECV (1<<0) +#define CURLPAUSE_RECV_CONT (0) + +#define CURLPAUSE_SEND (1<<2) +#define CURLPAUSE_SEND_CONT (0) + +#define CURLPAUSE_ALL (CURLPAUSE_RECV|CURLPAUSE_SEND) +#define CURLPAUSE_CONT (CURLPAUSE_RECV_CONT|CURLPAUSE_SEND_CONT) + +#ifdef __cplusplus +} +#endif + +/* unfortunately, the easy.h and multi.h include files need options and info + stuff before they can be included! */ +#include "easy.h" /* nothing in curl is fun without the easy stuff */ +#include "multi.h" + +/* the typechecker doesn't work in C++ (yet) */ +#if defined(__GNUC__) && defined(__GNUC_MINOR__) && \ + ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && \ + !defined(__cplusplus) && !defined(CURL_DISABLE_TYPECHECK) +#include "typecheck-gcc.h" +#else +#if defined(__STDC__) && (__STDC__ >= 1) +/* This preprocessor magic that replaces a call with the exact same call is + only done to make sure application authors pass exactly three arguments + to these functions. */ +#define curl_easy_setopt(handle,opt,param) curl_easy_setopt(handle,opt,param) +#define curl_easy_getinfo(handle,info,arg) curl_easy_getinfo(handle,info,arg) +#define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param) +#define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param) +#endif /* __STDC__ >= 1 */ +#endif /* gcc >= 4.3 && !__cplusplus */ + +#endif /* __CURL_CURL_H */ diff --git a/cocos2dx/platform/third_party/linux/curl/curlbuild.h b/cocos2dx/platform/third_party/linux/curl/curlbuild.h new file mode 100644 index 0000000000..98ede6eef7 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/curlbuild.h @@ -0,0 +1,191 @@ +/* include/curl/curlbuild.h. Generated from curlbuild.h.in by configure. */ +#ifndef __CURL_CURLBUILD_H +#define __CURL_CURLBUILD_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ + +/* ================================================================ */ +/* NOTES FOR CONFIGURE CAPABLE SYSTEMS */ +/* ================================================================ */ + +/* + * NOTE 1: + * ------- + * + * Nothing in this file is intended to be modified or adjusted by the + * curl library user nor by the curl library builder. + * + * If you think that something actually needs to be changed, adjusted + * or fixed in this file, then, report it on the libcurl development + * mailing list: http://cool.haxx.se/mailman/listinfo/curl-library/ + * + * This header file shall only export symbols which are 'curl' or 'CURL' + * prefixed, otherwise public name space would be polluted. + * + * NOTE 2: + * ------- + * + * Right now you might be staring at file include/curl/curlbuild.h.in or + * at file include/curl/curlbuild.h, this is due to the following reason: + * + * On systems capable of running the configure script, the configure process + * will overwrite the distributed include/curl/curlbuild.h file with one that + * is suitable and specific to the library being configured and built, which + * is generated from the include/curl/curlbuild.h.in template file. + * + */ + +/* ================================================================ */ +/* DEFINITION OF THESE SYMBOLS SHALL NOT TAKE PLACE ANYWHERE ELSE */ +/* ================================================================ */ + +#ifdef CURL_SIZEOF_LONG +#error "CURL_SIZEOF_LONG shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SIZEOF_LONG_already_defined +#endif + +#ifdef CURL_TYPEOF_CURL_SOCKLEN_T +#error "CURL_TYPEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_TYPEOF_CURL_SOCKLEN_T_already_defined +#endif + +#ifdef CURL_SIZEOF_CURL_SOCKLEN_T +#error "CURL_SIZEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SIZEOF_CURL_SOCKLEN_T_already_defined +#endif + +#ifdef CURL_TYPEOF_CURL_OFF_T +#error "CURL_TYPEOF_CURL_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_TYPEOF_CURL_OFF_T_already_defined +#endif + +#ifdef CURL_FORMAT_CURL_OFF_T +#error "CURL_FORMAT_CURL_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_FORMAT_CURL_OFF_T_already_defined +#endif + +#ifdef CURL_FORMAT_CURL_OFF_TU +#error "CURL_FORMAT_CURL_OFF_TU shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_FORMAT_CURL_OFF_TU_already_defined +#endif + +#ifdef CURL_FORMAT_OFF_T +#error "CURL_FORMAT_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_FORMAT_OFF_T_already_defined +#endif + +#ifdef CURL_SIZEOF_CURL_OFF_T +#error "CURL_SIZEOF_CURL_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SIZEOF_CURL_OFF_T_already_defined +#endif + +#ifdef CURL_SUFFIX_CURL_OFF_T +#error "CURL_SUFFIX_CURL_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_T_already_defined +#endif + +#ifdef CURL_SUFFIX_CURL_OFF_TU +#error "CURL_SUFFIX_CURL_OFF_TU shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_TU_already_defined +#endif + +/* ================================================================ */ +/* EXTERNAL INTERFACE SETTINGS FOR CONFIGURE CAPABLE SYSTEMS ONLY */ +/* ================================================================ */ + +/* Configure process defines this to 1 when it finds out that system */ +/* header file ws2tcpip.h must be included by the external interface. */ +/* #undef CURL_PULL_WS2TCPIP_H */ +#ifdef CURL_PULL_WS2TCPIP_H +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +# endif +# include <windows.h> +# include <winsock2.h> +# include <ws2tcpip.h> +#endif + +/* Configure process defines this to 1 when it finds out that system */ +/* header file sys/types.h must be included by the external interface. */ +#define CURL_PULL_SYS_TYPES_H 1 +#ifdef CURL_PULL_SYS_TYPES_H +# include <sys/types.h> +#endif + +/* Configure process defines this to 1 when it finds out that system */ +/* header file stdint.h must be included by the external interface. */ +#define CURL_PULL_STDINT_H 1 +#ifdef CURL_PULL_STDINT_H +# include <stdint.h> +#endif + +/* Configure process defines this to 1 when it finds out that system */ +/* header file inttypes.h must be included by the external interface. */ +#define CURL_PULL_INTTYPES_H 1 +#ifdef CURL_PULL_INTTYPES_H +# include <inttypes.h> +#endif + +/* Configure process defines this to 1 when it finds out that system */ +/* header file sys/socket.h must be included by the external interface. */ +#define CURL_PULL_SYS_SOCKET_H 1 +#ifdef CURL_PULL_SYS_SOCKET_H +# include <sys/socket.h> +#endif + +/* The size of `long', as computed by sizeof. */ +#define CURL_SIZEOF_LONG 4 + +/* Integral data type used for curl_socklen_t. */ +#define CURL_TYPEOF_CURL_SOCKLEN_T socklen_t + +/* The size of `curl_socklen_t', as computed by sizeof. */ +#define CURL_SIZEOF_CURL_SOCKLEN_T 4 + +/* Data type definition of curl_socklen_t. */ +typedef CURL_TYPEOF_CURL_SOCKLEN_T curl_socklen_t; + +/* Signed integral data type used for curl_off_t. */ +#define CURL_TYPEOF_CURL_OFF_T int64_t + +/* Data type definition of curl_off_t. */ +typedef CURL_TYPEOF_CURL_OFF_T curl_off_t; + +/* curl_off_t formatting string directive without "%" conversion specifier. */ +#define CURL_FORMAT_CURL_OFF_T "lld" + +/* unsigned curl_off_t formatting string without "%" conversion specifier. */ +#define CURL_FORMAT_CURL_OFF_TU "llu" + +/* curl_off_t formatting string directive with "%" conversion specifier. */ +#define CURL_FORMAT_OFF_T "%lld" + +/* The size of `curl_off_t', as computed by sizeof. */ +#define CURL_SIZEOF_CURL_OFF_T 8 + +/* curl_off_t constant suffix. */ +#define CURL_SUFFIX_CURL_OFF_T LL + +/* unsigned curl_off_t constant suffix. */ +#define CURL_SUFFIX_CURL_OFF_TU ULL + +#endif /* __CURL_CURLBUILD_H */ diff --git a/cocos2dx/platform/third_party/linux/curl/curlbuild.h.in b/cocos2dx/platform/third_party/linux/curl/curlbuild.h.in new file mode 100644 index 0000000000..fe348f40da --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/curlbuild.h.in @@ -0,0 +1,190 @@ +#ifndef __CURL_CURLBUILD_H +#define __CURL_CURLBUILD_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ + +/* ================================================================ */ +/* NOTES FOR CONFIGURE CAPABLE SYSTEMS */ +/* ================================================================ */ + +/* + * NOTE 1: + * ------- + * + * Nothing in this file is intended to be modified or adjusted by the + * curl library user nor by the curl library builder. + * + * If you think that something actually needs to be changed, adjusted + * or fixed in this file, then, report it on the libcurl development + * mailing list: http://cool.haxx.se/mailman/listinfo/curl-library/ + * + * This header file shall only export symbols which are 'curl' or 'CURL' + * prefixed, otherwise public name space would be polluted. + * + * NOTE 2: + * ------- + * + * Right now you might be staring at file include/curl/curlbuild.h.in or + * at file include/curl/curlbuild.h, this is due to the following reason: + * + * On systems capable of running the configure script, the configure process + * will overwrite the distributed include/curl/curlbuild.h file with one that + * is suitable and specific to the library being configured and built, which + * is generated from the include/curl/curlbuild.h.in template file. + * + */ + +/* ================================================================ */ +/* DEFINITION OF THESE SYMBOLS SHALL NOT TAKE PLACE ANYWHERE ELSE */ +/* ================================================================ */ + +#ifdef CURL_SIZEOF_LONG +#error "CURL_SIZEOF_LONG shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SIZEOF_LONG_already_defined +#endif + +#ifdef CURL_TYPEOF_CURL_SOCKLEN_T +#error "CURL_TYPEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_TYPEOF_CURL_SOCKLEN_T_already_defined +#endif + +#ifdef CURL_SIZEOF_CURL_SOCKLEN_T +#error "CURL_SIZEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SIZEOF_CURL_SOCKLEN_T_already_defined +#endif + +#ifdef CURL_TYPEOF_CURL_OFF_T +#error "CURL_TYPEOF_CURL_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_TYPEOF_CURL_OFF_T_already_defined +#endif + +#ifdef CURL_FORMAT_CURL_OFF_T +#error "CURL_FORMAT_CURL_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_FORMAT_CURL_OFF_T_already_defined +#endif + +#ifdef CURL_FORMAT_CURL_OFF_TU +#error "CURL_FORMAT_CURL_OFF_TU shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_FORMAT_CURL_OFF_TU_already_defined +#endif + +#ifdef CURL_FORMAT_OFF_T +#error "CURL_FORMAT_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_FORMAT_OFF_T_already_defined +#endif + +#ifdef CURL_SIZEOF_CURL_OFF_T +#error "CURL_SIZEOF_CURL_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SIZEOF_CURL_OFF_T_already_defined +#endif + +#ifdef CURL_SUFFIX_CURL_OFF_T +#error "CURL_SUFFIX_CURL_OFF_T shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_T_already_defined +#endif + +#ifdef CURL_SUFFIX_CURL_OFF_TU +#error "CURL_SUFFIX_CURL_OFF_TU shall not be defined except in curlbuild.h" + Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_TU_already_defined +#endif + +/* ================================================================ */ +/* EXTERNAL INTERFACE SETTINGS FOR CONFIGURE CAPABLE SYSTEMS ONLY */ +/* ================================================================ */ + +/* Configure process defines this to 1 when it finds out that system */ +/* header file ws2tcpip.h must be included by the external interface. */ +#undef CURL_PULL_WS2TCPIP_H +#ifdef CURL_PULL_WS2TCPIP_H +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +# endif +# include <windows.h> +# include <winsock2.h> +# include <ws2tcpip.h> +#endif + +/* Configure process defines this to 1 when it finds out that system */ +/* header file sys/types.h must be included by the external interface. */ +#undef CURL_PULL_SYS_TYPES_H +#ifdef CURL_PULL_SYS_TYPES_H +# include <sys/types.h> +#endif + +/* Configure process defines this to 1 when it finds out that system */ +/* header file stdint.h must be included by the external interface. */ +#undef CURL_PULL_STDINT_H +#ifdef CURL_PULL_STDINT_H +# include <stdint.h> +#endif + +/* Configure process defines this to 1 when it finds out that system */ +/* header file inttypes.h must be included by the external interface. */ +#undef CURL_PULL_INTTYPES_H +#ifdef CURL_PULL_INTTYPES_H +# include <inttypes.h> +#endif + +/* Configure process defines this to 1 when it finds out that system */ +/* header file sys/socket.h must be included by the external interface. */ +#undef CURL_PULL_SYS_SOCKET_H +#ifdef CURL_PULL_SYS_SOCKET_H +# include <sys/socket.h> +#endif + +/* The size of `long', as computed by sizeof. */ +#undef CURL_SIZEOF_LONG + +/* Integral data type used for curl_socklen_t. */ +#undef CURL_TYPEOF_CURL_SOCKLEN_T + +/* The size of `curl_socklen_t', as computed by sizeof. */ +#undef CURL_SIZEOF_CURL_SOCKLEN_T + +/* Data type definition of curl_socklen_t. */ +typedef CURL_TYPEOF_CURL_SOCKLEN_T curl_socklen_t; + +/* Signed integral data type used for curl_off_t. */ +#undef CURL_TYPEOF_CURL_OFF_T + +/* Data type definition of curl_off_t. */ +typedef CURL_TYPEOF_CURL_OFF_T curl_off_t; + +/* curl_off_t formatting string directive without "%" conversion specifier. */ +#undef CURL_FORMAT_CURL_OFF_T + +/* unsigned curl_off_t formatting string without "%" conversion specifier. */ +#undef CURL_FORMAT_CURL_OFF_TU + +/* curl_off_t formatting string directive with "%" conversion specifier. */ +#undef CURL_FORMAT_OFF_T + +/* The size of `curl_off_t', as computed by sizeof. */ +#undef CURL_SIZEOF_CURL_OFF_T + +/* curl_off_t constant suffix. */ +#undef CURL_SUFFIX_CURL_OFF_T + +/* unsigned curl_off_t constant suffix. */ +#undef CURL_SUFFIX_CURL_OFF_TU + +#endif /* __CURL_CURLBUILD_H */ diff --git a/cocos2dx/platform/third_party/linux/curl/curlrules.h b/cocos2dx/platform/third_party/linux/curl/curlrules.h new file mode 100644 index 0000000000..cbc12fdd29 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/curlrules.h @@ -0,0 +1,261 @@ +#ifndef __CURL_CURLRULES_H +#define __CURL_CURLRULES_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ + +/* ================================================================ */ +/* COMPILE TIME SANITY CHECKS */ +/* ================================================================ */ + +/* + * NOTE 1: + * ------- + * + * All checks done in this file are intentionally placed in a public + * header file which is pulled by curl/curl.h when an application is + * being built using an already built libcurl library. Additionally + * this file is also included and used when building the library. + * + * If compilation fails on this file it is certainly sure that the + * problem is elsewhere. It could be a problem in the curlbuild.h + * header file, or simply that you are using different compilation + * settings than those used to build the library. + * + * Nothing in this file is intended to be modified or adjusted by the + * curl library user nor by the curl library builder. + * + * Do not deactivate any check, these are done to make sure that the + * library is properly built and used. + * + * You can find further help on the libcurl development mailing list: + * http://cool.haxx.se/mailman/listinfo/curl-library/ + * + * NOTE 2 + * ------ + * + * Some of the following compile time checks are based on the fact + * that the dimension of a constant array can not be a negative one. + * In this way if the compile time verification fails, the compilation + * will fail issuing an error. The error description wording is compiler + * dependent but it will be quite similar to one of the following: + * + * "negative subscript or subscript is too large" + * "array must have at least one element" + * "-1 is an illegal array size" + * "size of array is negative" + * + * If you are building an application which tries to use an already + * built libcurl library and you are getting this kind of errors on + * this file, it is a clear indication that there is a mismatch between + * how the library was built and how you are trying to use it for your + * application. Your already compiled or binary library provider is the + * only one who can give you the details you need to properly use it. + */ + +/* + * Verify that some macros are actually defined. + */ + +#ifndef CURL_SIZEOF_LONG +# error "CURL_SIZEOF_LONG definition is missing!" + Error Compilation_aborted_CURL_SIZEOF_LONG_is_missing +#endif + +#ifndef CURL_TYPEOF_CURL_SOCKLEN_T +# error "CURL_TYPEOF_CURL_SOCKLEN_T definition is missing!" + Error Compilation_aborted_CURL_TYPEOF_CURL_SOCKLEN_T_is_missing +#endif + +#ifndef CURL_SIZEOF_CURL_SOCKLEN_T +# error "CURL_SIZEOF_CURL_SOCKLEN_T definition is missing!" + Error Compilation_aborted_CURL_SIZEOF_CURL_SOCKLEN_T_is_missing +#endif + +#ifndef CURL_TYPEOF_CURL_OFF_T +# error "CURL_TYPEOF_CURL_OFF_T definition is missing!" + Error Compilation_aborted_CURL_TYPEOF_CURL_OFF_T_is_missing +#endif + +#ifndef CURL_FORMAT_CURL_OFF_T +# error "CURL_FORMAT_CURL_OFF_T definition is missing!" + Error Compilation_aborted_CURL_FORMAT_CURL_OFF_T_is_missing +#endif + +#ifndef CURL_FORMAT_CURL_OFF_TU +# error "CURL_FORMAT_CURL_OFF_TU definition is missing!" + Error Compilation_aborted_CURL_FORMAT_CURL_OFF_TU_is_missing +#endif + +#ifndef CURL_FORMAT_OFF_T +# error "CURL_FORMAT_OFF_T definition is missing!" + Error Compilation_aborted_CURL_FORMAT_OFF_T_is_missing +#endif + +#ifndef CURL_SIZEOF_CURL_OFF_T +# error "CURL_SIZEOF_CURL_OFF_T definition is missing!" + Error Compilation_aborted_CURL_SIZEOF_CURL_OFF_T_is_missing +#endif + +#ifndef CURL_SUFFIX_CURL_OFF_T +# error "CURL_SUFFIX_CURL_OFF_T definition is missing!" + Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_T_is_missing +#endif + +#ifndef CURL_SUFFIX_CURL_OFF_TU +# error "CURL_SUFFIX_CURL_OFF_TU definition is missing!" + Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_TU_is_missing +#endif + +/* + * Macros private to this header file. + */ + +#define CurlchkszEQ(t, s) sizeof(t) == s ? 1 : -1 + +#define CurlchkszGE(t1, t2) sizeof(t1) >= sizeof(t2) ? 1 : -1 + +/* + * Verify that the size previously defined and expected for long + * is the same as the one reported by sizeof() at compile time. + */ + +typedef char + __curl_rule_01__ + [CurlchkszEQ(long, CURL_SIZEOF_LONG)]; + +/* + * Verify that the size previously defined and expected for + * curl_off_t is actually the the same as the one reported + * by sizeof() at compile time. + */ + +typedef char + __curl_rule_02__ + [CurlchkszEQ(curl_off_t, CURL_SIZEOF_CURL_OFF_T)]; + +/* + * Verify at compile time that the size of curl_off_t as reported + * by sizeof() is greater or equal than the one reported for long + * for the current compilation. + */ + +typedef char + __curl_rule_03__ + [CurlchkszGE(curl_off_t, long)]; + +/* + * Verify that the size previously defined and expected for + * curl_socklen_t is actually the the same as the one reported + * by sizeof() at compile time. + */ + +typedef char + __curl_rule_04__ + [CurlchkszEQ(curl_socklen_t, CURL_SIZEOF_CURL_SOCKLEN_T)]; + +/* + * Verify at compile time that the size of curl_socklen_t as reported + * by sizeof() is greater or equal than the one reported for int for + * the current compilation. + */ + +typedef char + __curl_rule_05__ + [CurlchkszGE(curl_socklen_t, int)]; + +/* ================================================================ */ +/* EXTERNALLY AND INTERNALLY VISIBLE DEFINITIONS */ +/* ================================================================ */ + +/* + * CURL_ISOCPP and CURL_OFF_T_C definitions are done here in order to allow + * these to be visible and exported by the external libcurl interface API, + * while also making them visible to the library internals, simply including + * setup.h, without actually needing to include curl.h internally. + * If some day this section would grow big enough, all this should be moved + * to its own header file. + */ + +/* + * Figure out if we can use the ## preprocessor operator, which is supported + * by ISO/ANSI C and C++. Some compilers support it without setting __STDC__ + * or __cplusplus so we need to carefully check for them too. + */ + +#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) || \ + defined(__HP_aCC) || defined(__BORLANDC__) || defined(__LCC__) || \ + defined(__POCC__) || defined(__SALFORDC__) || defined(__HIGHC__) || \ + defined(__ILEC400__) + /* This compiler is believed to have an ISO compatible preprocessor */ +#define CURL_ISOCPP +#else + /* This compiler is believed NOT to have an ISO compatible preprocessor */ +#undef CURL_ISOCPP +#endif + +/* + * Macros for minimum-width signed and unsigned curl_off_t integer constants. + */ + +#if defined(__BORLANDC__) && (__BORLANDC__ == 0x0551) +# define __CURL_OFF_T_C_HLPR2(x) x +# define __CURL_OFF_T_C_HLPR1(x) __CURL_OFF_T_C_HLPR2(x) +# define CURL_OFF_T_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \ + __CURL_OFF_T_C_HLPR1(CURL_SUFFIX_CURL_OFF_T) +# define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \ + __CURL_OFF_T_C_HLPR1(CURL_SUFFIX_CURL_OFF_TU) +#else +# ifdef CURL_ISOCPP +# define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix +# else +# define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix +# endif +# define __CURL_OFF_T_C_HLPR1(Val,Suffix) __CURL_OFF_T_C_HLPR2(Val,Suffix) +# define CURL_OFF_T_C(Val) __CURL_OFF_T_C_HLPR1(Val,CURL_SUFFIX_CURL_OFF_T) +# define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HLPR1(Val,CURL_SUFFIX_CURL_OFF_TU) +#endif + +/* + * Get rid of macros private to this header file. + */ + +#undef CurlchkszEQ +#undef CurlchkszGE + +/* + * Get rid of macros not intended to exist beyond this point. + */ + +#undef CURL_PULL_WS2TCPIP_H +#undef CURL_PULL_SYS_TYPES_H +#undef CURL_PULL_SYS_SOCKET_H +#undef CURL_PULL_STDINT_H +#undef CURL_PULL_INTTYPES_H + +#undef CURL_TYPEOF_CURL_SOCKLEN_T +#undef CURL_TYPEOF_CURL_OFF_T + +#ifdef CURL_NO_OLDIES +#undef CURL_FORMAT_OFF_T /* not required since 7.19.0 - obsoleted in 7.20.0 */ +#endif + +#endif /* __CURL_CURLRULES_H */ diff --git a/cocos2dx/platform/third_party/linux/curl/curlver.h b/cocos2dx/platform/third_party/linux/curl/curlver.h new file mode 100644 index 0000000000..bb90c8c0d9 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/curlver.h @@ -0,0 +1,69 @@ +#ifndef __CURL_CURLVER_H +#define __CURL_CURLVER_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ + +/* This header file contains nothing but libcurl version info, generated by + a script at release-time. This was made its own header file in 7.11.2 */ + +/* This is the global package copyright */ +#define LIBCURL_COPYRIGHT "1996 - 2011 Daniel Stenberg, <daniel@haxx.se>." + +/* This is the version number of the libcurl package from which this header + file origins: */ +#define LIBCURL_VERSION "7.21.7" + +/* The numeric version number is also available "in parts" by using these + defines: */ +#define LIBCURL_VERSION_MAJOR 7 +#define LIBCURL_VERSION_MINOR 21 +#define LIBCURL_VERSION_PATCH 7 + +/* This is the numeric version of the libcurl version number, meant for easier + parsing and comparions by programs. The LIBCURL_VERSION_NUM define will + always follow this syntax: + + 0xXXYYZZ + + Where XX, YY and ZZ are the main version, release and patch numbers in + hexadecimal (using 8 bits each). All three numbers are always represented + using two digits. 1.2 would appear as "0x010200" while version 9.11.7 + appears as "0x090b07". + + This 6-digit (24 bits) hexadecimal number does not show pre-release number, + and it is always a greater number in a more recent release. It makes + comparisons with greater than and less than work. +*/ +#define LIBCURL_VERSION_NUM 0x071507 + +/* + * This is the date and time when the full source package was created. The + * timestamp is not stored in git, as the timestamp is properly set in the + * tarballs by the maketgz script. + * + * The format of the date should follow this template: + * + * "Mon Feb 12 11:35:33 UTC 2007" + */ +#define LIBCURL_TIMESTAMP "Thu Jun 23 08:25:34 UTC 2011" + +#endif /* __CURL_CURLVER_H */ diff --git a/cocos2dx/platform/third_party/linux/curl/easy.h b/cocos2dx/platform/third_party/linux/curl/easy.h new file mode 100644 index 0000000000..c1e3e76096 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/easy.h @@ -0,0 +1,102 @@ +#ifndef __CURL_EASY_H +#define __CURL_EASY_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ +#ifdef __cplusplus +extern "C" { +#endif + +CURL_EXTERN CURL *curl_easy_init(void); +CURL_EXTERN CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...); +CURL_EXTERN CURLcode curl_easy_perform(CURL *curl); +CURL_EXTERN void curl_easy_cleanup(CURL *curl); + +/* + * NAME curl_easy_getinfo() + * + * DESCRIPTION + * + * Request internal information from the curl session with this function. The + * third argument MUST be a pointer to a long, a pointer to a char * or a + * pointer to a double (as the documentation describes elsewhere). The data + * pointed to will be filled in accordingly and can be relied upon only if the + * function returns CURLE_OK. This function is intended to get used *AFTER* a + * performed transfer, all results from this function are undefined until the + * transfer is completed. + */ +CURL_EXTERN CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...); + + +/* + * NAME curl_easy_duphandle() + * + * DESCRIPTION + * + * Creates a new curl session handle with the same options set for the handle + * passed in. Duplicating a handle could only be a matter of cloning data and + * options, internal state info and things like persistent connections cannot + * be transferred. It is useful in multithreaded applications when you can run + * curl_easy_duphandle() for each new thread to avoid a series of identical + * curl_easy_setopt() invokes in every thread. + */ +CURL_EXTERN CURL* curl_easy_duphandle(CURL *curl); + +/* + * NAME curl_easy_reset() + * + * DESCRIPTION + * + * Re-initializes a CURL handle to the default values. This puts back the + * handle to the same state as it was in when it was just created. + * + * It does keep: live connections, the Session ID cache, the DNS cache and the + * cookies. + */ +CURL_EXTERN void curl_easy_reset(CURL *curl); + +/* + * NAME curl_easy_recv() + * + * DESCRIPTION + * + * Receives data from the connected socket. Use after successful + * curl_easy_perform() with CURLOPT_CONNECT_ONLY option. + */ +CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen, + size_t *n); + +/* + * NAME curl_easy_send() + * + * DESCRIPTION + * + * Sends data over the connected socket. Use after successful + * curl_easy_perform() with CURLOPT_CONNECT_ONLY option. + */ +CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer, + size_t buflen, size_t *n); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/cocos2dx/platform/third_party/linux/curl/mprintf.h b/cocos2dx/platform/third_party/linux/curl/mprintf.h new file mode 100644 index 0000000000..de7dd2f3c3 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/mprintf.h @@ -0,0 +1,81 @@ +#ifndef __CURL_MPRINTF_H +#define __CURL_MPRINTF_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ + +#include <stdarg.h> +#include <stdio.h> /* needed for FILE */ + +#include "curl.h" + +#ifdef __cplusplus +extern "C" { +#endif + +CURL_EXTERN int curl_mprintf(const char *format, ...); +CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...); +CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...); +CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength, + const char *format, ...); +CURL_EXTERN int curl_mvprintf(const char *format, va_list args); +CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args); +CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args); +CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength, + const char *format, va_list args); +CURL_EXTERN char *curl_maprintf(const char *format, ...); +CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args); + +#ifdef _MPRINTF_REPLACE +# undef printf +# undef fprintf +# undef sprintf +# undef vsprintf +# undef snprintf +# undef vprintf +# undef vfprintf +# undef vsnprintf +# undef aprintf +# undef vaprintf +# define printf curl_mprintf +# define fprintf curl_mfprintf +#ifdef CURLDEBUG +/* When built with CURLDEBUG we define away the sprintf() functions since we + don't want internal code to be using them */ +# define sprintf sprintf_was_used +# define vsprintf vsprintf_was_used +#else +# define sprintf curl_msprintf +# define vsprintf curl_mvsprintf +#endif +# define snprintf curl_msnprintf +# define vprintf curl_mvprintf +# define vfprintf curl_mvfprintf +# define vsnprintf curl_mvsnprintf +# define aprintf curl_maprintf +# define vaprintf curl_mvaprintf +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* __CURL_MPRINTF_H */ diff --git a/cocos2dx/platform/third_party/linux/curl/multi.h b/cocos2dx/platform/third_party/linux/curl/multi.h new file mode 100644 index 0000000000..f96566669c --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/multi.h @@ -0,0 +1,345 @@ +#ifndef __CURL_MULTI_H +#define __CURL_MULTI_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ +/* + This is an "external" header file. Don't give away any internals here! + + GOALS + + o Enable a "pull" interface. The application that uses libcurl decides where + and when to ask libcurl to get/send data. + + o Enable multiple simultaneous transfers in the same thread without making it + complicated for the application. + + o Enable the application to select() on its own file descriptors and curl's + file descriptors simultaneous easily. + +*/ + +/* + * This header file should not really need to include "curl.h" since curl.h + * itself includes this file and we expect user applications to do #include + * <curl/curl.h> without the need for especially including multi.h. + * + * For some reason we added this include here at one point, and rather than to + * break existing (wrongly written) libcurl applications, we leave it as-is + * but with this warning attached. + */ +#include "curl.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef void CURLM; + +typedef enum { + CURLM_CALL_MULTI_PERFORM = -1, /* please call curl_multi_perform() or + curl_multi_socket*() soon */ + CURLM_OK, + CURLM_BAD_HANDLE, /* the passed-in handle is not a valid CURLM handle */ + CURLM_BAD_EASY_HANDLE, /* an easy handle was not good/valid */ + CURLM_OUT_OF_MEMORY, /* if you ever get this, you're in deep sh*t */ + CURLM_INTERNAL_ERROR, /* this is a libcurl bug */ + CURLM_BAD_SOCKET, /* the passed in socket argument did not match */ + CURLM_UNKNOWN_OPTION, /* curl_multi_setopt() with unsupported option */ + CURLM_LAST +} CURLMcode; + +/* just to make code nicer when using curl_multi_socket() you can now check + for CURLM_CALL_MULTI_SOCKET too in the same style it works for + curl_multi_perform() and CURLM_CALL_MULTI_PERFORM */ +#define CURLM_CALL_MULTI_SOCKET CURLM_CALL_MULTI_PERFORM + +typedef enum { + CURLMSG_NONE, /* first, not used */ + CURLMSG_DONE, /* This easy handle has completed. 'result' contains + the CURLcode of the transfer */ + CURLMSG_LAST /* last, not used */ +} CURLMSG; + +struct CURLMsg { + CURLMSG msg; /* what this message means */ + CURL *easy_handle; /* the handle it concerns */ + union { + void *whatever; /* message-specific data */ + CURLcode result; /* return code for transfer */ + } data; +}; +typedef struct CURLMsg CURLMsg; + +/* + * Name: curl_multi_init() + * + * Desc: inititalize multi-style curl usage + * + * Returns: a new CURLM handle to use in all 'curl_multi' functions. + */ +CURL_EXTERN CURLM *curl_multi_init(void); + +/* + * Name: curl_multi_add_handle() + * + * Desc: add a standard curl handle to the multi stack + * + * Returns: CURLMcode type, general multi error code. + */ +CURL_EXTERN CURLMcode curl_multi_add_handle(CURLM *multi_handle, + CURL *curl_handle); + + /* + * Name: curl_multi_remove_handle() + * + * Desc: removes a curl handle from the multi stack again + * + * Returns: CURLMcode type, general multi error code. + */ +CURL_EXTERN CURLMcode curl_multi_remove_handle(CURLM *multi_handle, + CURL *curl_handle); + + /* + * Name: curl_multi_fdset() + * + * Desc: Ask curl for its fd_set sets. The app can use these to select() or + * poll() on. We want curl_multi_perform() called as soon as one of + * them are ready. + * + * Returns: CURLMcode type, general multi error code. + */ +CURL_EXTERN CURLMcode curl_multi_fdset(CURLM *multi_handle, + fd_set *read_fd_set, + fd_set *write_fd_set, + fd_set *exc_fd_set, + int *max_fd); + + /* + * Name: curl_multi_perform() + * + * Desc: When the app thinks there's data available for curl it calls this + * function to read/write whatever there is right now. This returns + * as soon as the reads and writes are done. This function does not + * require that there actually is data available for reading or that + * data can be written, it can be called just in case. It returns + * the number of handles that still transfer data in the second + * argument's integer-pointer. + * + * Returns: CURLMcode type, general multi error code. *NOTE* that this only + * returns errors etc regarding the whole multi stack. There might + * still have occurred problems on invidual transfers even when this + * returns OK. + */ +CURL_EXTERN CURLMcode curl_multi_perform(CURLM *multi_handle, + int *running_handles); + + /* + * Name: curl_multi_cleanup() + * + * Desc: Cleans up and removes a whole multi stack. It does not free or + * touch any individual easy handles in any way. We need to define + * in what state those handles will be if this function is called + * in the middle of a transfer. + * + * Returns: CURLMcode type, general multi error code. + */ +CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle); + +/* + * Name: curl_multi_info_read() + * + * Desc: Ask the multi handle if there's any messages/informationals from + * the individual transfers. Messages include informationals such as + * error code from the transfer or just the fact that a transfer is + * completed. More details on these should be written down as well. + * + * Repeated calls to this function will return a new struct each + * time, until a special "end of msgs" struct is returned as a signal + * that there is no more to get at this point. + * + * The data the returned pointer points to will not survive calling + * curl_multi_cleanup(). + * + * The 'CURLMsg' struct is meant to be very simple and only contain + * very basic informations. If more involved information is wanted, + * we will provide the particular "transfer handle" in that struct + * and that should/could/would be used in subsequent + * curl_easy_getinfo() calls (or similar). The point being that we + * must never expose complex structs to applications, as then we'll + * undoubtably get backwards compatibility problems in the future. + * + * Returns: A pointer to a filled-in struct, or NULL if it failed or ran out + * of structs. It also writes the number of messages left in the + * queue (after this read) in the integer the second argument points + * to. + */ +CURL_EXTERN CURLMsg *curl_multi_info_read(CURLM *multi_handle, + int *msgs_in_queue); + +/* + * Name: curl_multi_strerror() + * + * Desc: The curl_multi_strerror function may be used to turn a CURLMcode + * value into the equivalent human readable error string. This is + * useful for printing meaningful error messages. + * + * Returns: A pointer to a zero-terminated error message. + */ +CURL_EXTERN const char *curl_multi_strerror(CURLMcode); + +/* + * Name: curl_multi_socket() and + * curl_multi_socket_all() + * + * Desc: An alternative version of curl_multi_perform() that allows the + * application to pass in one of the file descriptors that have been + * detected to have "action" on them and let libcurl perform. + * See man page for details. + */ +#define CURL_POLL_NONE 0 +#define CURL_POLL_IN 1 +#define CURL_POLL_OUT 2 +#define CURL_POLL_INOUT 3 +#define CURL_POLL_REMOVE 4 + +#define CURL_SOCKET_TIMEOUT CURL_SOCKET_BAD + +#define CURL_CSELECT_IN 0x01 +#define CURL_CSELECT_OUT 0x02 +#define CURL_CSELECT_ERR 0x04 + +typedef int (*curl_socket_callback)(CURL *easy, /* easy handle */ + curl_socket_t s, /* socket */ + int what, /* see above */ + void *userp, /* private callback + pointer */ + void *socketp); /* private socket + pointer */ +/* + * Name: curl_multi_timer_callback + * + * Desc: Called by libcurl whenever the library detects a change in the + * maximum number of milliseconds the app is allowed to wait before + * curl_multi_socket() or curl_multi_perform() must be called + * (to allow libcurl's timed events to take place). + * + * Returns: The callback should return zero. + */ +typedef int (*curl_multi_timer_callback)(CURLM *multi, /* multi handle */ + long timeout_ms, /* see above */ + void *userp); /* private callback + pointer */ + +CURL_EXTERN CURLMcode curl_multi_socket(CURLM *multi_handle, curl_socket_t s, + int *running_handles); + +CURL_EXTERN CURLMcode curl_multi_socket_action(CURLM *multi_handle, + curl_socket_t s, + int ev_bitmask, + int *running_handles); + +CURL_EXTERN CURLMcode curl_multi_socket_all(CURLM *multi_handle, + int *running_handles); + +#ifndef CURL_ALLOW_OLD_MULTI_SOCKET +/* This macro below was added in 7.16.3 to push users who recompile to use + the new curl_multi_socket_action() instead of the old curl_multi_socket() +*/ +#define curl_multi_socket(x,y,z) curl_multi_socket_action(x,y,0,z) +#endif + +/* + * Name: curl_multi_timeout() + * + * Desc: Returns the maximum number of milliseconds the app is allowed to + * wait before curl_multi_socket() or curl_multi_perform() must be + * called (to allow libcurl's timed events to take place). + * + * Returns: CURLM error code. + */ +CURL_EXTERN CURLMcode curl_multi_timeout(CURLM *multi_handle, + long *milliseconds); + +#undef CINIT /* re-using the same name as in curl.h */ + +#ifdef CURL_ISOCPP +#define CINIT(name,type,num) CURLMOPT_ ## name = CURLOPTTYPE_ ## type + num +#else +/* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */ +#define LONG CURLOPTTYPE_LONG +#define OBJECTPOINT CURLOPTTYPE_OBJECTPOINT +#define FUNCTIONPOINT CURLOPTTYPE_FUNCTIONPOINT +#define OFF_T CURLOPTTYPE_OFF_T +#define CINIT(name,type,number) CURLMOPT_/**/name = type + number +#endif + +typedef enum { + /* This is the socket callback function pointer */ + CINIT(SOCKETFUNCTION, FUNCTIONPOINT, 1), + + /* This is the argument passed to the socket callback */ + CINIT(SOCKETDATA, OBJECTPOINT, 2), + + /* set to 1 to enable pipelining for this multi handle */ + CINIT(PIPELINING, LONG, 3), + + /* This is the timer callback function pointer */ + CINIT(TIMERFUNCTION, FUNCTIONPOINT, 4), + + /* This is the argument passed to the timer callback */ + CINIT(TIMERDATA, OBJECTPOINT, 5), + + /* maximum number of entries in the connection cache */ + CINIT(MAXCONNECTS, LONG, 6), + + CURLMOPT_LASTENTRY /* the last unused */ +} CURLMoption; + + +/* + * Name: curl_multi_setopt() + * + * Desc: Sets options for the multi handle. + * + * Returns: CURLM error code. + */ +CURL_EXTERN CURLMcode curl_multi_setopt(CURLM *multi_handle, + CURLMoption option, ...); + + +/* + * Name: curl_multi_assign() + * + * Desc: This function sets an association in the multi handle between the + * given socket and a private pointer of the application. This is + * (only) useful for curl_multi_socket uses. + * + * Returns: CURLM error code. + */ +CURL_EXTERN CURLMcode curl_multi_assign(CURLM *multi_handle, + curl_socket_t sockfd, void *sockp); + +#ifdef __cplusplus +} /* end of extern "C" */ +#endif + +#endif diff --git a/cocos2dx/platform/third_party/linux/curl/stamp-h3 b/cocos2dx/platform/third_party/linux/curl/stamp-h3 new file mode 100644 index 0000000000..e4ea1b88ab --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/stamp-h3 @@ -0,0 +1 @@ +timestamp for include/curl/curlbuild.h diff --git a/cocos2dx/platform/third_party/linux/curl/stdcheaders.h b/cocos2dx/platform/third_party/linux/curl/stdcheaders.h new file mode 100644 index 0000000000..ad82ef6335 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/stdcheaders.h @@ -0,0 +1,33 @@ +#ifndef __STDC_HEADERS_H +#define __STDC_HEADERS_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ + +#include <sys/types.h> + +size_t fread (void *, size_t, size_t, FILE *); +size_t fwrite (const void *, size_t, size_t, FILE *); + +int strcasecmp(const char *, const char *); +int strncasecmp(const char *, const char *, size_t); + +#endif /* __STDC_HEADERS_H */ diff --git a/cocos2dx/platform/third_party/linux/curl/typecheck-gcc.h b/cocos2dx/platform/third_party/linux/curl/typecheck-gcc.h new file mode 100644 index 0000000000..f043a18e43 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/curl/typecheck-gcc.h @@ -0,0 +1,590 @@ +#ifndef __CURL_TYPECHECK_GCC_H +#define __CURL_TYPECHECK_GCC_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ + +/* wraps curl_easy_setopt() with typechecking */ + +/* To add a new kind of warning, add an + * if(_curl_is_sometype_option(_curl_opt)) + * if(!_curl_is_sometype(value)) + * _curl_easy_setopt_err_sometype(); + * block and define _curl_is_sometype_option, _curl_is_sometype and + * _curl_easy_setopt_err_sometype below + * + * NOTE: We use two nested 'if' statements here instead of the && operator, in + * order to work around gcc bug #32061. It affects only gcc 4.3.x/4.4.x + * when compiling with -Wlogical-op. + * + * To add an option that uses the same type as an existing option, you'll just + * need to extend the appropriate _curl_*_option macro + */ +#define curl_easy_setopt(handle, option, value) \ +__extension__ ({ \ + __typeof__ (option) _curl_opt = option; \ + if(__builtin_constant_p(_curl_opt)) { \ + if(_curl_is_long_option(_curl_opt)) \ + if(!_curl_is_long(value)) \ + _curl_easy_setopt_err_long(); \ + if(_curl_is_off_t_option(_curl_opt)) \ + if(!_curl_is_off_t(value)) \ + _curl_easy_setopt_err_curl_off_t(); \ + if(_curl_is_string_option(_curl_opt)) \ + if(!_curl_is_string(value)) \ + _curl_easy_setopt_err_string(); \ + if(_curl_is_write_cb_option(_curl_opt)) \ + if(!_curl_is_write_cb(value)) \ + _curl_easy_setopt_err_write_callback(); \ + if((_curl_opt) == CURLOPT_READFUNCTION) \ + if(!_curl_is_read_cb(value)) \ + _curl_easy_setopt_err_read_cb(); \ + if((_curl_opt) == CURLOPT_IOCTLFUNCTION) \ + if(!_curl_is_ioctl_cb(value)) \ + _curl_easy_setopt_err_ioctl_cb(); \ + if((_curl_opt) == CURLOPT_SOCKOPTFUNCTION) \ + if(!_curl_is_sockopt_cb(value)) \ + _curl_easy_setopt_err_sockopt_cb(); \ + if((_curl_opt) == CURLOPT_OPENSOCKETFUNCTION) \ + if(!_curl_is_opensocket_cb(value)) \ + _curl_easy_setopt_err_opensocket_cb(); \ + if((_curl_opt) == CURLOPT_PROGRESSFUNCTION) \ + if(!_curl_is_progress_cb(value)) \ + _curl_easy_setopt_err_progress_cb(); \ + if((_curl_opt) == CURLOPT_DEBUGFUNCTION) \ + if(!_curl_is_debug_cb(value)) \ + _curl_easy_setopt_err_debug_cb(); \ + if((_curl_opt) == CURLOPT_SSL_CTX_FUNCTION) \ + if(!_curl_is_ssl_ctx_cb(value)) \ + _curl_easy_setopt_err_ssl_ctx_cb(); \ + if(_curl_is_conv_cb_option(_curl_opt)) \ + if(!_curl_is_conv_cb(value)) \ + _curl_easy_setopt_err_conv_cb(); \ + if((_curl_opt) == CURLOPT_SEEKFUNCTION) \ + if(!_curl_is_seek_cb(value)) \ + _curl_easy_setopt_err_seek_cb(); \ + if(_curl_is_cb_data_option(_curl_opt)) \ + if(!_curl_is_cb_data(value)) \ + _curl_easy_setopt_err_cb_data(); \ + if((_curl_opt) == CURLOPT_ERRORBUFFER) \ + if(!_curl_is_error_buffer(value)) \ + _curl_easy_setopt_err_error_buffer(); \ + if((_curl_opt) == CURLOPT_STDERR) \ + if(!_curl_is_FILE(value)) \ + _curl_easy_setopt_err_FILE(); \ + if(_curl_is_postfields_option(_curl_opt)) \ + if(!_curl_is_postfields(value)) \ + _curl_easy_setopt_err_postfields(); \ + if((_curl_opt) == CURLOPT_HTTPPOST) \ + if(!_curl_is_arr((value), struct curl_httppost)) \ + _curl_easy_setopt_err_curl_httpost(); \ + if(_curl_is_slist_option(_curl_opt)) \ + if(!_curl_is_arr((value), struct curl_slist)) \ + _curl_easy_setopt_err_curl_slist(); \ + if((_curl_opt) == CURLOPT_SHARE) \ + if(!_curl_is_ptr((value), CURLSH)) \ + _curl_easy_setopt_err_CURLSH(); \ + } \ + curl_easy_setopt(handle, _curl_opt, value); \ +}) + +/* wraps curl_easy_getinfo() with typechecking */ +/* FIXME: don't allow const pointers */ +#define curl_easy_getinfo(handle, info, arg) \ +__extension__ ({ \ + __typeof__ (info) _curl_info = info; \ + if(__builtin_constant_p(_curl_info)) { \ + if(_curl_is_string_info(_curl_info)) \ + if(!_curl_is_arr((arg), char *)) \ + _curl_easy_getinfo_err_string(); \ + if(_curl_is_long_info(_curl_info)) \ + if(!_curl_is_arr((arg), long)) \ + _curl_easy_getinfo_err_long(); \ + if(_curl_is_double_info(_curl_info)) \ + if(!_curl_is_arr((arg), double)) \ + _curl_easy_getinfo_err_double(); \ + if(_curl_is_slist_info(_curl_info)) \ + if(!_curl_is_arr((arg), struct curl_slist *)) \ + _curl_easy_getinfo_err_curl_slist(); \ + } \ + curl_easy_getinfo(handle, _curl_info, arg); \ +}) + +/* TODO: typechecking for curl_share_setopt() and curl_multi_setopt(), + * for now just make sure that the functions are called with three + * arguments + */ +#define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param) +#define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param) + + +/* the actual warnings, triggered by calling the _curl_easy_setopt_err* + * functions */ + +/* To define a new warning, use _CURL_WARNING(identifier, "message") */ +#define _CURL_WARNING(id, message) \ + static void __attribute__((warning(message))) __attribute__((unused)) \ + __attribute__((noinline)) id(void) { __asm__(""); } + +_CURL_WARNING(_curl_easy_setopt_err_long, + "curl_easy_setopt expects a long argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_curl_off_t, + "curl_easy_setopt expects a curl_off_t argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_string, + "curl_easy_setopt expects a " + "string (char* or char[]) argument for this option" + ) +_CURL_WARNING(_curl_easy_setopt_err_write_callback, + "curl_easy_setopt expects a curl_write_callback argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_read_cb, + "curl_easy_setopt expects a curl_read_callback argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_ioctl_cb, + "curl_easy_setopt expects a curl_ioctl_callback argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_sockopt_cb, + "curl_easy_setopt expects a curl_sockopt_callback argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_opensocket_cb, + "curl_easy_setopt expects a " + "curl_opensocket_callback argument for this option" + ) +_CURL_WARNING(_curl_easy_setopt_err_progress_cb, + "curl_easy_setopt expects a curl_progress_callback argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_debug_cb, + "curl_easy_setopt expects a curl_debug_callback argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_ssl_ctx_cb, + "curl_easy_setopt expects a curl_ssl_ctx_callback argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_conv_cb, + "curl_easy_setopt expects a curl_conv_callback argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_seek_cb, + "curl_easy_setopt expects a curl_seek_callback argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_cb_data, + "curl_easy_setopt expects a " + "private data pointer as argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_error_buffer, + "curl_easy_setopt expects a " + "char buffer of CURL_ERROR_SIZE as argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_FILE, + "curl_easy_setopt expects a FILE* argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_postfields, + "curl_easy_setopt expects a void* or char* argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_curl_httpost, + "curl_easy_setopt expects a struct curl_httppost* argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_curl_slist, + "curl_easy_setopt expects a struct curl_slist* argument for this option") +_CURL_WARNING(_curl_easy_setopt_err_CURLSH, + "curl_easy_setopt expects a CURLSH* argument for this option") + +_CURL_WARNING(_curl_easy_getinfo_err_string, + "curl_easy_getinfo expects a pointer to char * for this info") +_CURL_WARNING(_curl_easy_getinfo_err_long, + "curl_easy_getinfo expects a pointer to long for this info") +_CURL_WARNING(_curl_easy_getinfo_err_double, + "curl_easy_getinfo expects a pointer to double for this info") +_CURL_WARNING(_curl_easy_getinfo_err_curl_slist, + "curl_easy_getinfo expects a pointer to struct curl_slist * for this info") + +/* groups of curl_easy_setops options that take the same type of argument */ + +/* To add a new option to one of the groups, just add + * (option) == CURLOPT_SOMETHING + * to the or-expression. If the option takes a long or curl_off_t, you don't + * have to do anything + */ + +/* evaluates to true if option takes a long argument */ +#define _curl_is_long_option(option) \ + (0 < (option) && (option) < CURLOPTTYPE_OBJECTPOINT) + +#define _curl_is_off_t_option(option) \ + ((option) > CURLOPTTYPE_OFF_T) + +/* evaluates to true if option takes a char* argument */ +#define _curl_is_string_option(option) \ + ((option) == CURLOPT_URL || \ + (option) == CURLOPT_PROXY || \ + (option) == CURLOPT_INTERFACE || \ + (option) == CURLOPT_NETRC_FILE || \ + (option) == CURLOPT_USERPWD || \ + (option) == CURLOPT_USERNAME || \ + (option) == CURLOPT_PASSWORD || \ + (option) == CURLOPT_PROXYUSERPWD || \ + (option) == CURLOPT_PROXYUSERNAME || \ + (option) == CURLOPT_PROXYPASSWORD || \ + (option) == CURLOPT_NOPROXY || \ + (option) == CURLOPT_ACCEPT_ENCODING || \ + (option) == CURLOPT_REFERER || \ + (option) == CURLOPT_USERAGENT || \ + (option) == CURLOPT_COOKIE || \ + (option) == CURLOPT_COOKIEFILE || \ + (option) == CURLOPT_COOKIEJAR || \ + (option) == CURLOPT_COOKIELIST || \ + (option) == CURLOPT_FTPPORT || \ + (option) == CURLOPT_FTP_ALTERNATIVE_TO_USER || \ + (option) == CURLOPT_FTP_ACCOUNT || \ + (option) == CURLOPT_RANGE || \ + (option) == CURLOPT_CUSTOMREQUEST || \ + (option) == CURLOPT_SSLCERT || \ + (option) == CURLOPT_SSLCERTTYPE || \ + (option) == CURLOPT_SSLKEY || \ + (option) == CURLOPT_SSLKEYTYPE || \ + (option) == CURLOPT_KEYPASSWD || \ + (option) == CURLOPT_SSLENGINE || \ + (option) == CURLOPT_CAINFO || \ + (option) == CURLOPT_CAPATH || \ + (option) == CURLOPT_RANDOM_FILE || \ + (option) == CURLOPT_EGDSOCKET || \ + (option) == CURLOPT_SSL_CIPHER_LIST || \ + (option) == CURLOPT_KRBLEVEL || \ + (option) == CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 || \ + (option) == CURLOPT_SSH_PUBLIC_KEYFILE || \ + (option) == CURLOPT_SSH_PRIVATE_KEYFILE || \ + (option) == CURLOPT_CRLFILE || \ + (option) == CURLOPT_ISSUERCERT || \ + (option) == CURLOPT_SOCKS5_GSSAPI_SERVICE || \ + (option) == CURLOPT_SSH_KNOWNHOSTS || \ + (option) == CURLOPT_MAIL_FROM || \ + (option) == CURLOPT_RTSP_SESSION_ID || \ + (option) == CURLOPT_RTSP_STREAM_URI || \ + (option) == CURLOPT_RTSP_TRANSPORT || \ + 0) + +/* evaluates to true if option takes a curl_write_callback argument */ +#define _curl_is_write_cb_option(option) \ + ((option) == CURLOPT_HEADERFUNCTION || \ + (option) == CURLOPT_WRITEFUNCTION) + +/* evaluates to true if option takes a curl_conv_callback argument */ +#define _curl_is_conv_cb_option(option) \ + ((option) == CURLOPT_CONV_TO_NETWORK_FUNCTION || \ + (option) == CURLOPT_CONV_FROM_NETWORK_FUNCTION || \ + (option) == CURLOPT_CONV_FROM_UTF8_FUNCTION) + +/* evaluates to true if option takes a data argument to pass to a callback */ +#define _curl_is_cb_data_option(option) \ + ((option) == CURLOPT_WRITEDATA || \ + (option) == CURLOPT_READDATA || \ + (option) == CURLOPT_IOCTLDATA || \ + (option) == CURLOPT_SOCKOPTDATA || \ + (option) == CURLOPT_OPENSOCKETDATA || \ + (option) == CURLOPT_PROGRESSDATA || \ + (option) == CURLOPT_WRITEHEADER || \ + (option) == CURLOPT_DEBUGDATA || \ + (option) == CURLOPT_SSL_CTX_DATA || \ + (option) == CURLOPT_SEEKDATA || \ + (option) == CURLOPT_PRIVATE || \ + (option) == CURLOPT_SSH_KEYDATA || \ + (option) == CURLOPT_INTERLEAVEDATA || \ + (option) == CURLOPT_CHUNK_DATA || \ + (option) == CURLOPT_FNMATCH_DATA || \ + 0) + +/* evaluates to true if option takes a POST data argument (void* or char*) */ +#define _curl_is_postfields_option(option) \ + ((option) == CURLOPT_POSTFIELDS || \ + (option) == CURLOPT_COPYPOSTFIELDS || \ + 0) + +/* evaluates to true if option takes a struct curl_slist * argument */ +#define _curl_is_slist_option(option) \ + ((option) == CURLOPT_HTTPHEADER || \ + (option) == CURLOPT_HTTP200ALIASES || \ + (option) == CURLOPT_QUOTE || \ + (option) == CURLOPT_POSTQUOTE || \ + (option) == CURLOPT_PREQUOTE || \ + (option) == CURLOPT_TELNETOPTIONS || \ + (option) == CURLOPT_MAIL_RCPT || \ + 0) + +/* groups of curl_easy_getinfo infos that take the same type of argument */ + +/* evaluates to true if info expects a pointer to char * argument */ +#define _curl_is_string_info(info) \ + (CURLINFO_STRING < (info) && (info) < CURLINFO_LONG) + +/* evaluates to true if info expects a pointer to long argument */ +#define _curl_is_long_info(info) \ + (CURLINFO_LONG < (info) && (info) < CURLINFO_DOUBLE) + +/* evaluates to true if info expects a pointer to double argument */ +#define _curl_is_double_info(info) \ + (CURLINFO_DOUBLE < (info) && (info) < CURLINFO_SLIST) + +/* true if info expects a pointer to struct curl_slist * argument */ +#define _curl_is_slist_info(info) \ + (CURLINFO_SLIST < (info)) + + +/* typecheck helpers -- check whether given expression has requested type*/ + +/* For pointers, you can use the _curl_is_ptr/_curl_is_arr macros, + * otherwise define a new macro. Search for __builtin_types_compatible_p + * in the GCC manual. + * NOTE: these macros MUST NOT EVALUATE their arguments! The argument is + * the actual expression passed to the curl_easy_setopt macro. This + * means that you can only apply the sizeof and __typeof__ operators, no + * == or whatsoever. + */ + +/* XXX: should evaluate to true iff expr is a pointer */ +#define _curl_is_any_ptr(expr) \ + (sizeof(expr) == sizeof(void*)) + +/* evaluates to true if expr is NULL */ +/* XXX: must not evaluate expr, so this check is not accurate */ +#define _curl_is_NULL(expr) \ + (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL))) + +/* evaluates to true if expr is type*, const type* or NULL */ +#define _curl_is_ptr(expr, type) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), type *) || \ + __builtin_types_compatible_p(__typeof__(expr), const type *)) + +/* evaluates to true if expr is one of type[], type*, NULL or const type* */ +#define _curl_is_arr(expr, type) \ + (_curl_is_ptr((expr), type) || \ + __builtin_types_compatible_p(__typeof__(expr), type [])) + +/* evaluates to true if expr is a string */ +#define _curl_is_string(expr) \ + (_curl_is_arr((expr), char) || \ + _curl_is_arr((expr), signed char) || \ + _curl_is_arr((expr), unsigned char)) + +/* evaluates to true if expr is a long (no matter the signedness) + * XXX: for now, int is also accepted (and therefore short and char, which + * are promoted to int when passed to a variadic function) */ +#define _curl_is_long(expr) \ + (__builtin_types_compatible_p(__typeof__(expr), long) || \ + __builtin_types_compatible_p(__typeof__(expr), signed long) || \ + __builtin_types_compatible_p(__typeof__(expr), unsigned long) || \ + __builtin_types_compatible_p(__typeof__(expr), int) || \ + __builtin_types_compatible_p(__typeof__(expr), signed int) || \ + __builtin_types_compatible_p(__typeof__(expr), unsigned int) || \ + __builtin_types_compatible_p(__typeof__(expr), short) || \ + __builtin_types_compatible_p(__typeof__(expr), signed short) || \ + __builtin_types_compatible_p(__typeof__(expr), unsigned short) || \ + __builtin_types_compatible_p(__typeof__(expr), char) || \ + __builtin_types_compatible_p(__typeof__(expr), signed char) || \ + __builtin_types_compatible_p(__typeof__(expr), unsigned char)) + +/* evaluates to true if expr is of type curl_off_t */ +#define _curl_is_off_t(expr) \ + (__builtin_types_compatible_p(__typeof__(expr), curl_off_t)) + +/* evaluates to true if expr is abuffer suitable for CURLOPT_ERRORBUFFER */ +/* XXX: also check size of an char[] array? */ +#define _curl_is_error_buffer(expr) \ + (__builtin_types_compatible_p(__typeof__(expr), char *) || \ + __builtin_types_compatible_p(__typeof__(expr), char[])) + +/* evaluates to true if expr is of type (const) void* or (const) FILE* */ +#if 0 +#define _curl_is_cb_data(expr) \ + (_curl_is_ptr((expr), void) || \ + _curl_is_ptr((expr), FILE)) +#else /* be less strict */ +#define _curl_is_cb_data(expr) \ + _curl_is_any_ptr(expr) +#endif + +/* evaluates to true if expr is of type FILE* */ +#define _curl_is_FILE(expr) \ + (__builtin_types_compatible_p(__typeof__(expr), FILE *)) + +/* evaluates to true if expr can be passed as POST data (void* or char*) */ +#define _curl_is_postfields(expr) \ + (_curl_is_ptr((expr), void) || \ + _curl_is_arr((expr), char)) + +/* FIXME: the whole callback checking is messy... + * The idea is to tolerate char vs. void and const vs. not const + * pointers in arguments at least + */ +/* helper: __builtin_types_compatible_p distinguishes between functions and + * function pointers, hide it */ +#define _curl_callback_compatible(func, type) \ + (__builtin_types_compatible_p(__typeof__(func), type) || \ + __builtin_types_compatible_p(__typeof__(func), type*)) + +/* evaluates to true if expr is of type curl_read_callback or "similar" */ +#define _curl_is_read_cb(expr) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), __typeof__(fread)) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_read_callback) || \ + _curl_callback_compatible((expr), _curl_read_callback1) || \ + _curl_callback_compatible((expr), _curl_read_callback2) || \ + _curl_callback_compatible((expr), _curl_read_callback3) || \ + _curl_callback_compatible((expr), _curl_read_callback4) || \ + _curl_callback_compatible((expr), _curl_read_callback5) || \ + _curl_callback_compatible((expr), _curl_read_callback6)) +typedef size_t (_curl_read_callback1)(char *, size_t, size_t, void*); +typedef size_t (_curl_read_callback2)(char *, size_t, size_t, const void*); +typedef size_t (_curl_read_callback3)(char *, size_t, size_t, FILE*); +typedef size_t (_curl_read_callback4)(void *, size_t, size_t, void*); +typedef size_t (_curl_read_callback5)(void *, size_t, size_t, const void*); +typedef size_t (_curl_read_callback6)(void *, size_t, size_t, FILE*); + +/* evaluates to true if expr is of type curl_write_callback or "similar" */ +#define _curl_is_write_cb(expr) \ + (_curl_is_read_cb(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), __typeof__(fwrite)) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_write_callback) || \ + _curl_callback_compatible((expr), _curl_write_callback1) || \ + _curl_callback_compatible((expr), _curl_write_callback2) || \ + _curl_callback_compatible((expr), _curl_write_callback3) || \ + _curl_callback_compatible((expr), _curl_write_callback4) || \ + _curl_callback_compatible((expr), _curl_write_callback5) || \ + _curl_callback_compatible((expr), _curl_write_callback6)) +typedef size_t (_curl_write_callback1)(const char *, size_t, size_t, void*); +typedef size_t (_curl_write_callback2)(const char *, size_t, size_t, + const void*); +typedef size_t (_curl_write_callback3)(const char *, size_t, size_t, FILE*); +typedef size_t (_curl_write_callback4)(const void *, size_t, size_t, void*); +typedef size_t (_curl_write_callback5)(const void *, size_t, size_t, + const void*); +typedef size_t (_curl_write_callback6)(const void *, size_t, size_t, FILE*); + +/* evaluates to true if expr is of type curl_ioctl_callback or "similar" */ +#define _curl_is_ioctl_cb(expr) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_ioctl_callback) || \ + _curl_callback_compatible((expr), _curl_ioctl_callback1) || \ + _curl_callback_compatible((expr), _curl_ioctl_callback2) || \ + _curl_callback_compatible((expr), _curl_ioctl_callback3) || \ + _curl_callback_compatible((expr), _curl_ioctl_callback4)) +typedef curlioerr (_curl_ioctl_callback1)(CURL *, int, void*); +typedef curlioerr (_curl_ioctl_callback2)(CURL *, int, const void*); +typedef curlioerr (_curl_ioctl_callback3)(CURL *, curliocmd, void*); +typedef curlioerr (_curl_ioctl_callback4)(CURL *, curliocmd, const void*); + +/* evaluates to true if expr is of type curl_sockopt_callback or "similar" */ +#define _curl_is_sockopt_cb(expr) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_sockopt_callback) || \ + _curl_callback_compatible((expr), _curl_sockopt_callback1) || \ + _curl_callback_compatible((expr), _curl_sockopt_callback2)) +typedef int (_curl_sockopt_callback1)(void *, curl_socket_t, curlsocktype); +typedef int (_curl_sockopt_callback2)(const void *, curl_socket_t, + curlsocktype); + +/* evaluates to true if expr is of type curl_opensocket_callback or + "similar" */ +#define _curl_is_opensocket_cb(expr) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_opensocket_callback) ||\ + _curl_callback_compatible((expr), _curl_opensocket_callback1) || \ + _curl_callback_compatible((expr), _curl_opensocket_callback2) || \ + _curl_callback_compatible((expr), _curl_opensocket_callback3) || \ + _curl_callback_compatible((expr), _curl_opensocket_callback4)) +typedef curl_socket_t (_curl_opensocket_callback1) + (void *, curlsocktype, struct curl_sockaddr *); +typedef curl_socket_t (_curl_opensocket_callback2) + (void *, curlsocktype, const struct curl_sockaddr *); +typedef curl_socket_t (_curl_opensocket_callback3) + (const void *, curlsocktype, struct curl_sockaddr *); +typedef curl_socket_t (_curl_opensocket_callback4) + (const void *, curlsocktype, const struct curl_sockaddr *); + +/* evaluates to true if expr is of type curl_progress_callback or "similar" */ +#define _curl_is_progress_cb(expr) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_progress_callback) || \ + _curl_callback_compatible((expr), _curl_progress_callback1) || \ + _curl_callback_compatible((expr), _curl_progress_callback2)) +typedef int (_curl_progress_callback1)(void *, + double, double, double, double); +typedef int (_curl_progress_callback2)(const void *, + double, double, double, double); + +/* evaluates to true if expr is of type curl_debug_callback or "similar" */ +#define _curl_is_debug_cb(expr) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_debug_callback) || \ + _curl_callback_compatible((expr), _curl_debug_callback1) || \ + _curl_callback_compatible((expr), _curl_debug_callback2) || \ + _curl_callback_compatible((expr), _curl_debug_callback3) || \ + _curl_callback_compatible((expr), _curl_debug_callback4)) +typedef int (_curl_debug_callback1) (CURL *, + curl_infotype, char *, size_t, void *); +typedef int (_curl_debug_callback2) (CURL *, + curl_infotype, char *, size_t, const void *); +typedef int (_curl_debug_callback3) (CURL *, + curl_infotype, const char *, size_t, void *); +typedef int (_curl_debug_callback4) (CURL *, + curl_infotype, const char *, size_t, const void *); + +/* evaluates to true if expr is of type curl_ssl_ctx_callback or "similar" */ +/* this is getting even messier... */ +#define _curl_is_ssl_ctx_cb(expr) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_ssl_ctx_callback) || \ + _curl_callback_compatible((expr), _curl_ssl_ctx_callback1) || \ + _curl_callback_compatible((expr), _curl_ssl_ctx_callback2) || \ + _curl_callback_compatible((expr), _curl_ssl_ctx_callback3) || \ + _curl_callback_compatible((expr), _curl_ssl_ctx_callback4) || \ + _curl_callback_compatible((expr), _curl_ssl_ctx_callback5) || \ + _curl_callback_compatible((expr), _curl_ssl_ctx_callback6) || \ + _curl_callback_compatible((expr), _curl_ssl_ctx_callback7) || \ + _curl_callback_compatible((expr), _curl_ssl_ctx_callback8)) +typedef CURLcode (_curl_ssl_ctx_callback1)(CURL *, void *, void *); +typedef CURLcode (_curl_ssl_ctx_callback2)(CURL *, void *, const void *); +typedef CURLcode (_curl_ssl_ctx_callback3)(CURL *, const void *, void *); +typedef CURLcode (_curl_ssl_ctx_callback4)(CURL *, const void *, const void *); +#ifdef HEADER_SSL_H +/* hack: if we included OpenSSL's ssl.h, we know about SSL_CTX + * this will of course break if we're included before OpenSSL headers... + */ +typedef CURLcode (_curl_ssl_ctx_callback5)(CURL *, SSL_CTX, void *); +typedef CURLcode (_curl_ssl_ctx_callback6)(CURL *, SSL_CTX, const void *); +typedef CURLcode (_curl_ssl_ctx_callback7)(CURL *, const SSL_CTX, void *); +typedef CURLcode (_curl_ssl_ctx_callback8)(CURL *, const SSL_CTX, + const void *); +#else +typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback5; +typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback6; +typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback7; +typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback8; +#endif + +/* evaluates to true if expr is of type curl_conv_callback or "similar" */ +#define _curl_is_conv_cb(expr) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_conv_callback) || \ + _curl_callback_compatible((expr), _curl_conv_callback1) || \ + _curl_callback_compatible((expr), _curl_conv_callback2) || \ + _curl_callback_compatible((expr), _curl_conv_callback3) || \ + _curl_callback_compatible((expr), _curl_conv_callback4)) +typedef CURLcode (*_curl_conv_callback1)(char *, size_t length); +typedef CURLcode (*_curl_conv_callback2)(const char *, size_t length); +typedef CURLcode (*_curl_conv_callback3)(void *, size_t length); +typedef CURLcode (*_curl_conv_callback4)(const void *, size_t length); + +/* evaluates to true if expr is of type curl_seek_callback or "similar" */ +#define _curl_is_seek_cb(expr) \ + (_curl_is_NULL(expr) || \ + __builtin_types_compatible_p(__typeof__(expr), curl_seek_callback) || \ + _curl_callback_compatible((expr), _curl_seek_callback1) || \ + _curl_callback_compatible((expr), _curl_seek_callback2)) +typedef CURLcode (*_curl_seek_callback1)(void *, curl_off_t, int); +typedef CURLcode (*_curl_seek_callback2)(const void *, curl_off_t, int); + + +#endif /* __CURL_TYPECHECK_GCC_H */ diff --git a/cocos2dx/platform/third_party/linux/libraries/libcurl.a.REMOVED.git-id b/cocos2dx/platform/third_party/linux/libraries/libcurl.a.REMOVED.git-id new file mode 100644 index 0000000000..03dcad5b23 --- /dev/null +++ b/cocos2dx/platform/third_party/linux/libraries/libcurl.a.REMOVED.git-id @@ -0,0 +1 @@ +0059c979a994f1102d90b9f532a6687f2d4905c2 \ No newline at end of file From a362d3131cbbd0c751db4bc4552a2fe8727d78d3 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Sun, 28 Aug 2011 16:58:10 +0800 Subject: [PATCH 21/31] update debug and release makefiles again --- cocos2dx/Debug/actions/subdir.mk | 54 ++++++++++++ cocos2dx/Debug/base_nodes/subdir.mk | 27 ++++++ cocos2dx/Debug/cocoa/subdir.mk | 45 ++++++++++ cocos2dx/Debug/effects/subdir.mk | 27 ++++++ cocos2dx/Debug/keypad_dispatcher/subdir.mk | 27 ++++++ cocos2dx/Debug/label_nodes/subdir.mk | 30 +++++++ .../layers_scenes_transitions_nodes/subdir.mk | 36 ++++++++ .../Debug/libcocos2dx-base.so.REMOVED.git-id | 1 + cocos2dx/Debug/makefile | 85 +++++++++++++++++++ cocos2dx/Debug/menu_nodes/subdir.mk | 27 ++++++ cocos2dx/Debug/misc_nodes/subdir.mk | 33 +++++++ cocos2dx/Debug/objects.mk | 8 ++ cocos2dx/Debug/particle_nodes/subdir.mk | 30 +++++++ cocos2dx/Debug/platform/Linux/subdir.mk | 33 +++++++ cocos2dx/Debug/platform/subdir.mk | 45 ++++++++++ cocos2dx/Debug/script_support/subdir.mk | 24 ++++++ cocos2dx/Debug/sources.mk | 48 +++++++++++ cocos2dx/Debug/sprite_nodes/subdir.mk | 39 +++++++++ cocos2dx/Debug/subdir.mk | 39 +++++++++ .../Debug/support/image_support/subdir.mk | 24 ++++++ cocos2dx/Debug/support/subdir.mk | 42 +++++++++ cocos2dx/Debug/support/zip_support/subdir.mk | 30 +++++++ cocos2dx/Debug/text_input_node/subdir.mk | 27 ++++++ cocos2dx/Debug/textures/subdir.mk | 33 +++++++ .../Debug/tileMap_parallax_nodes/subdir.mk | 39 +++++++++ cocos2dx/Debug/touch_dispatcher/subdir.mk | 27 ++++++ cocos2dx/Release/actions/subdir.mk | 54 ++++++++++++ cocos2dx/Release/base_nodes/subdir.mk | 27 ++++++ cocos2dx/Release/cocoa/subdir.mk | 45 ++++++++++ cocos2dx/Release/effects/subdir.mk | 27 ++++++ cocos2dx/Release/keypad_dispatcher/subdir.mk | 27 ++++++ cocos2dx/Release/label_nodes/subdir.mk | 30 +++++++ .../layers_scenes_transitions_nodes/subdir.mk | 36 ++++++++ .../libcocos2dx-base.so.REMOVED.git-id | 1 + cocos2dx/Release/makefile | 85 +++++++++++++++++++ cocos2dx/Release/menu_nodes/subdir.mk | 27 ++++++ cocos2dx/Release/misc_nodes/subdir.mk | 33 +++++++ cocos2dx/Release/objects.mk | 8 ++ cocos2dx/Release/particle_nodes/subdir.mk | 30 +++++++ cocos2dx/Release/platform/Linux/subdir.mk | 33 +++++++ cocos2dx/Release/platform/subdir.mk | 45 ++++++++++ cocos2dx/Release/script_support/subdir.mk | 24 ++++++ cocos2dx/Release/sources.mk | 48 +++++++++++ cocos2dx/Release/sprite_nodes/subdir.mk | 39 +++++++++ cocos2dx/Release/subdir.mk | 39 +++++++++ .../Release/support/image_support/subdir.mk | 24 ++++++ cocos2dx/Release/support/subdir.mk | 42 +++++++++ .../Release/support/zip_support/subdir.mk | 30 +++++++ cocos2dx/Release/text_input_node/subdir.mk | 27 ++++++ cocos2dx/Release/textures/subdir.mk | 33 +++++++ .../Release/tileMap_parallax_nodes/subdir.mk | 39 +++++++++ cocos2dx/Release/touch_dispatcher/subdir.mk | 27 ++++++ 52 files changed, 1760 insertions(+) create mode 100644 cocos2dx/Debug/actions/subdir.mk create mode 100644 cocos2dx/Debug/base_nodes/subdir.mk create mode 100644 cocos2dx/Debug/cocoa/subdir.mk create mode 100644 cocos2dx/Debug/effects/subdir.mk create mode 100644 cocos2dx/Debug/keypad_dispatcher/subdir.mk create mode 100644 cocos2dx/Debug/label_nodes/subdir.mk create mode 100644 cocos2dx/Debug/layers_scenes_transitions_nodes/subdir.mk create mode 100644 cocos2dx/Debug/libcocos2dx-base.so.REMOVED.git-id create mode 100644 cocos2dx/Debug/makefile create mode 100644 cocos2dx/Debug/menu_nodes/subdir.mk create mode 100644 cocos2dx/Debug/misc_nodes/subdir.mk create mode 100644 cocos2dx/Debug/objects.mk create mode 100644 cocos2dx/Debug/particle_nodes/subdir.mk create mode 100644 cocos2dx/Debug/platform/Linux/subdir.mk create mode 100644 cocos2dx/Debug/platform/subdir.mk create mode 100644 cocos2dx/Debug/script_support/subdir.mk create mode 100644 cocos2dx/Debug/sources.mk create mode 100644 cocos2dx/Debug/sprite_nodes/subdir.mk create mode 100644 cocos2dx/Debug/subdir.mk create mode 100644 cocos2dx/Debug/support/image_support/subdir.mk create mode 100644 cocos2dx/Debug/support/subdir.mk create mode 100644 cocos2dx/Debug/support/zip_support/subdir.mk create mode 100644 cocos2dx/Debug/text_input_node/subdir.mk create mode 100644 cocos2dx/Debug/textures/subdir.mk create mode 100644 cocos2dx/Debug/tileMap_parallax_nodes/subdir.mk create mode 100644 cocos2dx/Debug/touch_dispatcher/subdir.mk create mode 100644 cocos2dx/Release/actions/subdir.mk create mode 100644 cocos2dx/Release/base_nodes/subdir.mk create mode 100644 cocos2dx/Release/cocoa/subdir.mk create mode 100644 cocos2dx/Release/effects/subdir.mk create mode 100644 cocos2dx/Release/keypad_dispatcher/subdir.mk create mode 100644 cocos2dx/Release/label_nodes/subdir.mk create mode 100644 cocos2dx/Release/layers_scenes_transitions_nodes/subdir.mk create mode 100644 cocos2dx/Release/libcocos2dx-base.so.REMOVED.git-id create mode 100644 cocos2dx/Release/makefile create mode 100644 cocos2dx/Release/menu_nodes/subdir.mk create mode 100644 cocos2dx/Release/misc_nodes/subdir.mk create mode 100644 cocos2dx/Release/objects.mk create mode 100644 cocos2dx/Release/particle_nodes/subdir.mk create mode 100644 cocos2dx/Release/platform/Linux/subdir.mk create mode 100644 cocos2dx/Release/platform/subdir.mk create mode 100644 cocos2dx/Release/script_support/subdir.mk create mode 100644 cocos2dx/Release/sources.mk create mode 100644 cocos2dx/Release/sprite_nodes/subdir.mk create mode 100644 cocos2dx/Release/subdir.mk create mode 100644 cocos2dx/Release/support/image_support/subdir.mk create mode 100644 cocos2dx/Release/support/subdir.mk create mode 100644 cocos2dx/Release/support/zip_support/subdir.mk create mode 100644 cocos2dx/Release/text_input_node/subdir.mk create mode 100644 cocos2dx/Release/textures/subdir.mk create mode 100644 cocos2dx/Release/tileMap_parallax_nodes/subdir.mk create mode 100644 cocos2dx/Release/touch_dispatcher/subdir.mk diff --git a/cocos2dx/Debug/actions/subdir.mk b/cocos2dx/Debug/actions/subdir.mk new file mode 100644 index 0000000000..1e7651aa45 --- /dev/null +++ b/cocos2dx/Debug/actions/subdir.mk @@ -0,0 +1,54 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../actions/CCAction.cpp \ +../actions/CCActionCamera.cpp \ +../actions/CCActionEase.cpp \ +../actions/CCActionGrid.cpp \ +../actions/CCActionGrid3D.cpp \ +../actions/CCActionInstant.cpp \ +../actions/CCActionInterval.cpp \ +../actions/CCActionManager.cpp \ +../actions/CCActionPageTurn3D.cpp \ +../actions/CCActionProgressTimer.cpp \ +../actions/CCActionTiledGrid.cpp + +OBJS += \ +./actions/CCAction.o \ +./actions/CCActionCamera.o \ +./actions/CCActionEase.o \ +./actions/CCActionGrid.o \ +./actions/CCActionGrid3D.o \ +./actions/CCActionInstant.o \ +./actions/CCActionInterval.o \ +./actions/CCActionManager.o \ +./actions/CCActionPageTurn3D.o \ +./actions/CCActionProgressTimer.o \ +./actions/CCActionTiledGrid.o + +CPP_DEPS += \ +./actions/CCAction.d \ +./actions/CCActionCamera.d \ +./actions/CCActionEase.d \ +./actions/CCActionGrid.d \ +./actions/CCActionGrid3D.d \ +./actions/CCActionInstant.d \ +./actions/CCActionInterval.d \ +./actions/CCActionManager.d \ +./actions/CCActionPageTurn3D.d \ +./actions/CCActionProgressTimer.d \ +./actions/CCActionTiledGrid.d + + +# Each subdirectory must supply rules for building sources it contributes +actions/%.o: ../actions/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/base_nodes/subdir.mk b/cocos2dx/Debug/base_nodes/subdir.mk new file mode 100644 index 0000000000..0d5e2ddd1c --- /dev/null +++ b/cocos2dx/Debug/base_nodes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../base_nodes/CCAtlasNode.cpp \ +../base_nodes/CCNode.cpp + +OBJS += \ +./base_nodes/CCAtlasNode.o \ +./base_nodes/CCNode.o + +CPP_DEPS += \ +./base_nodes/CCAtlasNode.d \ +./base_nodes/CCNode.d + + +# Each subdirectory must supply rules for building sources it contributes +base_nodes/%.o: ../base_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/cocoa/subdir.mk b/cocos2dx/Debug/cocoa/subdir.mk new file mode 100644 index 0000000000..c27ec1e76c --- /dev/null +++ b/cocos2dx/Debug/cocoa/subdir.mk @@ -0,0 +1,45 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../cocoa/CCAffineTransform.cpp \ +../cocoa/CCAutoreleasePool.cpp \ +../cocoa/CCData.cpp \ +../cocoa/CCGeometry.cpp \ +../cocoa/CCNS.cpp \ +../cocoa/CCObject.cpp \ +../cocoa/CCSet.cpp \ +../cocoa/CCZone.cpp + +OBJS += \ +./cocoa/CCAffineTransform.o \ +./cocoa/CCAutoreleasePool.o \ +./cocoa/CCData.o \ +./cocoa/CCGeometry.o \ +./cocoa/CCNS.o \ +./cocoa/CCObject.o \ +./cocoa/CCSet.o \ +./cocoa/CCZone.o + +CPP_DEPS += \ +./cocoa/CCAffineTransform.d \ +./cocoa/CCAutoreleasePool.d \ +./cocoa/CCData.d \ +./cocoa/CCGeometry.d \ +./cocoa/CCNS.d \ +./cocoa/CCObject.d \ +./cocoa/CCSet.d \ +./cocoa/CCZone.d + + +# Each subdirectory must supply rules for building sources it contributes +cocoa/%.o: ../cocoa/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/effects/subdir.mk b/cocos2dx/Debug/effects/subdir.mk new file mode 100644 index 0000000000..1b2cad5f78 --- /dev/null +++ b/cocos2dx/Debug/effects/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../effects/CCGrabber.cpp \ +../effects/CCGrid.cpp + +OBJS += \ +./effects/CCGrabber.o \ +./effects/CCGrid.o + +CPP_DEPS += \ +./effects/CCGrabber.d \ +./effects/CCGrid.d + + +# Each subdirectory must supply rules for building sources it contributes +effects/%.o: ../effects/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/keypad_dispatcher/subdir.mk b/cocos2dx/Debug/keypad_dispatcher/subdir.mk new file mode 100644 index 0000000000..602aae8953 --- /dev/null +++ b/cocos2dx/Debug/keypad_dispatcher/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../keypad_dispatcher/CCKeypadDelegate.cpp \ +../keypad_dispatcher/CCKeypadDispatcher.cpp + +OBJS += \ +./keypad_dispatcher/CCKeypadDelegate.o \ +./keypad_dispatcher/CCKeypadDispatcher.o + +CPP_DEPS += \ +./keypad_dispatcher/CCKeypadDelegate.d \ +./keypad_dispatcher/CCKeypadDispatcher.d + + +# Each subdirectory must supply rules for building sources it contributes +keypad_dispatcher/%.o: ../keypad_dispatcher/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/label_nodes/subdir.mk b/cocos2dx/Debug/label_nodes/subdir.mk new file mode 100644 index 0000000000..824c5b1c1f --- /dev/null +++ b/cocos2dx/Debug/label_nodes/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../label_nodes/CCLabelAtlas.cpp \ +../label_nodes/CCLabelBMFont.cpp \ +../label_nodes/CCLabelTTF.cpp + +OBJS += \ +./label_nodes/CCLabelAtlas.o \ +./label_nodes/CCLabelBMFont.o \ +./label_nodes/CCLabelTTF.o + +CPP_DEPS += \ +./label_nodes/CCLabelAtlas.d \ +./label_nodes/CCLabelBMFont.d \ +./label_nodes/CCLabelTTF.d + + +# Each subdirectory must supply rules for building sources it contributes +label_nodes/%.o: ../label_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/layers_scenes_transitions_nodes/subdir.mk b/cocos2dx/Debug/layers_scenes_transitions_nodes/subdir.mk new file mode 100644 index 0000000000..3a67ce43ae --- /dev/null +++ b/cocos2dx/Debug/layers_scenes_transitions_nodes/subdir.mk @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../layers_scenes_transitions_nodes/CCLayer.cpp \ +../layers_scenes_transitions_nodes/CCScene.cpp \ +../layers_scenes_transitions_nodes/CCTransition.cpp \ +../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ +../layers_scenes_transitions_nodes/CCTransitionRadial.cpp + +OBJS += \ +./layers_scenes_transitions_nodes/CCLayer.o \ +./layers_scenes_transitions_nodes/CCScene.o \ +./layers_scenes_transitions_nodes/CCTransition.o \ +./layers_scenes_transitions_nodes/CCTransitionPageTurn.o \ +./layers_scenes_transitions_nodes/CCTransitionRadial.o + +CPP_DEPS += \ +./layers_scenes_transitions_nodes/CCLayer.d \ +./layers_scenes_transitions_nodes/CCScene.d \ +./layers_scenes_transitions_nodes/CCTransition.d \ +./layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ +./layers_scenes_transitions_nodes/CCTransitionRadial.d + + +# Each subdirectory must supply rules for building sources it contributes +layers_scenes_transitions_nodes/%.o: ../layers_scenes_transitions_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/libcocos2dx-base.so.REMOVED.git-id b/cocos2dx/Debug/libcocos2dx-base.so.REMOVED.git-id new file mode 100644 index 0000000000..9bbbf48454 --- /dev/null +++ b/cocos2dx/Debug/libcocos2dx-base.so.REMOVED.git-id @@ -0,0 +1 @@ +0ffbc9f6a7b350e7027f65b7e4c6c64dd4e9d997 \ No newline at end of file diff --git a/cocos2dx/Debug/makefile b/cocos2dx/Debug/makefile new file mode 100644 index 0000000000..8b674fbe18 --- /dev/null +++ b/cocos2dx/Debug/makefile @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include touch_dispatcher/subdir.mk +-include tileMap_parallax_nodes/subdir.mk +-include textures/subdir.mk +-include text_input_node/subdir.mk +-include support/zip_support/subdir.mk +-include support/image_support/subdir.mk +-include support/subdir.mk +-include sprite_nodes/subdir.mk +-include script_support/subdir.mk +-include platform/subdir.mk +-include platform/Linux/subdir.mk +-include particle_nodes/subdir.mk +-include misc_nodes/subdir.mk +-include menu_nodes/subdir.mk +-include layers_scenes_transitions_nodes/subdir.mk +-include label_nodes/subdir.mk +-include keypad_dispatcher/subdir.mk +-include effects/subdir.mk +-include cocoa/subdir.mk +-include base_nodes/subdir.mk +-include actions/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: libcocos2dx-base.so + +# Tool invocations +libcocos2dx-base.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + g++ -shared -o "libcocos2dx-base.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libcocos2dx-base.so + -@echo ' ' + +post-build: + -@echo 'move all libs into the specific folder' + -sh ../../post.sh cocos2dx-base cocos2d + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/cocos2dx/Debug/menu_nodes/subdir.mk b/cocos2dx/Debug/menu_nodes/subdir.mk new file mode 100644 index 0000000000..946e3c1aab --- /dev/null +++ b/cocos2dx/Debug/menu_nodes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../menu_nodes/CCMenu.cpp \ +../menu_nodes/CCMenuItem.cpp + +OBJS += \ +./menu_nodes/CCMenu.o \ +./menu_nodes/CCMenuItem.o + +CPP_DEPS += \ +./menu_nodes/CCMenu.d \ +./menu_nodes/CCMenuItem.d + + +# Each subdirectory must supply rules for building sources it contributes +menu_nodes/%.o: ../menu_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/misc_nodes/subdir.mk b/cocos2dx/Debug/misc_nodes/subdir.mk new file mode 100644 index 0000000000..2306df5032 --- /dev/null +++ b/cocos2dx/Debug/misc_nodes/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../misc_nodes/CCMotionStreak.cpp \ +../misc_nodes/CCProgressTimer.cpp \ +../misc_nodes/CCRenderTexture.cpp \ +../misc_nodes/CCRibbon.cpp + +OBJS += \ +./misc_nodes/CCMotionStreak.o \ +./misc_nodes/CCProgressTimer.o \ +./misc_nodes/CCRenderTexture.o \ +./misc_nodes/CCRibbon.o + +CPP_DEPS += \ +./misc_nodes/CCMotionStreak.d \ +./misc_nodes/CCProgressTimer.d \ +./misc_nodes/CCRenderTexture.d \ +./misc_nodes/CCRibbon.d + + +# Each subdirectory must supply rules for building sources it contributes +misc_nodes/%.o: ../misc_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/objects.mk b/cocos2dx/Debug/objects.mk new file mode 100644 index 0000000000..1a01a79b67 --- /dev/null +++ b/cocos2dx/Debug/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libfreetype.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libcurl.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libxml2.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libpng.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libjpeg.a + +LIBS := -lglfw -lGL + diff --git a/cocos2dx/Debug/particle_nodes/subdir.mk b/cocos2dx/Debug/particle_nodes/subdir.mk new file mode 100644 index 0000000000..5f6836d2ac --- /dev/null +++ b/cocos2dx/Debug/particle_nodes/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../particle_nodes/CCParticleExamples.cpp \ +../particle_nodes/CCParticleSystem.cpp \ +../particle_nodes/CCParticleSystemQuad.cpp + +OBJS += \ +./particle_nodes/CCParticleExamples.o \ +./particle_nodes/CCParticleSystem.o \ +./particle_nodes/CCParticleSystemQuad.o + +CPP_DEPS += \ +./particle_nodes/CCParticleExamples.d \ +./particle_nodes/CCParticleSystem.d \ +./particle_nodes/CCParticleSystemQuad.d + + +# Each subdirectory must supply rules for building sources it contributes +particle_nodes/%.o: ../particle_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/platform/Linux/subdir.mk b/cocos2dx/Debug/platform/Linux/subdir.mk new file mode 100644 index 0000000000..2f47172fd5 --- /dev/null +++ b/cocos2dx/Debug/platform/Linux/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/Linux/CCAplication_linux.cpp \ +../platform/Linux/CCEGLView_linux.cpp \ +../platform/Linux/CCFileUtils_Linux.cpp \ +../platform/Linux/CCImage_Linux.cpp + +OBJS += \ +./platform/Linux/CCAplication_linux.o \ +./platform/Linux/CCEGLView_linux.o \ +./platform/Linux/CCFileUtils_Linux.o \ +./platform/Linux/CCImage_Linux.o + +CPP_DEPS += \ +./platform/Linux/CCAplication_linux.d \ +./platform/Linux/CCEGLView_linux.d \ +./platform/Linux/CCFileUtils_Linux.d \ +./platform/Linux/CCImage_Linux.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/Linux/%.o: ../platform/Linux/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/platform/subdir.mk b/cocos2dx/Debug/platform/subdir.mk new file mode 100644 index 0000000000..c46551bbe1 --- /dev/null +++ b/cocos2dx/Debug/platform/subdir.mk @@ -0,0 +1,45 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/CCCommon.cpp \ +../platform/CCFileUtils.cpp \ +../platform/CCGL.cpp \ +../platform/CCImage.cpp \ +../platform/CCSAXParser.cpp \ +../platform/CCStdC.cpp \ +../platform/CCThread.cpp \ +../platform/platform.cpp + +OBJS += \ +./platform/CCCommon.o \ +./platform/CCFileUtils.o \ +./platform/CCGL.o \ +./platform/CCImage.o \ +./platform/CCSAXParser.o \ +./platform/CCStdC.o \ +./platform/CCThread.o \ +./platform/platform.o + +CPP_DEPS += \ +./platform/CCCommon.d \ +./platform/CCFileUtils.d \ +./platform/CCGL.d \ +./platform/CCImage.d \ +./platform/CCSAXParser.d \ +./platform/CCStdC.d \ +./platform/CCThread.d \ +./platform/platform.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/%.o: ../platform/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/script_support/subdir.mk b/cocos2dx/Debug/script_support/subdir.mk new file mode 100644 index 0000000000..e1570df5f2 --- /dev/null +++ b/cocos2dx/Debug/script_support/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../script_support/CCScriptSupport.cpp + +OBJS += \ +./script_support/CCScriptSupport.o + +CPP_DEPS += \ +./script_support/CCScriptSupport.d + + +# Each subdirectory must supply rules for building sources it contributes +script_support/%.o: ../script_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/sources.mk b/cocos2dx/Debug/sources.mk new file mode 100644 index 0000000000..6de23a9539 --- /dev/null +++ b/cocos2dx/Debug/sources.mk @@ -0,0 +1,48 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +touch_dispatcher \ +tileMap_parallax_nodes \ +textures \ +text_input_node \ +support/zip_support \ +support/image_support \ +support \ +sprite_nodes \ +script_support \ +platform \ +platform/Linux \ +particle_nodes \ +misc_nodes \ +menu_nodes \ +layers_scenes_transitions_nodes \ +label_nodes \ +keypad_dispatcher \ +effects \ +. \ +cocoa \ +base_nodes \ +actions \ + diff --git a/cocos2dx/Debug/sprite_nodes/subdir.mk b/cocos2dx/Debug/sprite_nodes/subdir.mk new file mode 100644 index 0000000000..851ba9888b --- /dev/null +++ b/cocos2dx/Debug/sprite_nodes/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../sprite_nodes/CCAnimation.cpp \ +../sprite_nodes/CCAnimationCache.cpp \ +../sprite_nodes/CCSprite.cpp \ +../sprite_nodes/CCSpriteBatchNode.cpp \ +../sprite_nodes/CCSpriteFrame.cpp \ +../sprite_nodes/CCSpriteFrameCache.cpp + +OBJS += \ +./sprite_nodes/CCAnimation.o \ +./sprite_nodes/CCAnimationCache.o \ +./sprite_nodes/CCSprite.o \ +./sprite_nodes/CCSpriteBatchNode.o \ +./sprite_nodes/CCSpriteFrame.o \ +./sprite_nodes/CCSpriteFrameCache.o + +CPP_DEPS += \ +./sprite_nodes/CCAnimation.d \ +./sprite_nodes/CCAnimationCache.d \ +./sprite_nodes/CCSprite.d \ +./sprite_nodes/CCSpriteBatchNode.d \ +./sprite_nodes/CCSpriteFrame.d \ +./sprite_nodes/CCSpriteFrameCache.d + + +# Each subdirectory must supply rules for building sources it contributes +sprite_nodes/%.o: ../sprite_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/subdir.mk b/cocos2dx/Debug/subdir.mk new file mode 100644 index 0000000000..2a196a2f94 --- /dev/null +++ b/cocos2dx/Debug/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../CCCamera.cpp \ +../CCConfiguration.cpp \ +../CCDirector.cpp \ +../CCDrawingPrimitives.cpp \ +../CCScheduler.cpp \ +../cocos2d.cpp + +OBJS += \ +./CCCamera.o \ +./CCConfiguration.o \ +./CCDirector.o \ +./CCDrawingPrimitives.o \ +./CCScheduler.o \ +./cocos2d.o + +CPP_DEPS += \ +./CCCamera.d \ +./CCConfiguration.d \ +./CCDirector.d \ +./CCDrawingPrimitives.d \ +./CCScheduler.d \ +./cocos2d.d + + +# Each subdirectory must supply rules for building sources it contributes +%.o: ../%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/support/image_support/subdir.mk b/cocos2dx/Debug/support/image_support/subdir.mk new file mode 100644 index 0000000000..c1548d3d21 --- /dev/null +++ b/cocos2dx/Debug/support/image_support/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/image_support/TGAlib.cpp + +OBJS += \ +./support/image_support/TGAlib.o + +CPP_DEPS += \ +./support/image_support/TGAlib.d + + +# Each subdirectory must supply rules for building sources it contributes +support/image_support/%.o: ../support/image_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/support/subdir.mk b/cocos2dx/Debug/support/subdir.mk new file mode 100644 index 0000000000..ff3b7c8beb --- /dev/null +++ b/cocos2dx/Debug/support/subdir.mk @@ -0,0 +1,42 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/CCArray.cpp \ +../support/CCPointExtension.cpp \ +../support/CCProfiling.cpp \ +../support/CCUserDefault.cpp \ +../support/TransformUtils.cpp \ +../support/base64.cpp \ +../support/ccUtils.cpp + +OBJS += \ +./support/CCArray.o \ +./support/CCPointExtension.o \ +./support/CCProfiling.o \ +./support/CCUserDefault.o \ +./support/TransformUtils.o \ +./support/base64.o \ +./support/ccUtils.o + +CPP_DEPS += \ +./support/CCArray.d \ +./support/CCPointExtension.d \ +./support/CCProfiling.d \ +./support/CCUserDefault.d \ +./support/TransformUtils.d \ +./support/base64.d \ +./support/ccUtils.d + + +# Each subdirectory must supply rules for building sources it contributes +support/%.o: ../support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/support/zip_support/subdir.mk b/cocos2dx/Debug/support/zip_support/subdir.mk new file mode 100644 index 0000000000..0ed4ad232e --- /dev/null +++ b/cocos2dx/Debug/support/zip_support/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/zip_support/ZipUtils.cpp \ +../support/zip_support/ioapi.cpp \ +../support/zip_support/unzip.cpp + +OBJS += \ +./support/zip_support/ZipUtils.o \ +./support/zip_support/ioapi.o \ +./support/zip_support/unzip.o + +CPP_DEPS += \ +./support/zip_support/ZipUtils.d \ +./support/zip_support/ioapi.d \ +./support/zip_support/unzip.d + + +# Each subdirectory must supply rules for building sources it contributes +support/zip_support/%.o: ../support/zip_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/text_input_node/subdir.mk b/cocos2dx/Debug/text_input_node/subdir.mk new file mode 100644 index 0000000000..158b1bcc27 --- /dev/null +++ b/cocos2dx/Debug/text_input_node/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../text_input_node/CCIMEDispatcher.cpp \ +../text_input_node/CCTextFieldTTF.cpp + +OBJS += \ +./text_input_node/CCIMEDispatcher.o \ +./text_input_node/CCTextFieldTTF.o + +CPP_DEPS += \ +./text_input_node/CCIMEDispatcher.d \ +./text_input_node/CCTextFieldTTF.d + + +# Each subdirectory must supply rules for building sources it contributes +text_input_node/%.o: ../text_input_node/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/textures/subdir.mk b/cocos2dx/Debug/textures/subdir.mk new file mode 100644 index 0000000000..4e8c59884c --- /dev/null +++ b/cocos2dx/Debug/textures/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../textures/CCTexture2D.cpp \ +../textures/CCTextureAtlas.cpp \ +../textures/CCTextureCache.cpp \ +../textures/CCTexturePVR.cpp + +OBJS += \ +./textures/CCTexture2D.o \ +./textures/CCTextureAtlas.o \ +./textures/CCTextureCache.o \ +./textures/CCTexturePVR.o + +CPP_DEPS += \ +./textures/CCTexture2D.d \ +./textures/CCTextureAtlas.d \ +./textures/CCTextureCache.d \ +./textures/CCTexturePVR.d + + +# Each subdirectory must supply rules for building sources it contributes +textures/%.o: ../textures/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/tileMap_parallax_nodes/subdir.mk b/cocos2dx/Debug/tileMap_parallax_nodes/subdir.mk new file mode 100644 index 0000000000..e814684981 --- /dev/null +++ b/cocos2dx/Debug/tileMap_parallax_nodes/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../tileMap_parallax_nodes/CCParallaxNode.cpp \ +../tileMap_parallax_nodes/CCTMXLayer.cpp \ +../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ +../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ +../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ +../tileMap_parallax_nodes/CCTileMapAtlas.cpp + +OBJS += \ +./tileMap_parallax_nodes/CCParallaxNode.o \ +./tileMap_parallax_nodes/CCTMXLayer.o \ +./tileMap_parallax_nodes/CCTMXObjectGroup.o \ +./tileMap_parallax_nodes/CCTMXTiledMap.o \ +./tileMap_parallax_nodes/CCTMXXMLParser.o \ +./tileMap_parallax_nodes/CCTileMapAtlas.o + +CPP_DEPS += \ +./tileMap_parallax_nodes/CCParallaxNode.d \ +./tileMap_parallax_nodes/CCTMXLayer.d \ +./tileMap_parallax_nodes/CCTMXObjectGroup.d \ +./tileMap_parallax_nodes/CCTMXTiledMap.d \ +./tileMap_parallax_nodes/CCTMXXMLParser.d \ +./tileMap_parallax_nodes/CCTileMapAtlas.d + + +# Each subdirectory must supply rules for building sources it contributes +tileMap_parallax_nodes/%.o: ../tileMap_parallax_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Debug/touch_dispatcher/subdir.mk b/cocos2dx/Debug/touch_dispatcher/subdir.mk new file mode 100644 index 0000000000..c538f8ed2a --- /dev/null +++ b/cocos2dx/Debug/touch_dispatcher/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../touch_dispatcher/CCTouchDispatcher.cpp \ +../touch_dispatcher/CCTouchHandler.cpp + +OBJS += \ +./touch_dispatcher/CCTouchDispatcher.o \ +./touch_dispatcher/CCTouchHandler.o + +CPP_DEPS += \ +./touch_dispatcher/CCTouchDispatcher.d \ +./touch_dispatcher/CCTouchHandler.d + + +# Each subdirectory must supply rules for building sources it contributes +touch_dispatcher/%.o: ../touch_dispatcher/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/actions/subdir.mk b/cocos2dx/Release/actions/subdir.mk new file mode 100644 index 0000000000..63a3118fb9 --- /dev/null +++ b/cocos2dx/Release/actions/subdir.mk @@ -0,0 +1,54 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../actions/CCAction.cpp \ +../actions/CCActionCamera.cpp \ +../actions/CCActionEase.cpp \ +../actions/CCActionGrid.cpp \ +../actions/CCActionGrid3D.cpp \ +../actions/CCActionInstant.cpp \ +../actions/CCActionInterval.cpp \ +../actions/CCActionManager.cpp \ +../actions/CCActionPageTurn3D.cpp \ +../actions/CCActionProgressTimer.cpp \ +../actions/CCActionTiledGrid.cpp + +OBJS += \ +./actions/CCAction.o \ +./actions/CCActionCamera.o \ +./actions/CCActionEase.o \ +./actions/CCActionGrid.o \ +./actions/CCActionGrid3D.o \ +./actions/CCActionInstant.o \ +./actions/CCActionInterval.o \ +./actions/CCActionManager.o \ +./actions/CCActionPageTurn3D.o \ +./actions/CCActionProgressTimer.o \ +./actions/CCActionTiledGrid.o + +CPP_DEPS += \ +./actions/CCAction.d \ +./actions/CCActionCamera.d \ +./actions/CCActionEase.d \ +./actions/CCActionGrid.d \ +./actions/CCActionGrid3D.d \ +./actions/CCActionInstant.d \ +./actions/CCActionInterval.d \ +./actions/CCActionManager.d \ +./actions/CCActionPageTurn3D.d \ +./actions/CCActionProgressTimer.d \ +./actions/CCActionTiledGrid.d + + +# Each subdirectory must supply rules for building sources it contributes +actions/%.o: ../actions/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/base_nodes/subdir.mk b/cocos2dx/Release/base_nodes/subdir.mk new file mode 100644 index 0000000000..7554f67250 --- /dev/null +++ b/cocos2dx/Release/base_nodes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../base_nodes/CCAtlasNode.cpp \ +../base_nodes/CCNode.cpp + +OBJS += \ +./base_nodes/CCAtlasNode.o \ +./base_nodes/CCNode.o + +CPP_DEPS += \ +./base_nodes/CCAtlasNode.d \ +./base_nodes/CCNode.d + + +# Each subdirectory must supply rules for building sources it contributes +base_nodes/%.o: ../base_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/cocoa/subdir.mk b/cocos2dx/Release/cocoa/subdir.mk new file mode 100644 index 0000000000..0d5dbaee2a --- /dev/null +++ b/cocos2dx/Release/cocoa/subdir.mk @@ -0,0 +1,45 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../cocoa/CCAffineTransform.cpp \ +../cocoa/CCAutoreleasePool.cpp \ +../cocoa/CCData.cpp \ +../cocoa/CCGeometry.cpp \ +../cocoa/CCNS.cpp \ +../cocoa/CCObject.cpp \ +../cocoa/CCSet.cpp \ +../cocoa/CCZone.cpp + +OBJS += \ +./cocoa/CCAffineTransform.o \ +./cocoa/CCAutoreleasePool.o \ +./cocoa/CCData.o \ +./cocoa/CCGeometry.o \ +./cocoa/CCNS.o \ +./cocoa/CCObject.o \ +./cocoa/CCSet.o \ +./cocoa/CCZone.o + +CPP_DEPS += \ +./cocoa/CCAffineTransform.d \ +./cocoa/CCAutoreleasePool.d \ +./cocoa/CCData.d \ +./cocoa/CCGeometry.d \ +./cocoa/CCNS.d \ +./cocoa/CCObject.d \ +./cocoa/CCSet.d \ +./cocoa/CCZone.d + + +# Each subdirectory must supply rules for building sources it contributes +cocoa/%.o: ../cocoa/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/effects/subdir.mk b/cocos2dx/Release/effects/subdir.mk new file mode 100644 index 0000000000..e30c92bdf8 --- /dev/null +++ b/cocos2dx/Release/effects/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../effects/CCGrabber.cpp \ +../effects/CCGrid.cpp + +OBJS += \ +./effects/CCGrabber.o \ +./effects/CCGrid.o + +CPP_DEPS += \ +./effects/CCGrabber.d \ +./effects/CCGrid.d + + +# Each subdirectory must supply rules for building sources it contributes +effects/%.o: ../effects/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/keypad_dispatcher/subdir.mk b/cocos2dx/Release/keypad_dispatcher/subdir.mk new file mode 100644 index 0000000000..c98f7a1a96 --- /dev/null +++ b/cocos2dx/Release/keypad_dispatcher/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../keypad_dispatcher/CCKeypadDelegate.cpp \ +../keypad_dispatcher/CCKeypadDispatcher.cpp + +OBJS += \ +./keypad_dispatcher/CCKeypadDelegate.o \ +./keypad_dispatcher/CCKeypadDispatcher.o + +CPP_DEPS += \ +./keypad_dispatcher/CCKeypadDelegate.d \ +./keypad_dispatcher/CCKeypadDispatcher.d + + +# Each subdirectory must supply rules for building sources it contributes +keypad_dispatcher/%.o: ../keypad_dispatcher/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/label_nodes/subdir.mk b/cocos2dx/Release/label_nodes/subdir.mk new file mode 100644 index 0000000000..3adfc75574 --- /dev/null +++ b/cocos2dx/Release/label_nodes/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../label_nodes/CCLabelAtlas.cpp \ +../label_nodes/CCLabelBMFont.cpp \ +../label_nodes/CCLabelTTF.cpp + +OBJS += \ +./label_nodes/CCLabelAtlas.o \ +./label_nodes/CCLabelBMFont.o \ +./label_nodes/CCLabelTTF.o + +CPP_DEPS += \ +./label_nodes/CCLabelAtlas.d \ +./label_nodes/CCLabelBMFont.d \ +./label_nodes/CCLabelTTF.d + + +# Each subdirectory must supply rules for building sources it contributes +label_nodes/%.o: ../label_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/layers_scenes_transitions_nodes/subdir.mk b/cocos2dx/Release/layers_scenes_transitions_nodes/subdir.mk new file mode 100644 index 0000000000..c22fe85276 --- /dev/null +++ b/cocos2dx/Release/layers_scenes_transitions_nodes/subdir.mk @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../layers_scenes_transitions_nodes/CCLayer.cpp \ +../layers_scenes_transitions_nodes/CCScene.cpp \ +../layers_scenes_transitions_nodes/CCTransition.cpp \ +../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ +../layers_scenes_transitions_nodes/CCTransitionRadial.cpp + +OBJS += \ +./layers_scenes_transitions_nodes/CCLayer.o \ +./layers_scenes_transitions_nodes/CCScene.o \ +./layers_scenes_transitions_nodes/CCTransition.o \ +./layers_scenes_transitions_nodes/CCTransitionPageTurn.o \ +./layers_scenes_transitions_nodes/CCTransitionRadial.o + +CPP_DEPS += \ +./layers_scenes_transitions_nodes/CCLayer.d \ +./layers_scenes_transitions_nodes/CCScene.d \ +./layers_scenes_transitions_nodes/CCTransition.d \ +./layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ +./layers_scenes_transitions_nodes/CCTransitionRadial.d + + +# Each subdirectory must supply rules for building sources it contributes +layers_scenes_transitions_nodes/%.o: ../layers_scenes_transitions_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/libcocos2dx-base.so.REMOVED.git-id b/cocos2dx/Release/libcocos2dx-base.so.REMOVED.git-id new file mode 100644 index 0000000000..f860105318 --- /dev/null +++ b/cocos2dx/Release/libcocos2dx-base.so.REMOVED.git-id @@ -0,0 +1 @@ +0f68c17cc75a926c7c3b1b2189f23894cf5b2e2d \ No newline at end of file diff --git a/cocos2dx/Release/makefile b/cocos2dx/Release/makefile new file mode 100644 index 0000000000..8b674fbe18 --- /dev/null +++ b/cocos2dx/Release/makefile @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include touch_dispatcher/subdir.mk +-include tileMap_parallax_nodes/subdir.mk +-include textures/subdir.mk +-include text_input_node/subdir.mk +-include support/zip_support/subdir.mk +-include support/image_support/subdir.mk +-include support/subdir.mk +-include sprite_nodes/subdir.mk +-include script_support/subdir.mk +-include platform/subdir.mk +-include platform/Linux/subdir.mk +-include particle_nodes/subdir.mk +-include misc_nodes/subdir.mk +-include menu_nodes/subdir.mk +-include layers_scenes_transitions_nodes/subdir.mk +-include label_nodes/subdir.mk +-include keypad_dispatcher/subdir.mk +-include effects/subdir.mk +-include cocoa/subdir.mk +-include base_nodes/subdir.mk +-include actions/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: libcocos2dx-base.so + +# Tool invocations +libcocos2dx-base.so: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + g++ -shared -o "libcocos2dx-base.so" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libcocos2dx-base.so + -@echo ' ' + +post-build: + -@echo 'move all libs into the specific folder' + -sh ../../post.sh cocos2dx-base cocos2d + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/cocos2dx/Release/menu_nodes/subdir.mk b/cocos2dx/Release/menu_nodes/subdir.mk new file mode 100644 index 0000000000..faa611400c --- /dev/null +++ b/cocos2dx/Release/menu_nodes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../menu_nodes/CCMenu.cpp \ +../menu_nodes/CCMenuItem.cpp + +OBJS += \ +./menu_nodes/CCMenu.o \ +./menu_nodes/CCMenuItem.o + +CPP_DEPS += \ +./menu_nodes/CCMenu.d \ +./menu_nodes/CCMenuItem.d + + +# Each subdirectory must supply rules for building sources it contributes +menu_nodes/%.o: ../menu_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/misc_nodes/subdir.mk b/cocos2dx/Release/misc_nodes/subdir.mk new file mode 100644 index 0000000000..9ee157725c --- /dev/null +++ b/cocos2dx/Release/misc_nodes/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../misc_nodes/CCMotionStreak.cpp \ +../misc_nodes/CCProgressTimer.cpp \ +../misc_nodes/CCRenderTexture.cpp \ +../misc_nodes/CCRibbon.cpp + +OBJS += \ +./misc_nodes/CCMotionStreak.o \ +./misc_nodes/CCProgressTimer.o \ +./misc_nodes/CCRenderTexture.o \ +./misc_nodes/CCRibbon.o + +CPP_DEPS += \ +./misc_nodes/CCMotionStreak.d \ +./misc_nodes/CCProgressTimer.d \ +./misc_nodes/CCRenderTexture.d \ +./misc_nodes/CCRibbon.d + + +# Each subdirectory must supply rules for building sources it contributes +misc_nodes/%.o: ../misc_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/objects.mk b/cocos2dx/Release/objects.mk new file mode 100644 index 0000000000..1a01a79b67 --- /dev/null +++ b/cocos2dx/Release/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libfreetype.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libcurl.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libxml2.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libpng.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libjpeg.a + +LIBS := -lglfw -lGL + diff --git a/cocos2dx/Release/particle_nodes/subdir.mk b/cocos2dx/Release/particle_nodes/subdir.mk new file mode 100644 index 0000000000..8920433c5f --- /dev/null +++ b/cocos2dx/Release/particle_nodes/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../particle_nodes/CCParticleExamples.cpp \ +../particle_nodes/CCParticleSystem.cpp \ +../particle_nodes/CCParticleSystemQuad.cpp + +OBJS += \ +./particle_nodes/CCParticleExamples.o \ +./particle_nodes/CCParticleSystem.o \ +./particle_nodes/CCParticleSystemQuad.o + +CPP_DEPS += \ +./particle_nodes/CCParticleExamples.d \ +./particle_nodes/CCParticleSystem.d \ +./particle_nodes/CCParticleSystemQuad.d + + +# Each subdirectory must supply rules for building sources it contributes +particle_nodes/%.o: ../particle_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/platform/Linux/subdir.mk b/cocos2dx/Release/platform/Linux/subdir.mk new file mode 100644 index 0000000000..c19d81f6ef --- /dev/null +++ b/cocos2dx/Release/platform/Linux/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/Linux/CCAplication_linux.cpp \ +../platform/Linux/CCEGLView_linux.cpp \ +../platform/Linux/CCFileUtils_Linux.cpp \ +../platform/Linux/CCImage_Linux.cpp + +OBJS += \ +./platform/Linux/CCAplication_linux.o \ +./platform/Linux/CCEGLView_linux.o \ +./platform/Linux/CCFileUtils_Linux.o \ +./platform/Linux/CCImage_Linux.o + +CPP_DEPS += \ +./platform/Linux/CCAplication_linux.d \ +./platform/Linux/CCEGLView_linux.d \ +./platform/Linux/CCFileUtils_Linux.d \ +./platform/Linux/CCImage_Linux.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/Linux/%.o: ../platform/Linux/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/platform/subdir.mk b/cocos2dx/Release/platform/subdir.mk new file mode 100644 index 0000000000..09d2f9dc14 --- /dev/null +++ b/cocos2dx/Release/platform/subdir.mk @@ -0,0 +1,45 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../platform/CCCommon.cpp \ +../platform/CCFileUtils.cpp \ +../platform/CCGL.cpp \ +../platform/CCImage.cpp \ +../platform/CCSAXParser.cpp \ +../platform/CCStdC.cpp \ +../platform/CCThread.cpp \ +../platform/platform.cpp + +OBJS += \ +./platform/CCCommon.o \ +./platform/CCFileUtils.o \ +./platform/CCGL.o \ +./platform/CCImage.o \ +./platform/CCSAXParser.o \ +./platform/CCStdC.o \ +./platform/CCThread.o \ +./platform/platform.o + +CPP_DEPS += \ +./platform/CCCommon.d \ +./platform/CCFileUtils.d \ +./platform/CCGL.d \ +./platform/CCImage.d \ +./platform/CCSAXParser.d \ +./platform/CCStdC.d \ +./platform/CCThread.d \ +./platform/platform.d + + +# Each subdirectory must supply rules for building sources it contributes +platform/%.o: ../platform/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/script_support/subdir.mk b/cocos2dx/Release/script_support/subdir.mk new file mode 100644 index 0000000000..e443478cfd --- /dev/null +++ b/cocos2dx/Release/script_support/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../script_support/CCScriptSupport.cpp + +OBJS += \ +./script_support/CCScriptSupport.o + +CPP_DEPS += \ +./script_support/CCScriptSupport.d + + +# Each subdirectory must supply rules for building sources it contributes +script_support/%.o: ../script_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/sources.mk b/cocos2dx/Release/sources.mk new file mode 100644 index 0000000000..6de23a9539 --- /dev/null +++ b/cocos2dx/Release/sources.mk @@ -0,0 +1,48 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +LIBRARIES := +CPP_DEPS := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +touch_dispatcher \ +tileMap_parallax_nodes \ +textures \ +text_input_node \ +support/zip_support \ +support/image_support \ +support \ +sprite_nodes \ +script_support \ +platform \ +platform/Linux \ +particle_nodes \ +misc_nodes \ +menu_nodes \ +layers_scenes_transitions_nodes \ +label_nodes \ +keypad_dispatcher \ +effects \ +. \ +cocoa \ +base_nodes \ +actions \ + diff --git a/cocos2dx/Release/sprite_nodes/subdir.mk b/cocos2dx/Release/sprite_nodes/subdir.mk new file mode 100644 index 0000000000..14da15e351 --- /dev/null +++ b/cocos2dx/Release/sprite_nodes/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../sprite_nodes/CCAnimation.cpp \ +../sprite_nodes/CCAnimationCache.cpp \ +../sprite_nodes/CCSprite.cpp \ +../sprite_nodes/CCSpriteBatchNode.cpp \ +../sprite_nodes/CCSpriteFrame.cpp \ +../sprite_nodes/CCSpriteFrameCache.cpp + +OBJS += \ +./sprite_nodes/CCAnimation.o \ +./sprite_nodes/CCAnimationCache.o \ +./sprite_nodes/CCSprite.o \ +./sprite_nodes/CCSpriteBatchNode.o \ +./sprite_nodes/CCSpriteFrame.o \ +./sprite_nodes/CCSpriteFrameCache.o + +CPP_DEPS += \ +./sprite_nodes/CCAnimation.d \ +./sprite_nodes/CCAnimationCache.d \ +./sprite_nodes/CCSprite.d \ +./sprite_nodes/CCSpriteBatchNode.d \ +./sprite_nodes/CCSpriteFrame.d \ +./sprite_nodes/CCSpriteFrameCache.d + + +# Each subdirectory must supply rules for building sources it contributes +sprite_nodes/%.o: ../sprite_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/subdir.mk b/cocos2dx/Release/subdir.mk new file mode 100644 index 0000000000..b74612e005 --- /dev/null +++ b/cocos2dx/Release/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../CCCamera.cpp \ +../CCConfiguration.cpp \ +../CCDirector.cpp \ +../CCDrawingPrimitives.cpp \ +../CCScheduler.cpp \ +../cocos2d.cpp + +OBJS += \ +./CCCamera.o \ +./CCConfiguration.o \ +./CCDirector.o \ +./CCDrawingPrimitives.o \ +./CCScheduler.o \ +./cocos2d.o + +CPP_DEPS += \ +./CCCamera.d \ +./CCConfiguration.d \ +./CCDirector.d \ +./CCDrawingPrimitives.d \ +./CCScheduler.d \ +./cocos2d.d + + +# Each subdirectory must supply rules for building sources it contributes +%.o: ../%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/support/image_support/subdir.mk b/cocos2dx/Release/support/image_support/subdir.mk new file mode 100644 index 0000000000..223cef975f --- /dev/null +++ b/cocos2dx/Release/support/image_support/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/image_support/TGAlib.cpp + +OBJS += \ +./support/image_support/TGAlib.o + +CPP_DEPS += \ +./support/image_support/TGAlib.d + + +# Each subdirectory must supply rules for building sources it contributes +support/image_support/%.o: ../support/image_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/support/subdir.mk b/cocos2dx/Release/support/subdir.mk new file mode 100644 index 0000000000..645d16fd0a --- /dev/null +++ b/cocos2dx/Release/support/subdir.mk @@ -0,0 +1,42 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/CCArray.cpp \ +../support/CCPointExtension.cpp \ +../support/CCProfiling.cpp \ +../support/CCUserDefault.cpp \ +../support/TransformUtils.cpp \ +../support/base64.cpp \ +../support/ccUtils.cpp + +OBJS += \ +./support/CCArray.o \ +./support/CCPointExtension.o \ +./support/CCProfiling.o \ +./support/CCUserDefault.o \ +./support/TransformUtils.o \ +./support/base64.o \ +./support/ccUtils.o + +CPP_DEPS += \ +./support/CCArray.d \ +./support/CCPointExtension.d \ +./support/CCProfiling.d \ +./support/CCUserDefault.d \ +./support/TransformUtils.d \ +./support/base64.d \ +./support/ccUtils.d + + +# Each subdirectory must supply rules for building sources it contributes +support/%.o: ../support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/support/zip_support/subdir.mk b/cocos2dx/Release/support/zip_support/subdir.mk new file mode 100644 index 0000000000..8e1c6fbef6 --- /dev/null +++ b/cocos2dx/Release/support/zip_support/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../support/zip_support/ZipUtils.cpp \ +../support/zip_support/ioapi.cpp \ +../support/zip_support/unzip.cpp + +OBJS += \ +./support/zip_support/ZipUtils.o \ +./support/zip_support/ioapi.o \ +./support/zip_support/unzip.o + +CPP_DEPS += \ +./support/zip_support/ZipUtils.d \ +./support/zip_support/ioapi.d \ +./support/zip_support/unzip.d + + +# Each subdirectory must supply rules for building sources it contributes +support/zip_support/%.o: ../support/zip_support/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/text_input_node/subdir.mk b/cocos2dx/Release/text_input_node/subdir.mk new file mode 100644 index 0000000000..82a3b07027 --- /dev/null +++ b/cocos2dx/Release/text_input_node/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../text_input_node/CCIMEDispatcher.cpp \ +../text_input_node/CCTextFieldTTF.cpp + +OBJS += \ +./text_input_node/CCIMEDispatcher.o \ +./text_input_node/CCTextFieldTTF.o + +CPP_DEPS += \ +./text_input_node/CCIMEDispatcher.d \ +./text_input_node/CCTextFieldTTF.d + + +# Each subdirectory must supply rules for building sources it contributes +text_input_node/%.o: ../text_input_node/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/textures/subdir.mk b/cocos2dx/Release/textures/subdir.mk new file mode 100644 index 0000000000..4f29b4769e --- /dev/null +++ b/cocos2dx/Release/textures/subdir.mk @@ -0,0 +1,33 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../textures/CCTexture2D.cpp \ +../textures/CCTextureAtlas.cpp \ +../textures/CCTextureCache.cpp \ +../textures/CCTexturePVR.cpp + +OBJS += \ +./textures/CCTexture2D.o \ +./textures/CCTextureAtlas.o \ +./textures/CCTextureCache.o \ +./textures/CCTexturePVR.o + +CPP_DEPS += \ +./textures/CCTexture2D.d \ +./textures/CCTextureAtlas.d \ +./textures/CCTextureCache.d \ +./textures/CCTexturePVR.d + + +# Each subdirectory must supply rules for building sources it contributes +textures/%.o: ../textures/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/tileMap_parallax_nodes/subdir.mk b/cocos2dx/Release/tileMap_parallax_nodes/subdir.mk new file mode 100644 index 0000000000..fb0158ccaf --- /dev/null +++ b/cocos2dx/Release/tileMap_parallax_nodes/subdir.mk @@ -0,0 +1,39 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../tileMap_parallax_nodes/CCParallaxNode.cpp \ +../tileMap_parallax_nodes/CCTMXLayer.cpp \ +../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ +../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ +../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ +../tileMap_parallax_nodes/CCTileMapAtlas.cpp + +OBJS += \ +./tileMap_parallax_nodes/CCParallaxNode.o \ +./tileMap_parallax_nodes/CCTMXLayer.o \ +./tileMap_parallax_nodes/CCTMXObjectGroup.o \ +./tileMap_parallax_nodes/CCTMXTiledMap.o \ +./tileMap_parallax_nodes/CCTMXXMLParser.o \ +./tileMap_parallax_nodes/CCTileMapAtlas.o + +CPP_DEPS += \ +./tileMap_parallax_nodes/CCParallaxNode.d \ +./tileMap_parallax_nodes/CCTMXLayer.d \ +./tileMap_parallax_nodes/CCTMXObjectGroup.d \ +./tileMap_parallax_nodes/CCTMXTiledMap.d \ +./tileMap_parallax_nodes/CCTMXXMLParser.d \ +./tileMap_parallax_nodes/CCTileMapAtlas.d + + +# Each subdirectory must supply rules for building sources it contributes +tileMap_parallax_nodes/%.o: ../tileMap_parallax_nodes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/cocos2dx/Release/touch_dispatcher/subdir.mk b/cocos2dx/Release/touch_dispatcher/subdir.mk new file mode 100644 index 0000000000..68a7f7ef4d --- /dev/null +++ b/cocos2dx/Release/touch_dispatcher/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../touch_dispatcher/CCTouchDispatcher.cpp \ +../touch_dispatcher/CCTouchHandler.cpp + +OBJS += \ +./touch_dispatcher/CCTouchDispatcher.o \ +./touch_dispatcher/CCTouchHandler.o + +CPP_DEPS += \ +./touch_dispatcher/CCTouchDispatcher.d \ +./touch_dispatcher/CCTouchHandler.d + + +# Each subdirectory must supply rules for building sources it contributes +touch_dispatcher/%.o: ../touch_dispatcher/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + From ffcbf4772f9c18bf9342fc6ff3445b3e7617d514 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Sun, 28 Aug 2011 17:06:05 +0800 Subject: [PATCH 22/31] helloworld debug release makefiles --- HelloWorld/Debug/Classes/subdir.mk | 27 ++++++++++ HelloWorld/Debug/HelloWorld.REMOVED.git-id | 1 + HelloWorld/Debug/Linux/subdir.mk | 24 +++++++++ HelloWorld/Debug/makefile | 60 +++++++++++++++++++++ HelloWorld/Debug/objects.mk | 8 +++ HelloWorld/Debug/sources.mk | 28 ++++++++++ HelloWorld/Release/Classes/subdir.mk | 27 ++++++++++ HelloWorld/Release/HelloWorld | Bin 0 -> 33191 bytes HelloWorld/Release/Linux/subdir.mk | 24 +++++++++ HelloWorld/Release/makefile | 60 +++++++++++++++++++++ HelloWorld/Release/objects.mk | 8 +++ HelloWorld/Release/sources.mk | 28 ++++++++++ 12 files changed, 295 insertions(+) create mode 100644 HelloWorld/Debug/Classes/subdir.mk create mode 100644 HelloWorld/Debug/HelloWorld.REMOVED.git-id create mode 100644 HelloWorld/Debug/Linux/subdir.mk create mode 100644 HelloWorld/Debug/makefile create mode 100644 HelloWorld/Debug/objects.mk create mode 100644 HelloWorld/Debug/sources.mk create mode 100644 HelloWorld/Release/Classes/subdir.mk create mode 100755 HelloWorld/Release/HelloWorld create mode 100644 HelloWorld/Release/Linux/subdir.mk create mode 100644 HelloWorld/Release/makefile create mode 100644 HelloWorld/Release/objects.mk create mode 100644 HelloWorld/Release/sources.mk diff --git a/HelloWorld/Debug/Classes/subdir.mk b/HelloWorld/Debug/Classes/subdir.mk new file mode 100644 index 0000000000..558a885a7e --- /dev/null +++ b/HelloWorld/Debug/Classes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Classes/AppDelegate.cpp \ +../Classes/HelloWorldScene.cpp + +OBJS += \ +./Classes/AppDelegate.o \ +./Classes/HelloWorldScene.o + +CPP_DEPS += \ +./Classes/AppDelegate.d \ +./Classes/HelloWorldScene.d + + +# Each subdirectory must supply rules for building sources it contributes +Classes/%.o: ../Classes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloWorld/Debug/HelloWorld.REMOVED.git-id b/HelloWorld/Debug/HelloWorld.REMOVED.git-id new file mode 100644 index 0000000000..9e62f51ebe --- /dev/null +++ b/HelloWorld/Debug/HelloWorld.REMOVED.git-id @@ -0,0 +1 @@ +b96c2b712f76b3685ef00fb9f2639525efd91342 \ No newline at end of file diff --git a/HelloWorld/Debug/Linux/subdir.mk b/HelloWorld/Debug/Linux/subdir.mk new file mode 100644 index 0000000000..cf2059cc22 --- /dev/null +++ b/HelloWorld/Debug/Linux/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Linux/main.cpp + +OBJS += \ +./Linux/main.o + +CPP_DEPS += \ +./Linux/main.d + + +# Each subdirectory must supply rules for building sources it contributes +Linux/%.o: ../Linux/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloWorld/Debug/makefile b/HelloWorld/Debug/makefile new file mode 100644 index 0000000000..023a622021 --- /dev/null +++ b/HelloWorld/Debug/makefile @@ -0,0 +1,60 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include Linux/subdir.mk +-include Classes/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: HelloWorld + +# Tool invocations +HelloWorld: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + g++ -L"/home/laschweinski/git/cocos2d-x/lib/linux/Debug/" -o "HelloWorld" $(OBJS) $(USER_OBJS) $(LIBS) -Wl,-rpath,/home/laschweinski/git/cocos2d-x/lib/linux/Debug/ + @echo 'Finished building target: $@' + @echo ' ' + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) HelloWorld + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets diff --git a/HelloWorld/Debug/objects.mk b/HelloWorld/Debug/objects.mk new file mode 100644 index 0000000000..25a30a896f --- /dev/null +++ b/HelloWorld/Debug/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := -lcocos2d -lz -lcocosdenshion + diff --git a/HelloWorld/Debug/sources.mk b/HelloWorld/Debug/sources.mk new file mode 100644 index 0000000000..e6df4461ef --- /dev/null +++ b/HelloWorld/Debug/sources.mk @@ -0,0 +1,28 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +CPP_DEPS := +EXECUTABLES := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +Linux \ +Classes \ + diff --git a/HelloWorld/Release/Classes/subdir.mk b/HelloWorld/Release/Classes/subdir.mk new file mode 100644 index 0000000000..8d80543937 --- /dev/null +++ b/HelloWorld/Release/Classes/subdir.mk @@ -0,0 +1,27 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Classes/AppDelegate.cpp \ +../Classes/HelloWorldScene.cpp + +OBJS += \ +./Classes/AppDelegate.o \ +./Classes/HelloWorldScene.o + +CPP_DEPS += \ +./Classes/AppDelegate.d \ +./Classes/HelloWorldScene.d + + +# Each subdirectory must supply rules for building sources it contributes +Classes/%.o: ../Classes/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloWorld/Release/HelloWorld b/HelloWorld/Release/HelloWorld new file mode 100755 index 0000000000000000000000000000000000000000..b1d44176812831209b0a6874dcb380b5a1a02d52 GIT binary patch literal 33191 zcmeHwe|S{Yx$aIf!RU=RSj4EHqXq=UFcU%uO6$NRfk=drL<|T{hGdcqB$F{SiNRtW z4InX~Q;*mBw6;yHwcM7|rbkP$Qact7KhB}IIW1Cnq&B_&3Kcb0YH6kBzVF(5&8$6{ zfzZ?QpX+(P`S!cNwb!q2t#7Tp_uAh)P*z!<k&&Uvkf~*9M729CIYr>PRl1}|vuWpR zQ}H`V8-r7n6-5vSWWxodY@D-zvOv|q)el;7NS^~HQHIlkz%&ill3EsM8j06yR$YE@ zv8Ek--I7DfMS?lFnE6tk2{s7%AY`N*Bub*3d61fbn~*oD6qqDs?zh7ArSoy_7m$H+ z5tk(8w?mHTBZ5qSDdcMTif}E7*Mn&@n*FP1G}qtQ><_ee7KB<03UwKZF60Xq-yzaw zJ(%W2AYMBj#I~dSRN1F9L+y8e`u&T4y8gGj96$W8Yo}#*K^6tg2FY+S4q8AS<HV!j zw}5U3H5uo|f<I^+lZ8P(&`i)hpc$YN(8HjOp!-1#H-aj}k)~}mIGG!Cmw{^xPPQJj z859KF1Y&)bfEZSQrh_JeTp+y#aDXrgv`!r9Ki4bAJe&urG|n}E_kgy5Y#@f^piQ7< z1PG0w%RnIlgeySR;wbTR6%N_%*Mg|*J3&i9=!RM|=o(NSNDY?&+y=@uPPQ9-vcbt# zfu<PvN^o>j5zqy+%R$sR!$Y8A&?BHu5JQp9v^MZrAoh)N<J?;Cxu8WLJ18F%0i7wV zR)ps%$7ROxH1G?I;{t;}X7FSdFixDGEHH33xKojhGmbg#8Q8xW{5l))dpFM92igF7 zK#@9><0>3;3}k`UfF^(#F4UR$t;H|Lpc<}Iz!z}bYGAK&KGor^DNb5(uERKgGk9H6 zoEw0<m2;OW$LS7BlLQMD{J)fAdH6+nVDLE#&cX3i(7ndF&x5Z7eaXP{4Su!3*#<U) z*cYzKjB3ttIoi04f7ixoPFEx&(~{p9IRfQcFCL6oEY{1uY(ooAxBepI72BidoevX^ zF`p5A#W^nDIX+^WIC<XO@u-nCxF`0l%>3IHYB99gg*lPPX1BFF(}_IB4n!?f;zKr! zOWTIJJe%eGUTf@C=Mz>@7Fo7@#O2uHc#=9~-KK%A2Qkn_aXiqLar|)H&_1$Fs2>Kl zffFR_?!qz0zygpAs;)W4Ic{k~+2?3iXdh^2XvgjXahyw=i$krJKM1Qq^`Hg<C8X;2 zv@;BHY{`BZ)K81wuyM>jw@x|FvBDtx!u>d=jvoST05NRTnXv0Tgr4Goee@Af4~VvO zE9g-W$N#;T{r-l^^KTg&`LzFopPYDTXvXZ){C(rz`pHLcuUgr?=bL|j_;d4DzW4aw zzdwD&_4nu9|54Tb&zx-A^u=E_yj_)JyTs9d`0m5wu6jJ<iT^zC`4{i2TKUy$*46mm z`o*W$efNe(8y6q`r1Fa&SpHOBy=KxgzY6~DqxUOnUTZA==7tLj)~wn-b?+@*pJZ(* zoKU{;#Yw-vA!EaUX8B&tZPO0kl==Sie|`1#BY9;DzrA!q(Yvcww*IlVVSd@GCmt!d z{eyKCYj?bH`z3dGM%;Bjz1W+x?}1-6?C8AZ`QHXs)>Z!Pf%6W}$=Lb3cc*Cge8cj3 zPV~LX(DA=s`NRB{pWQR*wz6k-&V1>rC*9}$@i!lgeR1oDV;j$_@NRi$hyR1QcNK46 z^hT^q`-=6*Jv9^G+dk=+6LRl)|Ix2LcIAv)o>`me{?1$0zrEk|(i@Mj|MZg1nhS4T z^VnYoclCU(`(JAo#^(O{^_Q1h9-6jd#s}70zLB@=%6Hzm`;m_y`oV9CzGQuL?bqvm z_U|vPcD>w^@q<T7SMAJMw`x(-FE72M{n=nk=BB2Xi>BDGI68UWpC;vB@XEmKi(*Yb z?>({P*~c1pkNeOy!~2sxT^}}l{=%boJ@nhIzg_p;^S<^q=d};FzjkNg2fz8sqW!Ng zUtY`U!xTC>aT(!a@MjdGLj1qamr_k5-kE>`|2j$j)1>QFd(G>Yo|i~~_(nMy;Fx$I z!z}-9Qu(&SV8|e@mxdlEiQmhVQXNlDiochWkr5dGA_>54pu?P4jX?RGSrX~#_3)$- zc=)WG#Bfaflp!M{{vZhtD-#msQ^zJE5YJD_e>kbVvXkn2ZQ^oK{#%p^F}=?vU4H@E z$N3`|W(3NMQ2v2GSaN75uf}TVo8!?Aiu@$XXZvv?{_`lmTakOAKX+e3emN!z_X`QU z9O?D{FoCnNK(hVJl0!9Iqm9+d(O+ze{8E&xPsM2ee#A$zB7O-DoN9T{|7=SB`z)H) ztCa7{><>zQry%cB@F!?5s}lculy^W$e=Pc=8}~a%MYPw0jIZFW=wGpaOUQSkJ)BDY zcOd^h1)o6uhZMXTII5KA81j!Q`S&6Jpi;hJ<kzp{_bBp<DeZM5^xgM-qC8(hdNC!v zCMZ3s#D4(&tyU?|1JH+EiGLsTZ&k`yjrt5I=}%yLDCOCL{D&0zvru%cQvUBF{(yqB zF}@>8`nRBeA3=X)dt0>+hcAVGt%`n+&>kq|n~L((;(B&-_NRQ*C#s}hiS~;r^?Mcd z=~b?O6#Zd9$^UW0w<-GFh5i>&+N%)xM3nk&ME!b|^j9GNh*JNTP_Up9|JNKpO8!CA zbZA#%Jan+XDE0k1(i>9n$B1uL(jSNRS^0CR?~Al8DF46@B+k_;&|hkm_(K>!cBOr0 zqd)X3_)4_@2Be2(!5Yu1O-21;O8(_Z`nd=8!>-gno8w1muNzPvr&9k#NYAOX_hsmB zK_z|w@vZ+4_wC4^_Gl^cI|K|U`okO0hg+%77__Hd(bpV~C#5`o$a|IiUd4EcDD_>0 z@>`YoucACLCH@c4-)fQnbfY|{(B3iS`peLMeTqJPXx|~FK6OYhqO{+ake*FR?{1C< zMLq<5_bKWB2kO(Sq&EkOi7NH?pgeY^yx&Iuu2s@=q2+>*%keSH_EX}&1ARo4^2bo0 zpmO~ov`?*~ze7l`SCKcPJQ1b+TG-!}^uB`lF{Qi}C|^*CzYX=XEAszB``HvZ@BR9e z{GWilUrGM}+RvuQGf>`M1>Xw&YfAbWp1;(!*0qKT>+$qO^W56uS?X)_hr+%#SF<-1 z@`W^yr?I6q;0cAjZDEf`^Q@?D3KSL>c^1z$E}ZRhReIO?+8i?%`PK!!^`*X0xUF?v zSqI|ABNe+`i(Bh`4tt|7yv)}Y_I0i>M?fm>R(~Mua+EbRs8>4dE?23)%~uz0ZJQPJ zwugM?3st#eX2=&_67&TYR4()T?k#gKuJX)rxylS^N_M8pH7^)!_SbpC{?>r2(44BQ zRB>ydtkWMh3ysQ@c<bw3P5$QkGIy1oEi<CF4isl;Ygpt^##&WZ#N#;31t`-z{(wKM zrXtHQ8)XPUBcc$Z_3bHIfA+k(I$yJ|t+mC6xQl$gpt;bdb}9-rdE0#TvR%zFW%Zz{ zs<pm*Yf?%J9d)gN4rsEvb?Jin^W1H%Vf3TslyMynBy~r~*H-EcdsD`k)!`2%x3Z(S z3iYAdW#UC)f8AQqj`3EM{b~+c+TDsYpv#JY+u!MH4wWrk1pUj7g$7P2DA6e##d=dH zy@nk(Z8OiT_tzUO?G5`x4|5cuE9s4|Yg*08G0Ww;%@=5|2>V(pTD*-u#~eQn%b};m zt!*vdW^uC2y{N9L(8K;Zvf5?0Rn7F2cTia3axGcC28~i?s*Y@h!Zu%PTRp~ZyjS|w zvKY~dp^a*9qgfFnvvm~uI(&ifLT{iR-AdFHZCS>1rp#qGEu7tEn2tOB;il@=_PVB0 ze<<h;*EJb^cZAm1FQnGY#gU0R&b7Veg@v=wBPv3sK~Wa)u5R|#m#tPC#er6lhO61v z2&FoT*80}X_tvd-!8)u({FIiAV>{lb-KHoh+S1X2KA<*bLX&D?3=PdeyR2A3O`7wT zm2=qj5}$dL7q|IB?JY^>GM+?HU7gU8FH{z&M<v<4&{wN`;q<DG7aB>2z5al?bSQk4 z|32Rc3m(sM6ca=VYEGlGd_>ZmJ_-xb=&n{6!$6o>nMb;jzo~O320DsmQj*csjzZ*E z5n9?F2>1g@V**i@VyuY@iAjl8p{Qh}@ts|tYR;4OE}~&inK||Bh9Sm?N>#SPBE4+B zX4sVu-@HIw6O18eNfA9=X&edF&PRt1j7qh#u%&4x!a}=gD4l7NFD#5t4VB*2zGi8@ z&2=0(NQ&Eo^|Yy`>0g%1QE2qnM3o>CJve=Tl{%)KiO<8PmX^t5$m<hk1C)gknYL|9 z;={(}4Pe5hJsHi=8Cl(uI&X7xLwlf3TyGS$EXk56i=UakKx$LOUQ~s|d`UC4X~yTm z>rQ`wqsFWUwT;BQf$o?xMhV8Az8)|s$hdwsqzl^odSftWg85#o)>7Cv2aRXk@TZ@q zrFQ<I9&HqiD+8l-Oy!QJeYS;@kxn5Eg)#)=w#U?;WNXwl`@Dhnq$QXkEJleq|E8Lo z&1*`(DT*v{inVH0oiE@k3cy5~RhMRR<ANmR<Tlz~s_Il0%P|`bR1wmLq%qT)+J;LZ zeOZ8YotS9lm`=<<NNjXtS}gc<(`l@}(+%19&`vD>3`G>xw|Vas4VLa&rQ;>aIO<sv z3nFxb5jQL&nxWXRDQ1f@`ldj;ySy#Fw$y8D(Q#8vnkMC7YOe~mVQK0p3JK0dT)Dp) zOWZ|us=AZzTV}SkCz%UOxvtjWI?Sf9**IWAD_R5kS{W@bj!h|!Sm-BAqp6Itrxo(9 zjCVxUZQg*s<}dZvm&0<0n#}#*P;}fvre0Pg4LY@KGD`>TTT<sXFC)#jbIH@FQ4nLb zu?%-RSc#@At3xabl5b^9?O-G(4f1mHj487!LWvc7b%wj4cqO^|stD<8OSxD!<s4rC zIvn11+?gr;dlW<Hw$_eO&X!Vd(sn0Rk@JgKT2xn;J7zU=k-=V86>j4i4jooZDM&<2 zcf6_MnDcdp=QaBq16YcO%W$`4nhuN{3-JWOeABs9sbl;G#x%7SVhD)rX@uosL|Eih zb062R$vKQ%OD9w!`kh%NrjBP6oW@toztmS+T}Xp_E{iBxlrt}K3ulSGV_GDp>_SF) z9bC#+gycv_t`cV`$4uTdv1NJl91<<dhNp~Y%I-@!QvcBvn(P53ZN3(C)OpR#ayi5z zxQq#%1y!En$i_*fX@^5kDRDP0F6QI26c2Dlv%pTWy)a7RF^=*aE44|XDNtqr-4vj{ zVtA;HD3!w-57l;<jDTz?riweK6n7`d+7yren5J5YRB1ZwNK-x^G>uQ$(8`Q_R&&B( zkn%}o`rGFbbF&;ViOf)vR7(^*NxhFd*c|a^s`b7=s0q)b_+%B*P`JMCh8q~A7)>6y zcMW^evc(R&$5YqY>0Ryba1`P=<oDF^(W@uCF6hHE!G>1$t@>thV~`x*;qi2|q`JV< z*xBg``r1OR0dKQEyw1~MXBk@b>~YjsSLX@o<@MYVxYr-3$CF<^E)c~xN?EZ4&wcCt z0S}(K*5gSquESO0NpK5p|22;fH*8)AR-?S)JWd7bwHZx#3ONI{sB5~{=MRL|`e!uy z!!wKr#y58A+y1!cZ-!xBwFNGhXJ&z2TTods-{mR9k*lU=-uw!WqhO|fvZe+Ritzke z!%LwNf#>ir{|o_-_EQGDVnNV<$>mWZ^2jrZ`1-YsVToUv9ADx@+B}mutEa(Vc{T&7 z$&fhGuaehEc`|1%f5Cedyz0_yAorAYc<Yj_J%V>f43v+@v6Nf=d@GctJsy{5YJTH- z#{bO^*P`hx+SA50;c1WKEk>sHT_gU`?=3lFCgHse-cx2@jdbxoCwmR@CdY<7zAwrS zA)x`hcbSHi$We(La;Pnr9ICUDqq5`4{n%4TUWI*-<W8hVj!iuI<kw@b068`+O((w& z?@h=XG_8od1N$_|QS!Oui}0R}{6_3$CC7WEh2(fYQ%OD<?L>}^LDl3BX<7|AHixYw zM~!RAH(<{aIW{*nk=J1lBstzY1<A4TC`^uxPo3m=KeL|Pf%ih>*Wi63d99{xCbwZv z5qUn|W05b=v?s`K#@-3?pr$=dz8LRu$P2K?f*hNgwvmT5Z9BOa?}f-0YT66r(D+Vr zyieLiUWWHh<Xbgu4>>fxpS%%!hsp6Cs-L_I?-$9jiR%b?wWb{-=X*KwM>XwD@*eCd zCZDBgC&;nka)=zA>LfYdo1G$mOw&%2b7LL)$9Z@kWg+i|{>kxvG?%;?`X|RmvGL^S ze|hA~pnvl9&_6l)Tt4|1pnvj*p?~sAp?~sH=%2hC`X|qW{>krw{>dMK{>gpNKY20q zPd)|uC!YuXlW&Ip$u~m(<N@fP{0``!d^Yq?z6AOwzYO{(za07}FM<BaE1`e#E1-Y! zYoUMg`I@$wd^+?`UIYD;PlW!-H$ng84?_RsH$ng8Zs?!99r`D~1^Or70{xR0LjU9# zk2}e)g#O84H)G^Wp?~rg=%4&5=%0Kh_8E7-Rn>LEG6+p+cRjc}2VJ)3UrrAX4{!W+ zID7E@G0^yN441)t=(y&t1G|T3ox;c;o_rd=yk>Z^22D5d@b~~O8=h<-rtEmXz&XUY zT00&SIF}e2(vJ5DY$di4_X<3ocq(yJ;5=eGaYW#W#As>lcu-&)v6Hw~;C$kR#BPD7 z5~BsR<4%F66Qkv|<931V#I?jWfs2S)q2pG8ONfKSn!t03JBf!r#fiyI;t278z@@~S ziTed!NE{`O30z716mg%xZsK0zUV*ELw-HALt|9ItjtIPxcqegC;9BAsajn4h#QTZe z0yh!&6FUWNCO$%J7dS{fKx`8@Ogu<z6}Xdlh*%SNJ@F~xp}({K5n{|PsK3A)i21p} z@qU3f6I+R60&gMCBkmJ8N^B$U75E9_sl-u%pCYysM+APFxP&+;a4)fwxK`k2i5C*P z1>Q#NCUy$Eow$bBE^r@lEwN4D7l`?J#Br;@JBfqDn!vk=JBf!lPA12QBg6v&?;+ky z+%NEc;wW)U;Df|Z5%&q)Puxq~EAS!WZNyQ5j}Z3}M+81bypuR6@Bnd)xK`jdiT4w` z1s){sCw2;ag7^rrUEm?&0b-lLCy57%tpcAS9wOERK23azc<2+>UxOuS;_B@9fWQ{w z9O8a~bBL|PF@bZ5^N9Ndwi4Tjdj%d(%q>mFqXOp<+leCrPb4lO4hn1|b`sYLoKL)v z*e&o>VmGl<;OWFQ#CC!0#I?jWfs2Tnh^+#b5C@4hf#(u;5)b`NjDO+?@qoak#G8rx z1zt!TC5{PPN&FOXpTKV7UgBPXtBJP}M+L4S?jw!}ypnh)aZun|;uvwQ!1cuYiQNJ> z5%&{21#TujLTnc}NIXDn6F5vfNNg3jlX!?&6L>xGDdM5Oit$gZVJUZfK;R9;ImG<} zZzi@9#{}L&oJZUzaFp0a+$-=C#8Zi*0zXA;CyogGG;s-WP~cu-CvmO7&k`>rb_=|X z*iGydcsp?ov0dOk;#y*xz%LLt5nBb`NgO2B1l~p5Nj!8)jDO+?@qoa4h&L1W3%s8= zN*ojTAn{YgeZY?Q?(Y6W*PBD`>ZMJwmm%rL&+W^aY(K%bTR%jHI~g?vW4?}jehU`Z zTKg^Eih{p1fUmqBeD@fBU-=}n>)nhwM?zO_-2oe|b;UBi%_zg;H&QI3&pFaIxHp># zWOVJZ+_h@=*6<W<>#pk<AL)0U$otlth`TWszL@ijhJ*9>S@L;qxc|WJ<no~OT_^0_ zEAyvrU74TP9nPQLJu!c9CVI$V0W3zhC4X=eENAy#o<0V{(LL0I$UTgBV%2W_{2rb! z${##|m}&;Buj93@6ZuF#2V_A(o<PY5zm3LI&OOa@GnmcFd@Cqdkv&UU2$NUWo_y3c zs<+J6pU3N)Gk6J9+g+A(;P?sj@f7kuGdIe&KqX0Xte?gY9%6*ugOhMMs@YwdZyCJ$ zFT=w<S$kcRGjQg2*@M_o_&Zc!*qt}H7wVVM*5JynJ>zN7HBq`3uq?#~2XTEM{UX$Q zAx;i{{bOdsCapqFj@ZW6!X-Uf`%3fktPq2bcOo5dD=j*BuEBFS!hkKCQ4C}~?9S=h zQ-u7w%T59gTF?MJI7G^RC@mV@sux4=Z{vGb<?PGare8WZNUg5I_2chab^Je3{OHyW zrMz7ya(c>g_GyfM;P^{S?F{m-jgYfFksnL77?srX6`AdBh$hNIc|npqD&)!i<prUC zwp^kQ?c%v%YHMVF*+ZEN<?2e?U*2MB><`obJfc6`xvc8J6IhySMkOj3_ZN=XhF@Q_ zVV9wm+rhWqAETlWQDecVoFOzBRGk?^0iI!x+S{Y`I4ir$b`6G@%3Qr?H8Rt(f$p+x zSh^q0F8PHe=V*0)&XJZF^mi0}Y;YrD^ptJGh+<b9zGD}Tm;o~zY%)?d&aruh-IYCA z7`m3N?MDzV2gPFt9gcFLsK?9Uwed9eaKIowPM`)k^TBg3MzQ6^sKq4KVi$|Ockst3 z4@$rF{(dnuo;!)+jX}+hmhBN$n9C}Z#f}_6RT1xKwi73gyo<W9W|pI?o;tc}^U+n? z2DjtN?)50={rgcYR7@|n%r;(T<Ufu1&qZC2mTm6dd$ep@kM{ZjwkFbNx@AuxGtpXi z8i~pjnHp=$3dU0u19YqJ<Xv}rU_+Gg(RE^K_o|cK?Wel$KRtN*BlK8Hz7-9KYQO)d z;o%ouOlh|x*8TgBzTdD9H&c5TWU_Gw2O!;-wUDjmvON0=SQppTF>z!;3a7*om640) zU`Z}{0;e{_!uG8$3&-kv)bkj09}CMKJ;bbrdRCq6X+PC-|7n_6V;rNICgwX{8;<Tl zly?v6M)x9W1xEK?j$u7ue6e=%@IQ{xE^3Z<Bx93QjPL(e`5wd|IE|^`-7&fqPp%*3 zIhfYpouJFR82{b#&HC2un^2rnS6n2nxJX=a5vjNX$M<3s=uJ9`^bPxWZarhLjsr~^ z<zn<gJwH)D^ZX9`G>9h{+Jn0<yBZ6G6B7sj@&WA0ORu6?ws!G%+P+tYGdB*0^Bo`e zlvy!iQQ=$;T-bH=y5T3DXRNNh8FM~ud%bJVL@^|KCg!8#AU~Af@~uNyEOeb34u9?? z9yLU}-n9((_hjKz`^he`=!nPVy(XVMY_Y*MO~j<R9M2hejsdflmZ4>8##7{*Yzwjb zrqy<5Yg==@h=8AdSWWwjSPp?AJMq0eNCORE4drm)JxM9vy>aUS;x@t9#Sov@VqA&m zmOLIO!k2GxHMfR*`W94QeL*nLsEITBu1$e&LqcuXk`*Y>L|HD-%OZ}&p@_vaWtfh^ z%kLYspILJF9f=LZ{pwB-_o2J7mz>|T@EZ#5^X9iI++Q98wt;gmIKS73K^DO=_tx|K zn?4*nu}|I&UJK$kCES<q201CiH3PVw-@5R71nv>%cLx2SS{(Bm41QO^z4qL%&OPWu zpaC4a!6T3jfXBeCFCz|!--Xly^LrpC(y;M55WgSjW%-y7Xb89u@oG`OAc*_lxo6#m zydvP-U*E^;m>=YQxW-Nya4mQgJc=}|NV6Zf7i0y+81JVz24RLCX4?i4Pea*iLEPsa zMLdpS(e7+tobSW=UR)c2EP``UP%kKm^lKsG_Y+o>iMD~)^+RSyx<SN0Wt@v3ZWLwi zgDeJe*b_>puBW1JO~kbWe_;RWorhC+Qn%2RaYfe6v;{VtIEJZaI*#YU^sWbg8vH5n zUEnW(9|Pyj`dkd>6Fd)|i>34l@TuUr7$2qJ)4^-OE5X-;H-m>Uy&nX}*TdQg@a^Eo zFi#%@-;SjYZ#s8@zW{y^oHvEXz)yg4-J65Kb{ae%JQwR+C-_A0mEhCCdDAl&{0Z<% z@ILUB;0M8*!3V+DgIkc_)8IDngWz+)r$bpa;CR$2LdJdW%B5PydVZ9FCe^OUwOBTz zzII6SLEB)#@EBUNl<c$Q%p03Ce`Dr_*^8}N=iPDs(B<c!x@LiOjDC3fnz$bVq$!fb zLrWy7r<jK{Y@nS;53d#AEWt?2)s;orToC7MJd#exa7bAV&p}_QWMPObkloHWGR@Mi zEY|N$&_c-Y8bPyED&=3K=h=tz+aR9|9=~>hE<1=*yCB1(@PrJ9EDsH3ERBq_&K}6{ z=r?hlk){o@{b^)#A<M<|pRHbpV^M#|v^26XWGB(bQe78?Y%q;%J7mYw$o50lpGNj3 zWP8%cFg<8HAwyRZbuVRKG3qc8vh8VPC6M)|Nt56BJ&{Hhgluyf*%rvwr;+iYPB4vZ z4`ksqGCrJPes~>_(5+Fw(~xn@->S+Cz2{*(4q=U%s^1quR+OUOv;Xp8NeN`{pv~j` zv$89DljY$o8&2(kJO_5_0FEsymHu7%aMmVEm*^71!x`2*98J1#zBU7V2?*zM$Aaf& zd$k(8g8;tpBD@>AIr}FWS^zK4J`10<z-KM+SqpsD0-v?OXD#qgZvosA4M%WK+{b%m z1Y(&9r+P_?u=wQh9R}yVAmaB7&V5G2+)s27_?_Un;QZzuTTH~a_*m*|+aI*#{Q1-2 zR&5jZ0s$X-9D9byyLDd{&*M65SrL1ZkfaD$T4*PKZ^^;3M(YLO+It)bTRk-A_boX* z&I89*6XC}R%Lk2>!7W<rw(p5YH?2%#2zc}V(d!9#PJur2<ONf3&sYp92Q33NfI2{% zKu?061ML9q1sw*x4f+@~2KSN^KvO`)pmNYMPy?s~v<dVi=sD01&|c7C(A%JoL1S>= zIRP{UR17KyEdw=xIzXF1PlBEU?Evis9R|G(`WQ3@_o@>>Q$WR_a?mnR1E>SE3G^iB zInWN!UeICC+n|p@V{lJA0W<|v3@QgL12up;K$}2Mf}R8I0PO`G2E7gX7&Hd=&J#dW zK*gYP&@xa1r~|YK^d#sx&<@aE&|%QqppQXga0fR5GzC-)DhDkCHGn!mn?O&3o&)Uw z?FAhMy$$*pGzRzc6F^fy#h`M~GLY0Ob{^hjn|jCU_CUDZR#Z?_F!RQuc7bM1)3K%% zgx0l$y{o~)Z8~p~NBA1g*A~<Y0<B?R0X8h&81^<As4>u9u(}-|h~Mb1*9wT5yrCwo zpnhEd>FGS&rc3ZCbqIS!O~3;gw%9Yieh_R9YX#yn@dA87k7Mz*T0vW@*oIl)Yw|R- z;X@ElQ$4Pf2uWhEr?0cl7Yut)_-3D0z^|%9D1gq^)FC=D@wWKu5W5u#<EKF6rl*Yk zow%sAg<I!kyN!lp+mo;l9K*uLC5#2fsSLCo4A+8q&&GJd7bOHX9Lqo(!hk(V@pzkI zQ}~>K&j@6Y@fP9)?F`eS?cu#<HH5S|42(xA1>tc@E922NF~T7jjpTTXA*Ov|Jld>7 z*zX4?pQ0>CTBOC-H_Je@IU?TUhzH|D+a?3!GTaS<$rbt1Hf^4U`a&r4<@KbsAlfq? z)23~^9`}tnW?L~I)`0=r0a+Yz4Q*oH4Z2N~=`kKVe3ufBHq?oDw5^OsdoAPfofXT< z^R(py1^V+CKoMlV4+F_~R@gf04BRt{o9{$C#(i9gM}Mic#dy{dAA!2v=M_&W@#x28 zC7zne=R}mte7|ADW4lBUFM@cyZ<fJk96Sfk@=+vwn9j%i#1lr4>Ae6f<GFX^IiU;B zE!e<Dknvsymht#Fs$_xgM^DC+N%tG^n1t}niVnp7A%jfsw>ZIT7>_UIk0GAYEb;oj zuEgWZ_cswwrU6m>_zfIWXG~A{d}VsbK&ph-F#QuCnJ@S64&g08a(cucD)BfMpF}*q zx0iu&NPh##^!oA4v;X$g^<X6C&+_rv=n=#_iDMaT#z8jXF+ID18Sh%-n2a*gI1tm4 z;S<E8k184DA-U2$v|K#U>m3UpjyOLD#5zzv97Ae)+Z#0Plgn|^2r@m1RZjaxta}C4 z?U;`BoN2Fgtmi<xq+{leK>LG`B`lY2XLL-B0>hr@Sl6ap(_|SvhW0_1vljZ=NXHil z%<-;cS~7iH>zFGx)F0zl$Fu~R@N2ANG!%mLtCVGUiQ~A_<$BNN_|h@80y}_lq+_no z@Ei%_MaTLKz;U5tuI%*wuVZ}$$bPP4-GIuqSe94;VqJ&+sLT0;QeP|T7@Khs*bjBA zD^PzH&-Uf4ln7a{FsfcH@Uz7hk>$f~dEt+i<C9lqXqSlfrYv6uysOT_`KYm`$b{dm zMZjWLjfj7R@P)~}H`H_n@^1nkQsO7)&q?-3JiqbUgTUDNVdQ_Y_8735|JQ)+hCZ18 zkAP)heSRtdIPrggbNych&iH=>=Uy6S!18hYaUYGuR{?YH3^h&p9Hqca?>1oGOQ`8_ zGl9IG>2aTh#7vKSD`a{>V5#4X%uBU(zz2-_YnkJ<N0RW@foYFW94#aBGVOU_zH1_8 zZ{vFt8HnFV!k-YMypzE$M*XddabWy{B<uqYD(OEC98vI#z)=Ms1Liv>Bqhr8DKPt= z9hiQ+E`bT?Q{?l2t$2^bH4FW=tpPq_^k4dYy9YR?#Qz#F-&@J}e*o@R<YUm$1{8b) z@Q{L67$!%SF9OVWUJ~yIwki0Xr1+W0SdK3nMh73VtA5fZvS3DFd(HxOE9tEU=DRaS zV|^dT0pBI^62{*H%=fo^Z$kaN1<ZH2v=qd7Fo}F`2q@w&2j;s#KBuNU2+Vi8v|Lxi zvOfeIQR07t7;;vNe%-zUY(x6hBE7NN_ke>aA1y7*_gi2YSiV02^IfGZ{|$&}SFjhD zJMnnUxXeqm0C2C8e-zk;_rM1rXL+{)A2RekF7tBj$H09`{C?n=f<FT0yKY)O)-PM+ z#N71um;*eZ#9s;AkMeOQV11qj9#Z75CS5-aEbaZpu=m-RQuxkQrauFi?{6h;2DU4h zep1~^d;AJ`NXh??z)mGT3+7hvb-+&ShT&R+^`oE5T1CDBnD1j{{*M6jJ-_T9yMXzA zSIW6~k1F^|V7?3HWo(Z*z`crm4RD`=w*vFMGMZh)e-1dN$oB*DyC-JI@%=V%zaqaB z6Uu;sX8}iHf38G)>i<^YUg*;%uD5C{IRP1g{VkY;cLVc%IHOQbKbkfLU#U;w6bt#y zz<ft9@k(H>!*x7Xt4oT%m2xHi%fNg;F0aqTz~Vb_i3@<;s1Iju*2e{WJ?bOmh`a(g zsMNO=SO%8=Ux0g+^!5VxDfk`Wn1aV#g!oGTas#V=9+v_4EAck~%fS4;1I&F4H{qE2 ze^HU!aPF51X8d=E@hk(sqCLl8;^KY<iLd5FW(3CH1Z-F2+km;3fNEraei4{^6l8z; zHL&Uj@jQJAB~oO1bAjDTdNsh@tH219Kb;i+AaF#He+V2^a6T_G0uM{^)2GP&z|y{3 zVc$D|521ha63$0o1m^w*b{p1b3vf)i{s6EHJRHQ&fFi#DOF)~Vzb^ng72F9tq{RO& za72;62P^~ApMZg{&X?B!Tk-6OaVTF1%)K)bHv)4{hs0l{9QNaO5r3?95SaUBr2IIr zTfzK3tsnYZVZ^@_nEP&I{8_+31vdak6ucQYs^A|1_bRv_xKF|S?k%R^X~4B;57~e2 z(3i-}UevcE2|vo~mG*lXct}a_2;<{fnY{k5N!O3VLsy$3p9##pJ~I9?V5fq+fcf3$ zbVQ&%d=c2K$lnH*f%^FrIH<@cVPcD+eL26<p4<o=1ilrR<8>Y|_x(UELcR_-qFlcN zSX1iz8Zh_k;H+pL3vLm56?`plpMvKB#}vF8xL?8F1RhZE{{@!8hJ)WJnDsjiY>nGn z`02+jiCwXmHv_AFc9#RIesCj<uUx+eSO%v5I<Q-jYjthmP`JIJp#Z*HJg({`OFfkp zRn_$0=_xg#TV0B%zSYy%+`8J^>=91}J>K?CY`1F(Hp8W4eZg#dp+lp<<FD@|nyKlJ z8|&L!TGq*Y$`+T3Y|59;yRFP45wnrUiCn~ENRbOaCoiZA1~p}mp1__3l}qN&tMqs( zJn-LW+QXOZ2dUEGFr0|4fE!GcM}|uJji9%K)Dn7m(<O;*T*84zsv;;`y=H}k%MW-m zC|$mI-fa~wGy)&bdc19I-gV+rc+&~v6M3UbOUlcu%Bnrp^X6BUrE(uSTXiA@e*sSC z0)8BCd<U<1vy{FOWP_Mmsnl-v38A_!8R=3?m7aq)Rp}DqTzq6XM(3?Eg`<#k?oAS& zp3df>L$=tcoNk=iJ(1x8A>mv~rtP4Ao@8%2CeIlEREJoOQTf*xjbo3|dS^5Bm1O^N z>2&1yZ@OoRyK+i$c869MBUU;=<9iF~k|N2Cg-KPZoeszQ^Jskaq;ayA)`O_*AZK@D zWg5tiLYkI}0E`G659)*36k(>_n{a4+r@y&b_{b`Um!`(H*7juQfwC0mtPpjtYr?f< zb(N_sDV)kEZtog`o~C;>-GxX(8}UXTjr&Mh{6q=j&Y7g>oPEcR*83e@vFOvNF{O>D zgYbB4_Bg3FTVmeu)Q4I<O~S=)iY80t7TIVeF-Xn+XR9mHs=zc<&&^*|3YTTVuTBaV zM(5n%agCe(6UALCn%sD)?PID>3TM`a7tfJh;;bId;+-eqL^a|1=WL$;;uoLIr{u_< zb{22T(wwTjs5G@lTj@eK$v_%yP5Y@h3#?wIrl>Y?ye`SklG18FU8POEvT%-Kq~Ntr z*eIGx#YV}>j_@!qoiUw@`?9#pI@M>f%t5Vu@<K^Az^FY*%aJ+KqcF0A!+cX_sdXpp zhIBh7OuVv^N%H<>THq!Mdv0#nl6(l7RAnqD(M3#O&gjml(k@0hH2=xI`DEqJ>V#2h z;B2lBlO0(Zl@V^Ily$X{TuG9je`6J&F!~86(`mfP$L)|>K-CvovZ0gxbHoTpSf#`m zNMn_lMoRBzsoZdzRIEF%^!STQiVM)4Ji$6oxT!s`wqSK9Ercm<vRm!=a2x3%GPxBB z&+ch2`I7YiA7Qj?+}m%m$H)<m-OkPFs@QZhvTOVU?jlWI*+-g$RR6${s;8xG_tZ{j z<q%5TBE_4QcOlZH;{WtN6r}LlTcNfAx>pKYso%jS`@T!<E6?dv{KlCT#!8->Pf4Rw zsehO-ijg_`^+J+GKdV1Ssl_w?)ryRC4*$oXE~k|LSV>n`)f1>kz0soYKWMNjNu}|w zCW{8gz;(ihV#0_)l*+53qQRubk`FtiiIk=_{eO*&Ty!P;4AX_Xk%DPn9eIu8-2Tep zEI$0>O_TmvK%zUHy^YS|#aZ>!m@q2wmP_TXG+sa>R@}hW2(QCpl1XtZaHa<<ruidz zJ*azeuJpn$ep9MHWS}cilds$40?HMQD4#yj*M-_g{JD-%9l2OeatwXWKCI(yi1{+^ z*xuyfG~V~m<|bV>G*U|SA0RR(VM>$TM5lM9FE1PMmqf|!H>yAONg9hIoq!`dK5i9% zouS@Uq<L0C)11;Fy;1DAr}h+nP19L?+2Cnhahq3lCP({5rb#hUMLFZY9wbj#X`HpD zE5A{SGr4a!Ic~)w*6^XK7)>J);Zr>RM<a<*A@7q_gDvla)N_v6EkZ;1BHo36tyqow zHMnDzrZ>LkGnr1={))%m(fiOJX?GKU{v>Qpsy`r0zEh1CP-zA6R}e{~U6xdx*G8Jh zb8$_anAg%Q&XbE)ct&T+$$!BXzdC6grs?Wua4B!H#mNs8;_agT0a+sN5zocdKX6I6 XcKC;S1N3M9Bc6C6WDyhp)As)Xhm2s| literal 0 HcmV?d00001 diff --git a/HelloWorld/Release/Linux/subdir.mk b/HelloWorld/Release/Linux/subdir.mk new file mode 100644 index 0000000000..954fe8d9b4 --- /dev/null +++ b/HelloWorld/Release/Linux/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../Linux/main.cpp + +OBJS += \ +./Linux/main.o + +CPP_DEPS += \ +./Linux/main.d + + +# Each subdirectory must supply rules for building sources it contributes +Linux/%.o: ../Linux/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/HelloWorld/Release/makefile b/HelloWorld/Release/makefile new file mode 100644 index 0000000000..b1640a4617 --- /dev/null +++ b/HelloWorld/Release/makefile @@ -0,0 +1,60 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include Linux/subdir.mk +-include Classes/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: HelloWorld + +# Tool invocations +HelloWorld: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + g++ -L"/home/laschweinski/git/cocos2d-x/lib/linux/Release/" -o "HelloWorld" $(OBJS) $(USER_OBJS) $(LIBS) -Wl,-rpath,/home/laschweinski/git/cocos2d-x/lib/linux/Release + @echo 'Finished building target: $@' + @echo ' ' + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) HelloWorld + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets diff --git a/HelloWorld/Release/objects.mk b/HelloWorld/Release/objects.mk new file mode 100644 index 0000000000..25a30a896f --- /dev/null +++ b/HelloWorld/Release/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := -lcocos2d -lz -lcocosdenshion + diff --git a/HelloWorld/Release/sources.mk b/HelloWorld/Release/sources.mk new file mode 100644 index 0000000000..e6df4461ef --- /dev/null +++ b/HelloWorld/Release/sources.mk @@ -0,0 +1,28 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +CPP_DEPS := +EXECUTABLES := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +Linux \ +Classes \ + From f86cba983f4850cc2bb26f0c895deac2676eacc0 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Sun, 28 Aug 2011 17:09:40 +0800 Subject: [PATCH 23/31] test debug and release --- .../Debug/cocos2dx-test.REMOVED.git-id | 1 + tests/test.linux/Debug/makefile | 99 ++++++++ tests/test.linux/Debug/objects.mk | 8 + tests/test.linux/Debug/sources.mk | 68 ++++++ tests/test.linux/Debug/subdir.mk | 34 +++ .../Debug/tests/AccelerometerTest/subdir.mk | 24 ++ .../Debug/tests/ActionManagerTest/subdir.mk | 24 ++ .../Debug/tests/ActionsTest/subdir.mk | 24 ++ .../Debug/tests/Box2DTest/subdir.mk | 24 ++ .../Debug/tests/Box2DTestBed/subdir.mk | 54 +++++ .../Debug/tests/BugsTest/Bug-458/subdir.mk | 34 +++ .../test.linux/Debug/tests/BugsTest/subdir.mk | 104 ++++++++ .../Debug/tests/ChipmunkTest/subdir.mk | 224 ++++++++++++++++++ .../Debug/tests/ClickAndMoveTest/subdir.mk | 24 ++ .../Debug/tests/CocosDenshionTest/subdir.mk | 24 ++ .../Debug/tests/CocosNodeTest/subdir.mk | 24 ++ .../test.linux/Debug/tests/CurlTest/subdir.mk | 24 ++ .../Debug/tests/CurrentLanguageTest/subdir.mk | 24 ++ .../Debug/tests/DirectorTest/subdir.mk | 24 ++ .../Debug/tests/DrawPrimitivesTest/subdir.mk | 24 ++ .../Debug/tests/EaseActionsTest/subdir.mk | 24 ++ .../Debug/tests/EffectsAdvancedTest/subdir.mk | 24 ++ .../Debug/tests/EffectsTest/subdir.mk | 24 ++ .../test.linux/Debug/tests/FontTest/subdir.mk | 24 ++ .../Debug/tests/HiResTest/subdir.mk | 24 ++ .../Debug/tests/IntervalTest/subdir.mk | 24 ++ .../Debug/tests/KeypadTest/subdir.mk | 24 ++ .../Debug/tests/LabelTest/subdir.mk | 24 ++ .../Debug/tests/LayerTest/subdir.mk | 24 ++ .../test.linux/Debug/tests/MenuTest/subdir.mk | 24 ++ .../Debug/tests/MotionStreakTest/subdir.mk | 24 ++ .../Debug/tests/ParallaxTest/subdir.mk | 24 ++ .../Debug/tests/ParticleTest/subdir.mk | 24 ++ .../Debug/tests/PerformanceTest/subdir.mk | 74 ++++++ .../Debug/tests/ProgressActionsTest/subdir.mk | 24 ++ .../Debug/tests/RenderTextureTest/subdir.mk | 24 ++ .../Debug/tests/RotateWorldTest/subdir.mk | 24 ++ .../Debug/tests/SceneTest/subdir.mk | 24 ++ .../Debug/tests/SchedulerTest/subdir.mk | 24 ++ .../Debug/tests/SpriteTest/subdir.mk | 24 ++ .../Debug/tests/TextInputTest/subdir.mk | 24 ++ .../Debug/tests/Texture2dTest/subdir.mk | 24 ++ .../Debug/tests/TileMapTest/subdir.mk | 24 ++ .../Debug/tests/TouchesTest/subdir.mk | 44 ++++ .../Debug/tests/TransitionsTest/subdir.mk | 24 ++ .../Debug/tests/UserDefaultTest/subdir.mk | 24 ++ .../Debug/tests/ZwoptexTest/subdir.mk | 24 ++ tests/test.linux/Debug/tests/subdir.mk | 34 +++ .../Release/cocos2dx-test.REMOVED.git-id | 1 + tests/test.linux/Release/makefile | 99 ++++++++ tests/test.linux/Release/objects.mk | 8 + tests/test.linux/Release/sources.mk | 68 ++++++ tests/test.linux/Release/subdir.mk | 34 +++ .../Release/tests/AccelerometerTest/subdir.mk | 24 ++ .../Release/tests/ActionManagerTest/subdir.mk | 24 ++ .../Release/tests/ActionsTest/subdir.mk | 24 ++ .../Release/tests/Box2DTest/subdir.mk | 24 ++ .../Release/tests/Box2DTestBed/subdir.mk | 54 +++++ .../Release/tests/BugsTest/Bug-458/subdir.mk | 34 +++ .../Release/tests/BugsTest/subdir.mk | 104 ++++++++ .../Release/tests/ChipmunkTest/subdir.mk | 224 ++++++++++++++++++ .../Release/tests/ClickAndMoveTest/subdir.mk | 24 ++ .../Release/tests/CocosDenshionTest/subdir.mk | 24 ++ .../Release/tests/CocosNodeTest/subdir.mk | 24 ++ .../Release/tests/CurlTest/subdir.mk | 24 ++ .../tests/CurrentLanguageTest/subdir.mk | 24 ++ .../Release/tests/DirectorTest/subdir.mk | 24 ++ .../tests/DrawPrimitivesTest/subdir.mk | 24 ++ .../Release/tests/EaseActionsTest/subdir.mk | 24 ++ .../tests/EffectsAdvancedTest/subdir.mk | 24 ++ .../Release/tests/EffectsTest/subdir.mk | 24 ++ .../Release/tests/FontTest/subdir.mk | 24 ++ .../Release/tests/HiResTest/subdir.mk | 24 ++ .../Release/tests/IntervalTest/subdir.mk | 24 ++ .../Release/tests/KeypadTest/subdir.mk | 24 ++ .../Release/tests/LabelTest/subdir.mk | 24 ++ .../Release/tests/LayerTest/subdir.mk | 24 ++ .../Release/tests/MenuTest/subdir.mk | 24 ++ .../Release/tests/MotionStreakTest/subdir.mk | 24 ++ .../Release/tests/ParallaxTest/subdir.mk | 24 ++ .../Release/tests/ParticleTest/subdir.mk | 24 ++ .../Release/tests/PerformanceTest/subdir.mk | 74 ++++++ .../tests/ProgressActionsTest/subdir.mk | 24 ++ .../Release/tests/RenderTextureTest/subdir.mk | 24 ++ .../Release/tests/RotateWorldTest/subdir.mk | 24 ++ .../Release/tests/SceneTest/subdir.mk | 24 ++ .../Release/tests/SchedulerTest/subdir.mk | 24 ++ .../Release/tests/SpriteTest/subdir.mk | 24 ++ .../Release/tests/TextInputTest/subdir.mk | 24 ++ .../Release/tests/Texture2dTest/subdir.mk | 24 ++ .../Release/tests/TileMapTest/subdir.mk | 24 ++ .../Release/tests/TouchesTest/subdir.mk | 44 ++++ .../Release/tests/TransitionsTest/subdir.mk | 24 ++ .../Release/tests/UserDefaultTest/subdir.mk | 24 ++ .../Release/tests/ZwoptexTest/subdir.mk | 24 ++ tests/test.linux/Release/tests/subdir.mk | 34 +++ 96 files changed, 3284 insertions(+) create mode 100644 tests/test.linux/Debug/cocos2dx-test.REMOVED.git-id create mode 100644 tests/test.linux/Debug/makefile create mode 100644 tests/test.linux/Debug/objects.mk create mode 100644 tests/test.linux/Debug/sources.mk create mode 100644 tests/test.linux/Debug/subdir.mk create mode 100644 tests/test.linux/Debug/tests/AccelerometerTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/ActionManagerTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/ActionsTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/Box2DTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/Box2DTestBed/subdir.mk create mode 100644 tests/test.linux/Debug/tests/BugsTest/Bug-458/subdir.mk create mode 100644 tests/test.linux/Debug/tests/BugsTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/ChipmunkTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/ClickAndMoveTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/CocosDenshionTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/CocosNodeTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/CurlTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/CurrentLanguageTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/DirectorTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/DrawPrimitivesTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/EaseActionsTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/EffectsAdvancedTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/EffectsTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/FontTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/HiResTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/IntervalTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/KeypadTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/LabelTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/LayerTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/MenuTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/MotionStreakTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/ParallaxTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/ParticleTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/PerformanceTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/ProgressActionsTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/RenderTextureTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/RotateWorldTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/SceneTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/SchedulerTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/SpriteTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/TextInputTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/Texture2dTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/TileMapTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/TouchesTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/TransitionsTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/UserDefaultTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/ZwoptexTest/subdir.mk create mode 100644 tests/test.linux/Debug/tests/subdir.mk create mode 100644 tests/test.linux/Release/cocos2dx-test.REMOVED.git-id create mode 100644 tests/test.linux/Release/makefile create mode 100644 tests/test.linux/Release/objects.mk create mode 100644 tests/test.linux/Release/sources.mk create mode 100644 tests/test.linux/Release/subdir.mk create mode 100644 tests/test.linux/Release/tests/AccelerometerTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/ActionManagerTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/ActionsTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/Box2DTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/Box2DTestBed/subdir.mk create mode 100644 tests/test.linux/Release/tests/BugsTest/Bug-458/subdir.mk create mode 100644 tests/test.linux/Release/tests/BugsTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/ChipmunkTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/ClickAndMoveTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/CocosDenshionTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/CocosNodeTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/CurlTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/CurrentLanguageTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/DirectorTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/DrawPrimitivesTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/EaseActionsTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/EffectsAdvancedTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/EffectsTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/FontTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/HiResTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/IntervalTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/KeypadTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/LabelTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/LayerTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/MenuTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/MotionStreakTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/ParallaxTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/ParticleTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/PerformanceTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/ProgressActionsTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/RenderTextureTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/RotateWorldTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/SceneTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/SchedulerTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/SpriteTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/TextInputTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/Texture2dTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/TileMapTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/TouchesTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/TransitionsTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/UserDefaultTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/ZwoptexTest/subdir.mk create mode 100644 tests/test.linux/Release/tests/subdir.mk diff --git a/tests/test.linux/Debug/cocos2dx-test.REMOVED.git-id b/tests/test.linux/Debug/cocos2dx-test.REMOVED.git-id new file mode 100644 index 0000000000..8f777b58d0 --- /dev/null +++ b/tests/test.linux/Debug/cocos2dx-test.REMOVED.git-id @@ -0,0 +1 @@ +ce1cb5bb4abb02a724539265c80a6cf943bd8f13 \ No newline at end of file diff --git a/tests/test.linux/Debug/makefile b/tests/test.linux/Debug/makefile new file mode 100644 index 0000000000..ad449f98c9 --- /dev/null +++ b/tests/test.linux/Debug/makefile @@ -0,0 +1,99 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include tests/subdir.mk +-include tests/ZwoptexTest/subdir.mk +-include tests/UserDefaultTest/subdir.mk +-include tests/TransitionsTest/subdir.mk +-include tests/TouchesTest/subdir.mk +-include tests/TileMapTest/subdir.mk +-include tests/Texture2dTest/subdir.mk +-include tests/TextInputTest/subdir.mk +-include tests/SpriteTest/subdir.mk +-include tests/SchedulerTest/subdir.mk +-include tests/SceneTest/subdir.mk +-include tests/RotateWorldTest/subdir.mk +-include tests/RenderTextureTest/subdir.mk +-include tests/ProgressActionsTest/subdir.mk +-include tests/ParallaxTest/subdir.mk +-include tests/MotionStreakTest/subdir.mk +-include tests/MenuTest/subdir.mk +-include tests/LayerTest/subdir.mk +-include tests/LabelTest/subdir.mk +-include tests/KeypadTest/subdir.mk +-include tests/IntervalTest/subdir.mk +-include tests/HiResTest/subdir.mk +-include tests/FontTest/subdir.mk +-include tests/EffectsTest/subdir.mk +-include tests/EffectsAdvancedTest/subdir.mk +-include tests/EaseActionsTest/subdir.mk +-include tests/DrawPrimitivesTest/subdir.mk +-include tests/DirectorTest/subdir.mk +-include tests/CurrentLanguageTest/subdir.mk +-include tests/CurlTest/subdir.mk +-include tests/CocosNodeTest/subdir.mk +-include tests/CocosDenshionTest/subdir.mk +-include tests/ClickAndMoveTest/subdir.mk +-include tests/ChipmunkTest/subdir.mk +-include tests/BugsTest/subdir.mk +-include tests/BugsTest/Bug-458/subdir.mk +-include tests/Box2DTestBed/subdir.mk +-include tests/Box2DTest/subdir.mk +-include tests/ActionsTest/subdir.mk +-include tests/ActionManagerTest/subdir.mk +-include tests/AccelerometerTest/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: cocos2dx-test + +# Tool invocations +cocos2dx-test: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + g++ -L"/home/laschweinski/git/cocos2d-x/lib/linux/Debug" -o "cocos2dx-test" $(OBJS) $(USER_OBJS) $(LIBS) -Wl,-rpath,../../lib/linux/Debug/ + @echo 'Finished building target: $@' + @echo ' ' + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) cocos2dx-test + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets diff --git a/tests/test.linux/Debug/objects.mk b/tests/test.linux/Debug/objects.mk new file mode 100644 index 0000000000..7af265cf4e --- /dev/null +++ b/tests/test.linux/Debug/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := /home/laschweinski/git/cocos2d-x/Box2D/lib/linux/libBox2D.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libcurl.a /home/laschweinski/git/cocos2d-x/chipmunk/lib/linux/libchipmunk.a + +LIBS := -lcocos2d -lrt -lz -lcocosdenshion + diff --git a/tests/test.linux/Debug/sources.mk b/tests/test.linux/Debug/sources.mk new file mode 100644 index 0000000000..1bce9f782e --- /dev/null +++ b/tests/test.linux/Debug/sources.mk @@ -0,0 +1,68 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +CPP_DEPS := +EXECUTABLES := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +tests \ +tests/ZwoptexTest \ +tests/UserDefaultTest \ +tests/TransitionsTest \ +tests/TouchesTest \ +tests/TileMapTest \ +tests/Texture2dTest \ +tests/TextInputTest \ +tests/SpriteTest \ +tests/SchedulerTest \ +tests/SceneTest \ +tests/RotateWorldTest \ +tests/RenderTextureTest \ +tests/ProgressActionsTest \ +tests/ParallaxTest \ +tests/MotionStreakTest \ +tests/MenuTest \ +tests/LayerTest \ +tests/LabelTest \ +tests/KeypadTest \ +tests/IntervalTest \ +tests/HiResTest \ +tests/FontTest \ +tests/EffectsTest \ +tests/EffectsAdvancedTest \ +tests/EaseActionsTest \ +tests/DrawPrimitivesTest \ +tests/DirectorTest \ +tests/CurrentLanguageTest \ +tests/CurlTest \ +tests/CocosNodeTest \ +tests/CocosDenshionTest \ +tests/ClickAndMoveTest \ +tests/ChipmunkTest \ +tests/BugsTest \ +tests/BugsTest/Bug-458 \ +tests/Box2DTestBed \ +tests/Box2DTest \ +tests/ActionsTest \ +tests/ActionManagerTest \ +tests/AccelerometerTest \ +. \ + diff --git a/tests/test.linux/Debug/subdir.mk b/tests/test.linux/Debug/subdir.mk new file mode 100644 index 0000000000..d474f50a66 --- /dev/null +++ b/tests/test.linux/Debug/subdir.mk @@ -0,0 +1,34 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/AppDelegate.cpp \ +../main.cpp + +OBJS += \ +./AppDelegate.o \ +./main.o + +CPP_DEPS += \ +./AppDelegate.d \ +./main.d + + +# Each subdirectory must supply rules for building sources it contributes +AppDelegate.o: /home/laschweinski/git/cocos2d-x/tests/AppDelegate.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +%.o: ../%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/AccelerometerTest/subdir.mk b/tests/test.linux/Debug/tests/AccelerometerTest/subdir.mk new file mode 100644 index 0000000000..c730407619 --- /dev/null +++ b/tests/test.linux/Debug/tests/AccelerometerTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/AccelerometerTest/AccelerometerTest.cpp + +OBJS += \ +./tests/AccelerometerTest/AccelerometerTest.o + +CPP_DEPS += \ +./tests/AccelerometerTest/AccelerometerTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/AccelerometerTest/AccelerometerTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/AccelerometerTest/AccelerometerTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/ActionManagerTest/subdir.mk b/tests/test.linux/Debug/tests/ActionManagerTest/subdir.mk new file mode 100644 index 0000000000..d29ec1eb73 --- /dev/null +++ b/tests/test.linux/Debug/tests/ActionManagerTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ActionManagerTest/ActionManagerTest.cpp + +OBJS += \ +./tests/ActionManagerTest/ActionManagerTest.o + +CPP_DEPS += \ +./tests/ActionManagerTest/ActionManagerTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ActionManagerTest/ActionManagerTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ActionManagerTest/ActionManagerTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/ActionsTest/subdir.mk b/tests/test.linux/Debug/tests/ActionsTest/subdir.mk new file mode 100644 index 0000000000..30c811e479 --- /dev/null +++ b/tests/test.linux/Debug/tests/ActionsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ActionsTest/ActionsTest.cpp + +OBJS += \ +./tests/ActionsTest/ActionsTest.o + +CPP_DEPS += \ +./tests/ActionsTest/ActionsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ActionsTest/ActionsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ActionsTest/ActionsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/Box2DTest/subdir.mk b/tests/test.linux/Debug/tests/Box2DTest/subdir.mk new file mode 100644 index 0000000000..d0dfa47c0a --- /dev/null +++ b/tests/test.linux/Debug/tests/Box2DTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTest/Box2dTest.cpp + +OBJS += \ +./tests/Box2DTest/Box2dTest.o + +CPP_DEPS += \ +./tests/Box2DTest/Box2dTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/Box2DTest/Box2dTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTest/Box2dTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/Box2DTestBed/subdir.mk b/tests/test.linux/Debug/tests/Box2DTestBed/subdir.mk new file mode 100644 index 0000000000..e2ea5a351d --- /dev/null +++ b/tests/test.linux/Debug/tests/Box2DTestBed/subdir.mk @@ -0,0 +1,54 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/Box2dView.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/GLES-Render.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/Test.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/TestEntries.cpp + +OBJS += \ +./tests/Box2DTestBed/Box2dView.o \ +./tests/Box2DTestBed/GLES-Render.o \ +./tests/Box2DTestBed/Test.o \ +./tests/Box2DTestBed/TestEntries.o + +CPP_DEPS += \ +./tests/Box2DTestBed/Box2dView.d \ +./tests/Box2DTestBed/GLES-Render.d \ +./tests/Box2DTestBed/Test.d \ +./tests/Box2DTestBed/TestEntries.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/Box2DTestBed/Box2dView.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/Box2dView.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/Box2DTestBed/GLES-Render.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/GLES-Render.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/Box2DTestBed/Test.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/Test.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/Box2DTestBed/TestEntries.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/TestEntries.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/BugsTest/Bug-458/subdir.mk b/tests/test.linux/Debug/tests/BugsTest/Bug-458/subdir.mk new file mode 100644 index 0000000000..20bfd0cbf1 --- /dev/null +++ b/tests/test.linux/Debug/tests/BugsTest/Bug-458/subdir.mk @@ -0,0 +1,34 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-458/Bug-458.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-458/QuestionContainerSprite.cpp + +OBJS += \ +./tests/BugsTest/Bug-458/Bug-458.o \ +./tests/BugsTest/Bug-458/QuestionContainerSprite.o + +CPP_DEPS += \ +./tests/BugsTest/Bug-458/Bug-458.d \ +./tests/BugsTest/Bug-458/QuestionContainerSprite.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/BugsTest/Bug-458/Bug-458.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-458/Bug-458.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-458/QuestionContainerSprite.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-458/QuestionContainerSprite.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/BugsTest/subdir.mk b/tests/test.linux/Debug/tests/BugsTest/subdir.mk new file mode 100644 index 0000000000..ebb332bfcc --- /dev/null +++ b/tests/test.linux/Debug/tests/BugsTest/subdir.mk @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-1159.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-1174.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-350.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-422.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-624.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-886.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-899.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-914.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/BugsTest.cpp + +OBJS += \ +./tests/BugsTest/Bug-1159.o \ +./tests/BugsTest/Bug-1174.o \ +./tests/BugsTest/Bug-350.o \ +./tests/BugsTest/Bug-422.o \ +./tests/BugsTest/Bug-624.o \ +./tests/BugsTest/Bug-886.o \ +./tests/BugsTest/Bug-899.o \ +./tests/BugsTest/Bug-914.o \ +./tests/BugsTest/BugsTest.o + +CPP_DEPS += \ +./tests/BugsTest/Bug-1159.d \ +./tests/BugsTest/Bug-1174.d \ +./tests/BugsTest/Bug-350.d \ +./tests/BugsTest/Bug-422.d \ +./tests/BugsTest/Bug-624.d \ +./tests/BugsTest/Bug-886.d \ +./tests/BugsTest/Bug-899.d \ +./tests/BugsTest/Bug-914.d \ +./tests/BugsTest/BugsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/BugsTest/Bug-1159.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-1159.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-1174.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-1174.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-350.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-350.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-422.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-422.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-624.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-624.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-886.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-886.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-899.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-899.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-914.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-914.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/BugsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/BugsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/ChipmunkTest/subdir.mk b/tests/test.linux/Debug/tests/ChipmunkTest/subdir.mk new file mode 100644 index 0000000000..cf1ea89a6e --- /dev/null +++ b/tests/test.linux/Debug/tests/ChipmunkTest/subdir.mk @@ -0,0 +1,224 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Bounce.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Joints.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/LogoSmash.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/MagnetsElectric.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/OneWay.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Planet.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Player.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Plink.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Pump.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/PyramidStack.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/PyramidTopple.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Query.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Sensors.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Simple.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Springies.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Tank.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/TheoJansen.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Tumble.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/UnsafeOps.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/cocos2dChipmunkDemo.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/drawSpace.cpp + +OBJS += \ +./tests/ChipmunkTest/Bounce.o \ +./tests/ChipmunkTest/Joints.o \ +./tests/ChipmunkTest/LogoSmash.o \ +./tests/ChipmunkTest/MagnetsElectric.o \ +./tests/ChipmunkTest/OneWay.o \ +./tests/ChipmunkTest/Planet.o \ +./tests/ChipmunkTest/Player.o \ +./tests/ChipmunkTest/Plink.o \ +./tests/ChipmunkTest/Pump.o \ +./tests/ChipmunkTest/PyramidStack.o \ +./tests/ChipmunkTest/PyramidTopple.o \ +./tests/ChipmunkTest/Query.o \ +./tests/ChipmunkTest/Sensors.o \ +./tests/ChipmunkTest/Simple.o \ +./tests/ChipmunkTest/Springies.o \ +./tests/ChipmunkTest/Tank.o \ +./tests/ChipmunkTest/TheoJansen.o \ +./tests/ChipmunkTest/Tumble.o \ +./tests/ChipmunkTest/UnsafeOps.o \ +./tests/ChipmunkTest/cocos2dChipmunkDemo.o \ +./tests/ChipmunkTest/drawSpace.o + +CPP_DEPS += \ +./tests/ChipmunkTest/Bounce.d \ +./tests/ChipmunkTest/Joints.d \ +./tests/ChipmunkTest/LogoSmash.d \ +./tests/ChipmunkTest/MagnetsElectric.d \ +./tests/ChipmunkTest/OneWay.d \ +./tests/ChipmunkTest/Planet.d \ +./tests/ChipmunkTest/Player.d \ +./tests/ChipmunkTest/Plink.d \ +./tests/ChipmunkTest/Pump.d \ +./tests/ChipmunkTest/PyramidStack.d \ +./tests/ChipmunkTest/PyramidTopple.d \ +./tests/ChipmunkTest/Query.d \ +./tests/ChipmunkTest/Sensors.d \ +./tests/ChipmunkTest/Simple.d \ +./tests/ChipmunkTest/Springies.d \ +./tests/ChipmunkTest/Tank.d \ +./tests/ChipmunkTest/TheoJansen.d \ +./tests/ChipmunkTest/Tumble.d \ +./tests/ChipmunkTest/UnsafeOps.d \ +./tests/ChipmunkTest/cocos2dChipmunkDemo.d \ +./tests/ChipmunkTest/drawSpace.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ChipmunkTest/Bounce.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Bounce.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Joints.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Joints.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/LogoSmash.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/LogoSmash.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/MagnetsElectric.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/MagnetsElectric.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/OneWay.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/OneWay.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Planet.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Planet.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Player.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Player.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Plink.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Plink.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Pump.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Pump.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/PyramidStack.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/PyramidStack.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/PyramidTopple.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/PyramidTopple.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Query.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Query.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Sensors.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Sensors.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Simple.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Simple.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Springies.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Springies.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Tank.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Tank.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/TheoJansen.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/TheoJansen.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Tumble.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Tumble.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/UnsafeOps.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/UnsafeOps.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/cocos2dChipmunkDemo.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/cocos2dChipmunkDemo.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/drawSpace.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/drawSpace.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/ClickAndMoveTest/subdir.mk b/tests/test.linux/Debug/tests/ClickAndMoveTest/subdir.mk new file mode 100644 index 0000000000..7e7c561630 --- /dev/null +++ b/tests/test.linux/Debug/tests/ClickAndMoveTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ClickAndMoveTest/ClickAndMoveTest.cpp + +OBJS += \ +./tests/ClickAndMoveTest/ClickAndMoveTest.o + +CPP_DEPS += \ +./tests/ClickAndMoveTest/ClickAndMoveTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ClickAndMoveTest/ClickAndMoveTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ClickAndMoveTest/ClickAndMoveTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/CocosDenshionTest/subdir.mk b/tests/test.linux/Debug/tests/CocosDenshionTest/subdir.mk new file mode 100644 index 0000000000..ab0b8c1428 --- /dev/null +++ b/tests/test.linux/Debug/tests/CocosDenshionTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/CocosDenshionTest/CocosDenshionTest.cpp + +OBJS += \ +./tests/CocosDenshionTest/CocosDenshionTest.o + +CPP_DEPS += \ +./tests/CocosDenshionTest/CocosDenshionTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/CocosDenshionTest/CocosDenshionTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/CocosDenshionTest/CocosDenshionTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/CocosNodeTest/subdir.mk b/tests/test.linux/Debug/tests/CocosNodeTest/subdir.mk new file mode 100644 index 0000000000..11ba6d7b76 --- /dev/null +++ b/tests/test.linux/Debug/tests/CocosNodeTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/CocosNodeTest/CocosNodeTest.cpp + +OBJS += \ +./tests/CocosNodeTest/CocosNodeTest.o + +CPP_DEPS += \ +./tests/CocosNodeTest/CocosNodeTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/CocosNodeTest/CocosNodeTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/CocosNodeTest/CocosNodeTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/CurlTest/subdir.mk b/tests/test.linux/Debug/tests/CurlTest/subdir.mk new file mode 100644 index 0000000000..8f47ed0a04 --- /dev/null +++ b/tests/test.linux/Debug/tests/CurlTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/CurlTest/CurlTest.cpp + +OBJS += \ +./tests/CurlTest/CurlTest.o + +CPP_DEPS += \ +./tests/CurlTest/CurlTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/CurlTest/CurlTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/CurlTest/CurlTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/CurrentLanguageTest/subdir.mk b/tests/test.linux/Debug/tests/CurrentLanguageTest/subdir.mk new file mode 100644 index 0000000000..e16e27c510 --- /dev/null +++ b/tests/test.linux/Debug/tests/CurrentLanguageTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/CurrentLanguageTest/CurrentLanguageTest.cpp + +OBJS += \ +./tests/CurrentLanguageTest/CurrentLanguageTest.o + +CPP_DEPS += \ +./tests/CurrentLanguageTest/CurrentLanguageTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/CurrentLanguageTest/CurrentLanguageTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/CurrentLanguageTest/CurrentLanguageTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/DirectorTest/subdir.mk b/tests/test.linux/Debug/tests/DirectorTest/subdir.mk new file mode 100644 index 0000000000..2a457c68e6 --- /dev/null +++ b/tests/test.linux/Debug/tests/DirectorTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/DirectorTest/DirectorTest.cpp + +OBJS += \ +./tests/DirectorTest/DirectorTest.o + +CPP_DEPS += \ +./tests/DirectorTest/DirectorTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/DirectorTest/DirectorTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/DirectorTest/DirectorTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/DrawPrimitivesTest/subdir.mk b/tests/test.linux/Debug/tests/DrawPrimitivesTest/subdir.mk new file mode 100644 index 0000000000..53d9f0a35f --- /dev/null +++ b/tests/test.linux/Debug/tests/DrawPrimitivesTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/DrawPrimitivesTest/DrawPrimitivesTest.cpp + +OBJS += \ +./tests/DrawPrimitivesTest/DrawPrimitivesTest.o + +CPP_DEPS += \ +./tests/DrawPrimitivesTest/DrawPrimitivesTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/DrawPrimitivesTest/DrawPrimitivesTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/DrawPrimitivesTest/DrawPrimitivesTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/EaseActionsTest/subdir.mk b/tests/test.linux/Debug/tests/EaseActionsTest/subdir.mk new file mode 100644 index 0000000000..1c0faafa12 --- /dev/null +++ b/tests/test.linux/Debug/tests/EaseActionsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/EaseActionsTest/EaseActionsTest.cpp + +OBJS += \ +./tests/EaseActionsTest/EaseActionsTest.o + +CPP_DEPS += \ +./tests/EaseActionsTest/EaseActionsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/EaseActionsTest/EaseActionsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/EaseActionsTest/EaseActionsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/EffectsAdvancedTest/subdir.mk b/tests/test.linux/Debug/tests/EffectsAdvancedTest/subdir.mk new file mode 100644 index 0000000000..6cbcb73fe6 --- /dev/null +++ b/tests/test.linux/Debug/tests/EffectsAdvancedTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/EffectsAdvancedTest/EffectsAdvancedTest.cpp + +OBJS += \ +./tests/EffectsAdvancedTest/EffectsAdvancedTest.o + +CPP_DEPS += \ +./tests/EffectsAdvancedTest/EffectsAdvancedTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/EffectsAdvancedTest/EffectsAdvancedTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/EffectsAdvancedTest/EffectsAdvancedTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/EffectsTest/subdir.mk b/tests/test.linux/Debug/tests/EffectsTest/subdir.mk new file mode 100644 index 0000000000..5f238fb0e8 --- /dev/null +++ b/tests/test.linux/Debug/tests/EffectsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/EffectsTest/EffectsTest.cpp + +OBJS += \ +./tests/EffectsTest/EffectsTest.o + +CPP_DEPS += \ +./tests/EffectsTest/EffectsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/EffectsTest/EffectsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/EffectsTest/EffectsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/FontTest/subdir.mk b/tests/test.linux/Debug/tests/FontTest/subdir.mk new file mode 100644 index 0000000000..65b2bf79f4 --- /dev/null +++ b/tests/test.linux/Debug/tests/FontTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/FontTest/FontTest.cpp + +OBJS += \ +./tests/FontTest/FontTest.o + +CPP_DEPS += \ +./tests/FontTest/FontTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/FontTest/FontTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/FontTest/FontTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/HiResTest/subdir.mk b/tests/test.linux/Debug/tests/HiResTest/subdir.mk new file mode 100644 index 0000000000..b620ee83c5 --- /dev/null +++ b/tests/test.linux/Debug/tests/HiResTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/HiResTest/HiResTest.cpp + +OBJS += \ +./tests/HiResTest/HiResTest.o + +CPP_DEPS += \ +./tests/HiResTest/HiResTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/HiResTest/HiResTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/HiResTest/HiResTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/IntervalTest/subdir.mk b/tests/test.linux/Debug/tests/IntervalTest/subdir.mk new file mode 100644 index 0000000000..e65a0f4840 --- /dev/null +++ b/tests/test.linux/Debug/tests/IntervalTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/IntervalTest/IntervalTest.cpp + +OBJS += \ +./tests/IntervalTest/IntervalTest.o + +CPP_DEPS += \ +./tests/IntervalTest/IntervalTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/IntervalTest/IntervalTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/IntervalTest/IntervalTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/KeypadTest/subdir.mk b/tests/test.linux/Debug/tests/KeypadTest/subdir.mk new file mode 100644 index 0000000000..9a6464d183 --- /dev/null +++ b/tests/test.linux/Debug/tests/KeypadTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/KeypadTest/KeypadTest.cpp + +OBJS += \ +./tests/KeypadTest/KeypadTest.o + +CPP_DEPS += \ +./tests/KeypadTest/KeypadTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/KeypadTest/KeypadTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/KeypadTest/KeypadTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/LabelTest/subdir.mk b/tests/test.linux/Debug/tests/LabelTest/subdir.mk new file mode 100644 index 0000000000..5236ac4557 --- /dev/null +++ b/tests/test.linux/Debug/tests/LabelTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/LabelTest/LabelTest.cpp + +OBJS += \ +./tests/LabelTest/LabelTest.o + +CPP_DEPS += \ +./tests/LabelTest/LabelTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/LabelTest/LabelTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/LabelTest/LabelTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/LayerTest/subdir.mk b/tests/test.linux/Debug/tests/LayerTest/subdir.mk new file mode 100644 index 0000000000..8460b38434 --- /dev/null +++ b/tests/test.linux/Debug/tests/LayerTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/LayerTest/LayerTest.cpp + +OBJS += \ +./tests/LayerTest/LayerTest.o + +CPP_DEPS += \ +./tests/LayerTest/LayerTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/LayerTest/LayerTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/LayerTest/LayerTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/MenuTest/subdir.mk b/tests/test.linux/Debug/tests/MenuTest/subdir.mk new file mode 100644 index 0000000000..16a6e464c8 --- /dev/null +++ b/tests/test.linux/Debug/tests/MenuTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/MenuTest/MenuTest.cpp + +OBJS += \ +./tests/MenuTest/MenuTest.o + +CPP_DEPS += \ +./tests/MenuTest/MenuTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/MenuTest/MenuTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/MenuTest/MenuTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/MotionStreakTest/subdir.mk b/tests/test.linux/Debug/tests/MotionStreakTest/subdir.mk new file mode 100644 index 0000000000..f85a08a0c3 --- /dev/null +++ b/tests/test.linux/Debug/tests/MotionStreakTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/MotionStreakTest/MotionStreakTest.cpp + +OBJS += \ +./tests/MotionStreakTest/MotionStreakTest.o + +CPP_DEPS += \ +./tests/MotionStreakTest/MotionStreakTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/MotionStreakTest/MotionStreakTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/MotionStreakTest/MotionStreakTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/ParallaxTest/subdir.mk b/tests/test.linux/Debug/tests/ParallaxTest/subdir.mk new file mode 100644 index 0000000000..0a54abbb6a --- /dev/null +++ b/tests/test.linux/Debug/tests/ParallaxTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ParallaxTest/ParallaxTest.cpp + +OBJS += \ +./tests/ParallaxTest/ParallaxTest.o + +CPP_DEPS += \ +./tests/ParallaxTest/ParallaxTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ParallaxTest/ParallaxTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ParallaxTest/ParallaxTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/ParticleTest/subdir.mk b/tests/test.linux/Debug/tests/ParticleTest/subdir.mk new file mode 100644 index 0000000000..dd54e4bfdf --- /dev/null +++ b/tests/test.linux/Debug/tests/ParticleTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ParticleTest/ParticleTest.cpp + +OBJS += \ +./tests/ParticleTest/ParticleTest.o + +CPP_DEPS += \ +./tests/ParticleTest/ParticleTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ParticleTest/ParticleTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ParticleTest/ParticleTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/PerformanceTest/subdir.mk b/tests/test.linux/Debug/tests/PerformanceTest/subdir.mk new file mode 100644 index 0000000000..34881df221 --- /dev/null +++ b/tests/test.linux/Debug/tests/PerformanceTest/subdir.mk @@ -0,0 +1,74 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceNodeChildrenTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceParticleTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceSpriteTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTextureTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTouchesTest.cpp + +OBJS += \ +./tests/PerformanceTest/PerformanceNodeChildrenTest.o \ +./tests/PerformanceTest/PerformanceParticleTest.o \ +./tests/PerformanceTest/PerformanceSpriteTest.o \ +./tests/PerformanceTest/PerformanceTest.o \ +./tests/PerformanceTest/PerformanceTextureTest.o \ +./tests/PerformanceTest/PerformanceTouchesTest.o + +CPP_DEPS += \ +./tests/PerformanceTest/PerformanceNodeChildrenTest.d \ +./tests/PerformanceTest/PerformanceParticleTest.d \ +./tests/PerformanceTest/PerformanceSpriteTest.d \ +./tests/PerformanceTest/PerformanceTest.d \ +./tests/PerformanceTest/PerformanceTextureTest.d \ +./tests/PerformanceTest/PerformanceTouchesTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/PerformanceTest/PerformanceNodeChildrenTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceNodeChildrenTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceParticleTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceParticleTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceSpriteTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceSpriteTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceTextureTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTextureTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceTouchesTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTouchesTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/ProgressActionsTest/subdir.mk b/tests/test.linux/Debug/tests/ProgressActionsTest/subdir.mk new file mode 100644 index 0000000000..0d3ebf5530 --- /dev/null +++ b/tests/test.linux/Debug/tests/ProgressActionsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ProgressActionsTest/ProgressActionsTest.cpp + +OBJS += \ +./tests/ProgressActionsTest/ProgressActionsTest.o + +CPP_DEPS += \ +./tests/ProgressActionsTest/ProgressActionsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ProgressActionsTest/ProgressActionsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ProgressActionsTest/ProgressActionsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/RenderTextureTest/subdir.mk b/tests/test.linux/Debug/tests/RenderTextureTest/subdir.mk new file mode 100644 index 0000000000..fe5d4fc579 --- /dev/null +++ b/tests/test.linux/Debug/tests/RenderTextureTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/RenderTextureTest/RenderTextureTest.cpp + +OBJS += \ +./tests/RenderTextureTest/RenderTextureTest.o + +CPP_DEPS += \ +./tests/RenderTextureTest/RenderTextureTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/RenderTextureTest/RenderTextureTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/RenderTextureTest/RenderTextureTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/RotateWorldTest/subdir.mk b/tests/test.linux/Debug/tests/RotateWorldTest/subdir.mk new file mode 100644 index 0000000000..7cb84fdbdc --- /dev/null +++ b/tests/test.linux/Debug/tests/RotateWorldTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/RotateWorldTest/RotateWorldTest.cpp + +OBJS += \ +./tests/RotateWorldTest/RotateWorldTest.o + +CPP_DEPS += \ +./tests/RotateWorldTest/RotateWorldTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/RotateWorldTest/RotateWorldTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/RotateWorldTest/RotateWorldTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/SceneTest/subdir.mk b/tests/test.linux/Debug/tests/SceneTest/subdir.mk new file mode 100644 index 0000000000..a409a9a8d4 --- /dev/null +++ b/tests/test.linux/Debug/tests/SceneTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/SceneTest/SceneTest.cpp + +OBJS += \ +./tests/SceneTest/SceneTest.o + +CPP_DEPS += \ +./tests/SceneTest/SceneTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/SceneTest/SceneTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/SceneTest/SceneTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/SchedulerTest/subdir.mk b/tests/test.linux/Debug/tests/SchedulerTest/subdir.mk new file mode 100644 index 0000000000..5f812e7751 --- /dev/null +++ b/tests/test.linux/Debug/tests/SchedulerTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/SchedulerTest/SchedulerTest.cpp + +OBJS += \ +./tests/SchedulerTest/SchedulerTest.o + +CPP_DEPS += \ +./tests/SchedulerTest/SchedulerTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/SchedulerTest/SchedulerTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/SchedulerTest/SchedulerTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/SpriteTest/subdir.mk b/tests/test.linux/Debug/tests/SpriteTest/subdir.mk new file mode 100644 index 0000000000..28d961781b --- /dev/null +++ b/tests/test.linux/Debug/tests/SpriteTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/SpriteTest/SpriteTest.cpp + +OBJS += \ +./tests/SpriteTest/SpriteTest.o + +CPP_DEPS += \ +./tests/SpriteTest/SpriteTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/SpriteTest/SpriteTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/SpriteTest/SpriteTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/TextInputTest/subdir.mk b/tests/test.linux/Debug/tests/TextInputTest/subdir.mk new file mode 100644 index 0000000000..d1f50c6171 --- /dev/null +++ b/tests/test.linux/Debug/tests/TextInputTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/TextInputTest/TextInputTest.cpp + +OBJS += \ +./tests/TextInputTest/TextInputTest.o + +CPP_DEPS += \ +./tests/TextInputTest/TextInputTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/TextInputTest/TextInputTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/TextInputTest/TextInputTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/Texture2dTest/subdir.mk b/tests/test.linux/Debug/tests/Texture2dTest/subdir.mk new file mode 100644 index 0000000000..37e02619e3 --- /dev/null +++ b/tests/test.linux/Debug/tests/Texture2dTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/Texture2dTest/Texture2dTest.cpp + +OBJS += \ +./tests/Texture2dTest/Texture2dTest.o + +CPP_DEPS += \ +./tests/Texture2dTest/Texture2dTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/Texture2dTest/Texture2dTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/Texture2dTest/Texture2dTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/TileMapTest/subdir.mk b/tests/test.linux/Debug/tests/TileMapTest/subdir.mk new file mode 100644 index 0000000000..28f2157fa5 --- /dev/null +++ b/tests/test.linux/Debug/tests/TileMapTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/TileMapTest/TileMapTest.cpp + +OBJS += \ +./tests/TileMapTest/TileMapTest.o + +CPP_DEPS += \ +./tests/TileMapTest/TileMapTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/TileMapTest/TileMapTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/TileMapTest/TileMapTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/TouchesTest/subdir.mk b/tests/test.linux/Debug/tests/TouchesTest/subdir.mk new file mode 100644 index 0000000000..f3b73c284c --- /dev/null +++ b/tests/test.linux/Debug/tests/TouchesTest/subdir.mk @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/Ball.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/Paddle.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/TouchesTest.cpp + +OBJS += \ +./tests/TouchesTest/Ball.o \ +./tests/TouchesTest/Paddle.o \ +./tests/TouchesTest/TouchesTest.o + +CPP_DEPS += \ +./tests/TouchesTest/Ball.d \ +./tests/TouchesTest/Paddle.d \ +./tests/TouchesTest/TouchesTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/TouchesTest/Ball.o: /home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/Ball.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/TouchesTest/Paddle.o: /home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/Paddle.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/TouchesTest/TouchesTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/TouchesTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/TransitionsTest/subdir.mk b/tests/test.linux/Debug/tests/TransitionsTest/subdir.mk new file mode 100644 index 0000000000..a7a1722d5d --- /dev/null +++ b/tests/test.linux/Debug/tests/TransitionsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/TransitionsTest/TransitionsTest.cpp + +OBJS += \ +./tests/TransitionsTest/TransitionsTest.o + +CPP_DEPS += \ +./tests/TransitionsTest/TransitionsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/TransitionsTest/TransitionsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/TransitionsTest/TransitionsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/UserDefaultTest/subdir.mk b/tests/test.linux/Debug/tests/UserDefaultTest/subdir.mk new file mode 100644 index 0000000000..f1c4f8b740 --- /dev/null +++ b/tests/test.linux/Debug/tests/UserDefaultTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/UserDefaultTest/UserDefaultTest.cpp + +OBJS += \ +./tests/UserDefaultTest/UserDefaultTest.o + +CPP_DEPS += \ +./tests/UserDefaultTest/UserDefaultTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/UserDefaultTest/UserDefaultTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/UserDefaultTest/UserDefaultTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/ZwoptexTest/subdir.mk b/tests/test.linux/Debug/tests/ZwoptexTest/subdir.mk new file mode 100644 index 0000000000..aa5ec5f523 --- /dev/null +++ b/tests/test.linux/Debug/tests/ZwoptexTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ZwoptexTest/ZwoptexTest.cpp + +OBJS += \ +./tests/ZwoptexTest/ZwoptexTest.o + +CPP_DEPS += \ +./tests/ZwoptexTest/ZwoptexTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ZwoptexTest/ZwoptexTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ZwoptexTest/ZwoptexTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Debug/tests/subdir.mk b/tests/test.linux/Debug/tests/subdir.mk new file mode 100644 index 0000000000..d529292ed5 --- /dev/null +++ b/tests/test.linux/Debug/tests/subdir.mk @@ -0,0 +1,34 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/controller.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/testBasic.cpp + +OBJS += \ +./tests/controller.o \ +./tests/testBasic.o + +CPP_DEPS += \ +./tests/controller.d \ +./tests/testBasic.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/controller.o: /home/laschweinski/git/cocos2d-x/tests/tests/controller.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/testBasic.o: /home/laschweinski/git/cocos2d-x/tests/tests/testBasic.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/cocos2dx-test.REMOVED.git-id b/tests/test.linux/Release/cocos2dx-test.REMOVED.git-id new file mode 100644 index 0000000000..89b9bd6a2b --- /dev/null +++ b/tests/test.linux/Release/cocos2dx-test.REMOVED.git-id @@ -0,0 +1 @@ +bd0a7c5a0c75a9d628e5ff502c90ad2962155ff1 \ No newline at end of file diff --git a/tests/test.linux/Release/makefile b/tests/test.linux/Release/makefile new file mode 100644 index 0000000000..09c499c4c6 --- /dev/null +++ b/tests/test.linux/Release/makefile @@ -0,0 +1,99 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include tests/subdir.mk +-include tests/ZwoptexTest/subdir.mk +-include tests/UserDefaultTest/subdir.mk +-include tests/TransitionsTest/subdir.mk +-include tests/TouchesTest/subdir.mk +-include tests/TileMapTest/subdir.mk +-include tests/Texture2dTest/subdir.mk +-include tests/TextInputTest/subdir.mk +-include tests/SpriteTest/subdir.mk +-include tests/SchedulerTest/subdir.mk +-include tests/SceneTest/subdir.mk +-include tests/RotateWorldTest/subdir.mk +-include tests/RenderTextureTest/subdir.mk +-include tests/ProgressActionsTest/subdir.mk +-include tests/ParallaxTest/subdir.mk +-include tests/MotionStreakTest/subdir.mk +-include tests/MenuTest/subdir.mk +-include tests/LayerTest/subdir.mk +-include tests/LabelTest/subdir.mk +-include tests/KeypadTest/subdir.mk +-include tests/IntervalTest/subdir.mk +-include tests/HiResTest/subdir.mk +-include tests/FontTest/subdir.mk +-include tests/EffectsTest/subdir.mk +-include tests/EffectsAdvancedTest/subdir.mk +-include tests/EaseActionsTest/subdir.mk +-include tests/DrawPrimitivesTest/subdir.mk +-include tests/DirectorTest/subdir.mk +-include tests/CurrentLanguageTest/subdir.mk +-include tests/CurlTest/subdir.mk +-include tests/CocosNodeTest/subdir.mk +-include tests/CocosDenshionTest/subdir.mk +-include tests/ClickAndMoveTest/subdir.mk +-include tests/ChipmunkTest/subdir.mk +-include tests/BugsTest/subdir.mk +-include tests/BugsTest/Bug-458/subdir.mk +-include tests/Box2DTestBed/subdir.mk +-include tests/Box2DTest/subdir.mk +-include tests/ActionsTest/subdir.mk +-include tests/ActionManagerTest/subdir.mk +-include tests/AccelerometerTest/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: cocos2dx-test + +# Tool invocations +cocos2dx-test: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' + g++ -L"/home/laschweinski/git/cocos2d-x/lib/linux/Release" -o "cocos2dx-test" $(OBJS) $(USER_OBJS) $(LIBS) -Wl,-rpath,../../lib/linux/Release/ + @echo 'Finished building target: $@' + @echo ' ' + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) cocos2dx-test + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets diff --git a/tests/test.linux/Release/objects.mk b/tests/test.linux/Release/objects.mk new file mode 100644 index 0000000000..7af265cf4e --- /dev/null +++ b/tests/test.linux/Release/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := /home/laschweinski/git/cocos2d-x/Box2D/lib/linux/libBox2D.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libcurl.a /home/laschweinski/git/cocos2d-x/chipmunk/lib/linux/libchipmunk.a + +LIBS := -lcocos2d -lrt -lz -lcocosdenshion + diff --git a/tests/test.linux/Release/sources.mk b/tests/test.linux/Release/sources.mk new file mode 100644 index 0000000000..1bce9f782e --- /dev/null +++ b/tests/test.linux/Release/sources.mk @@ -0,0 +1,68 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +CPP_DEPS := +EXECUTABLES := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +tests \ +tests/ZwoptexTest \ +tests/UserDefaultTest \ +tests/TransitionsTest \ +tests/TouchesTest \ +tests/TileMapTest \ +tests/Texture2dTest \ +tests/TextInputTest \ +tests/SpriteTest \ +tests/SchedulerTest \ +tests/SceneTest \ +tests/RotateWorldTest \ +tests/RenderTextureTest \ +tests/ProgressActionsTest \ +tests/ParallaxTest \ +tests/MotionStreakTest \ +tests/MenuTest \ +tests/LayerTest \ +tests/LabelTest \ +tests/KeypadTest \ +tests/IntervalTest \ +tests/HiResTest \ +tests/FontTest \ +tests/EffectsTest \ +tests/EffectsAdvancedTest \ +tests/EaseActionsTest \ +tests/DrawPrimitivesTest \ +tests/DirectorTest \ +tests/CurrentLanguageTest \ +tests/CurlTest \ +tests/CocosNodeTest \ +tests/CocosDenshionTest \ +tests/ClickAndMoveTest \ +tests/ChipmunkTest \ +tests/BugsTest \ +tests/BugsTest/Bug-458 \ +tests/Box2DTestBed \ +tests/Box2DTest \ +tests/ActionsTest \ +tests/ActionManagerTest \ +tests/AccelerometerTest \ +. \ + diff --git a/tests/test.linux/Release/subdir.mk b/tests/test.linux/Release/subdir.mk new file mode 100644 index 0000000000..d474f50a66 --- /dev/null +++ b/tests/test.linux/Release/subdir.mk @@ -0,0 +1,34 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/AppDelegate.cpp \ +../main.cpp + +OBJS += \ +./AppDelegate.o \ +./main.o + +CPP_DEPS += \ +./AppDelegate.d \ +./main.d + + +# Each subdirectory must supply rules for building sources it contributes +AppDelegate.o: /home/laschweinski/git/cocos2d-x/tests/AppDelegate.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +%.o: ../%.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/AccelerometerTest/subdir.mk b/tests/test.linux/Release/tests/AccelerometerTest/subdir.mk new file mode 100644 index 0000000000..c730407619 --- /dev/null +++ b/tests/test.linux/Release/tests/AccelerometerTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/AccelerometerTest/AccelerometerTest.cpp + +OBJS += \ +./tests/AccelerometerTest/AccelerometerTest.o + +CPP_DEPS += \ +./tests/AccelerometerTest/AccelerometerTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/AccelerometerTest/AccelerometerTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/AccelerometerTest/AccelerometerTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/ActionManagerTest/subdir.mk b/tests/test.linux/Release/tests/ActionManagerTest/subdir.mk new file mode 100644 index 0000000000..d29ec1eb73 --- /dev/null +++ b/tests/test.linux/Release/tests/ActionManagerTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ActionManagerTest/ActionManagerTest.cpp + +OBJS += \ +./tests/ActionManagerTest/ActionManagerTest.o + +CPP_DEPS += \ +./tests/ActionManagerTest/ActionManagerTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ActionManagerTest/ActionManagerTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ActionManagerTest/ActionManagerTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/ActionsTest/subdir.mk b/tests/test.linux/Release/tests/ActionsTest/subdir.mk new file mode 100644 index 0000000000..30c811e479 --- /dev/null +++ b/tests/test.linux/Release/tests/ActionsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ActionsTest/ActionsTest.cpp + +OBJS += \ +./tests/ActionsTest/ActionsTest.o + +CPP_DEPS += \ +./tests/ActionsTest/ActionsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ActionsTest/ActionsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ActionsTest/ActionsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/Box2DTest/subdir.mk b/tests/test.linux/Release/tests/Box2DTest/subdir.mk new file mode 100644 index 0000000000..d0dfa47c0a --- /dev/null +++ b/tests/test.linux/Release/tests/Box2DTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTest/Box2dTest.cpp + +OBJS += \ +./tests/Box2DTest/Box2dTest.o + +CPP_DEPS += \ +./tests/Box2DTest/Box2dTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/Box2DTest/Box2dTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTest/Box2dTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/Box2DTestBed/subdir.mk b/tests/test.linux/Release/tests/Box2DTestBed/subdir.mk new file mode 100644 index 0000000000..e2ea5a351d --- /dev/null +++ b/tests/test.linux/Release/tests/Box2DTestBed/subdir.mk @@ -0,0 +1,54 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/Box2dView.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/GLES-Render.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/Test.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/TestEntries.cpp + +OBJS += \ +./tests/Box2DTestBed/Box2dView.o \ +./tests/Box2DTestBed/GLES-Render.o \ +./tests/Box2DTestBed/Test.o \ +./tests/Box2DTestBed/TestEntries.o + +CPP_DEPS += \ +./tests/Box2DTestBed/Box2dView.d \ +./tests/Box2DTestBed/GLES-Render.d \ +./tests/Box2DTestBed/Test.d \ +./tests/Box2DTestBed/TestEntries.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/Box2DTestBed/Box2dView.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/Box2dView.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/Box2DTestBed/GLES-Render.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/GLES-Render.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/Box2DTestBed/Test.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/Test.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/Box2DTestBed/TestEntries.o: /home/laschweinski/git/cocos2d-x/tests/tests/Box2DTestBed/TestEntries.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/BugsTest/Bug-458/subdir.mk b/tests/test.linux/Release/tests/BugsTest/Bug-458/subdir.mk new file mode 100644 index 0000000000..20bfd0cbf1 --- /dev/null +++ b/tests/test.linux/Release/tests/BugsTest/Bug-458/subdir.mk @@ -0,0 +1,34 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-458/Bug-458.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-458/QuestionContainerSprite.cpp + +OBJS += \ +./tests/BugsTest/Bug-458/Bug-458.o \ +./tests/BugsTest/Bug-458/QuestionContainerSprite.o + +CPP_DEPS += \ +./tests/BugsTest/Bug-458/Bug-458.d \ +./tests/BugsTest/Bug-458/QuestionContainerSprite.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/BugsTest/Bug-458/Bug-458.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-458/Bug-458.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-458/QuestionContainerSprite.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-458/QuestionContainerSprite.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/BugsTest/subdir.mk b/tests/test.linux/Release/tests/BugsTest/subdir.mk new file mode 100644 index 0000000000..ebb332bfcc --- /dev/null +++ b/tests/test.linux/Release/tests/BugsTest/subdir.mk @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-1159.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-1174.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-350.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-422.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-624.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-886.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-899.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-914.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/BugsTest.cpp + +OBJS += \ +./tests/BugsTest/Bug-1159.o \ +./tests/BugsTest/Bug-1174.o \ +./tests/BugsTest/Bug-350.o \ +./tests/BugsTest/Bug-422.o \ +./tests/BugsTest/Bug-624.o \ +./tests/BugsTest/Bug-886.o \ +./tests/BugsTest/Bug-899.o \ +./tests/BugsTest/Bug-914.o \ +./tests/BugsTest/BugsTest.o + +CPP_DEPS += \ +./tests/BugsTest/Bug-1159.d \ +./tests/BugsTest/Bug-1174.d \ +./tests/BugsTest/Bug-350.d \ +./tests/BugsTest/Bug-422.d \ +./tests/BugsTest/Bug-624.d \ +./tests/BugsTest/Bug-886.d \ +./tests/BugsTest/Bug-899.d \ +./tests/BugsTest/Bug-914.d \ +./tests/BugsTest/BugsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/BugsTest/Bug-1159.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-1159.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-1174.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-1174.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-350.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-350.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-422.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-422.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-624.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-624.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-886.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-886.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-899.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-899.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/Bug-914.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/Bug-914.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/BugsTest/BugsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/BugsTest/BugsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/ChipmunkTest/subdir.mk b/tests/test.linux/Release/tests/ChipmunkTest/subdir.mk new file mode 100644 index 0000000000..cf1ea89a6e --- /dev/null +++ b/tests/test.linux/Release/tests/ChipmunkTest/subdir.mk @@ -0,0 +1,224 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Bounce.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Joints.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/LogoSmash.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/MagnetsElectric.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/OneWay.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Planet.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Player.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Plink.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Pump.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/PyramidStack.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/PyramidTopple.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Query.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Sensors.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Simple.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Springies.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Tank.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/TheoJansen.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Tumble.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/UnsafeOps.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/cocos2dChipmunkDemo.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/drawSpace.cpp + +OBJS += \ +./tests/ChipmunkTest/Bounce.o \ +./tests/ChipmunkTest/Joints.o \ +./tests/ChipmunkTest/LogoSmash.o \ +./tests/ChipmunkTest/MagnetsElectric.o \ +./tests/ChipmunkTest/OneWay.o \ +./tests/ChipmunkTest/Planet.o \ +./tests/ChipmunkTest/Player.o \ +./tests/ChipmunkTest/Plink.o \ +./tests/ChipmunkTest/Pump.o \ +./tests/ChipmunkTest/PyramidStack.o \ +./tests/ChipmunkTest/PyramidTopple.o \ +./tests/ChipmunkTest/Query.o \ +./tests/ChipmunkTest/Sensors.o \ +./tests/ChipmunkTest/Simple.o \ +./tests/ChipmunkTest/Springies.o \ +./tests/ChipmunkTest/Tank.o \ +./tests/ChipmunkTest/TheoJansen.o \ +./tests/ChipmunkTest/Tumble.o \ +./tests/ChipmunkTest/UnsafeOps.o \ +./tests/ChipmunkTest/cocos2dChipmunkDemo.o \ +./tests/ChipmunkTest/drawSpace.o + +CPP_DEPS += \ +./tests/ChipmunkTest/Bounce.d \ +./tests/ChipmunkTest/Joints.d \ +./tests/ChipmunkTest/LogoSmash.d \ +./tests/ChipmunkTest/MagnetsElectric.d \ +./tests/ChipmunkTest/OneWay.d \ +./tests/ChipmunkTest/Planet.d \ +./tests/ChipmunkTest/Player.d \ +./tests/ChipmunkTest/Plink.d \ +./tests/ChipmunkTest/Pump.d \ +./tests/ChipmunkTest/PyramidStack.d \ +./tests/ChipmunkTest/PyramidTopple.d \ +./tests/ChipmunkTest/Query.d \ +./tests/ChipmunkTest/Sensors.d \ +./tests/ChipmunkTest/Simple.d \ +./tests/ChipmunkTest/Springies.d \ +./tests/ChipmunkTest/Tank.d \ +./tests/ChipmunkTest/TheoJansen.d \ +./tests/ChipmunkTest/Tumble.d \ +./tests/ChipmunkTest/UnsafeOps.d \ +./tests/ChipmunkTest/cocos2dChipmunkDemo.d \ +./tests/ChipmunkTest/drawSpace.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ChipmunkTest/Bounce.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Bounce.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Joints.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Joints.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/LogoSmash.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/LogoSmash.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/MagnetsElectric.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/MagnetsElectric.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/OneWay.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/OneWay.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Planet.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Planet.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Player.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Player.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Plink.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Plink.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Pump.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Pump.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/PyramidStack.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/PyramidStack.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/PyramidTopple.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/PyramidTopple.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Query.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Query.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Sensors.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Sensors.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Simple.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Simple.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Springies.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Springies.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Tank.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Tank.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/TheoJansen.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/TheoJansen.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/Tumble.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/Tumble.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/UnsafeOps.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/UnsafeOps.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/cocos2dChipmunkDemo.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/cocos2dChipmunkDemo.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/ChipmunkTest/drawSpace.o: /home/laschweinski/git/cocos2d-x/tests/tests/ChipmunkTest/drawSpace.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/ClickAndMoveTest/subdir.mk b/tests/test.linux/Release/tests/ClickAndMoveTest/subdir.mk new file mode 100644 index 0000000000..7e7c561630 --- /dev/null +++ b/tests/test.linux/Release/tests/ClickAndMoveTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ClickAndMoveTest/ClickAndMoveTest.cpp + +OBJS += \ +./tests/ClickAndMoveTest/ClickAndMoveTest.o + +CPP_DEPS += \ +./tests/ClickAndMoveTest/ClickAndMoveTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ClickAndMoveTest/ClickAndMoveTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ClickAndMoveTest/ClickAndMoveTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/CocosDenshionTest/subdir.mk b/tests/test.linux/Release/tests/CocosDenshionTest/subdir.mk new file mode 100644 index 0000000000..ab0b8c1428 --- /dev/null +++ b/tests/test.linux/Release/tests/CocosDenshionTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/CocosDenshionTest/CocosDenshionTest.cpp + +OBJS += \ +./tests/CocosDenshionTest/CocosDenshionTest.o + +CPP_DEPS += \ +./tests/CocosDenshionTest/CocosDenshionTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/CocosDenshionTest/CocosDenshionTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/CocosDenshionTest/CocosDenshionTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/CocosNodeTest/subdir.mk b/tests/test.linux/Release/tests/CocosNodeTest/subdir.mk new file mode 100644 index 0000000000..11ba6d7b76 --- /dev/null +++ b/tests/test.linux/Release/tests/CocosNodeTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/CocosNodeTest/CocosNodeTest.cpp + +OBJS += \ +./tests/CocosNodeTest/CocosNodeTest.o + +CPP_DEPS += \ +./tests/CocosNodeTest/CocosNodeTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/CocosNodeTest/CocosNodeTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/CocosNodeTest/CocosNodeTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/CurlTest/subdir.mk b/tests/test.linux/Release/tests/CurlTest/subdir.mk new file mode 100644 index 0000000000..8f47ed0a04 --- /dev/null +++ b/tests/test.linux/Release/tests/CurlTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/CurlTest/CurlTest.cpp + +OBJS += \ +./tests/CurlTest/CurlTest.o + +CPP_DEPS += \ +./tests/CurlTest/CurlTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/CurlTest/CurlTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/CurlTest/CurlTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/CurrentLanguageTest/subdir.mk b/tests/test.linux/Release/tests/CurrentLanguageTest/subdir.mk new file mode 100644 index 0000000000..e16e27c510 --- /dev/null +++ b/tests/test.linux/Release/tests/CurrentLanguageTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/CurrentLanguageTest/CurrentLanguageTest.cpp + +OBJS += \ +./tests/CurrentLanguageTest/CurrentLanguageTest.o + +CPP_DEPS += \ +./tests/CurrentLanguageTest/CurrentLanguageTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/CurrentLanguageTest/CurrentLanguageTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/CurrentLanguageTest/CurrentLanguageTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/DirectorTest/subdir.mk b/tests/test.linux/Release/tests/DirectorTest/subdir.mk new file mode 100644 index 0000000000..2a457c68e6 --- /dev/null +++ b/tests/test.linux/Release/tests/DirectorTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/DirectorTest/DirectorTest.cpp + +OBJS += \ +./tests/DirectorTest/DirectorTest.o + +CPP_DEPS += \ +./tests/DirectorTest/DirectorTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/DirectorTest/DirectorTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/DirectorTest/DirectorTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/DrawPrimitivesTest/subdir.mk b/tests/test.linux/Release/tests/DrawPrimitivesTest/subdir.mk new file mode 100644 index 0000000000..53d9f0a35f --- /dev/null +++ b/tests/test.linux/Release/tests/DrawPrimitivesTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/DrawPrimitivesTest/DrawPrimitivesTest.cpp + +OBJS += \ +./tests/DrawPrimitivesTest/DrawPrimitivesTest.o + +CPP_DEPS += \ +./tests/DrawPrimitivesTest/DrawPrimitivesTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/DrawPrimitivesTest/DrawPrimitivesTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/DrawPrimitivesTest/DrawPrimitivesTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/EaseActionsTest/subdir.mk b/tests/test.linux/Release/tests/EaseActionsTest/subdir.mk new file mode 100644 index 0000000000..1c0faafa12 --- /dev/null +++ b/tests/test.linux/Release/tests/EaseActionsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/EaseActionsTest/EaseActionsTest.cpp + +OBJS += \ +./tests/EaseActionsTest/EaseActionsTest.o + +CPP_DEPS += \ +./tests/EaseActionsTest/EaseActionsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/EaseActionsTest/EaseActionsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/EaseActionsTest/EaseActionsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/EffectsAdvancedTest/subdir.mk b/tests/test.linux/Release/tests/EffectsAdvancedTest/subdir.mk new file mode 100644 index 0000000000..6cbcb73fe6 --- /dev/null +++ b/tests/test.linux/Release/tests/EffectsAdvancedTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/EffectsAdvancedTest/EffectsAdvancedTest.cpp + +OBJS += \ +./tests/EffectsAdvancedTest/EffectsAdvancedTest.o + +CPP_DEPS += \ +./tests/EffectsAdvancedTest/EffectsAdvancedTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/EffectsAdvancedTest/EffectsAdvancedTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/EffectsAdvancedTest/EffectsAdvancedTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/EffectsTest/subdir.mk b/tests/test.linux/Release/tests/EffectsTest/subdir.mk new file mode 100644 index 0000000000..5f238fb0e8 --- /dev/null +++ b/tests/test.linux/Release/tests/EffectsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/EffectsTest/EffectsTest.cpp + +OBJS += \ +./tests/EffectsTest/EffectsTest.o + +CPP_DEPS += \ +./tests/EffectsTest/EffectsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/EffectsTest/EffectsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/EffectsTest/EffectsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/FontTest/subdir.mk b/tests/test.linux/Release/tests/FontTest/subdir.mk new file mode 100644 index 0000000000..65b2bf79f4 --- /dev/null +++ b/tests/test.linux/Release/tests/FontTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/FontTest/FontTest.cpp + +OBJS += \ +./tests/FontTest/FontTest.o + +CPP_DEPS += \ +./tests/FontTest/FontTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/FontTest/FontTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/FontTest/FontTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/HiResTest/subdir.mk b/tests/test.linux/Release/tests/HiResTest/subdir.mk new file mode 100644 index 0000000000..b620ee83c5 --- /dev/null +++ b/tests/test.linux/Release/tests/HiResTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/HiResTest/HiResTest.cpp + +OBJS += \ +./tests/HiResTest/HiResTest.o + +CPP_DEPS += \ +./tests/HiResTest/HiResTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/HiResTest/HiResTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/HiResTest/HiResTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/IntervalTest/subdir.mk b/tests/test.linux/Release/tests/IntervalTest/subdir.mk new file mode 100644 index 0000000000..e65a0f4840 --- /dev/null +++ b/tests/test.linux/Release/tests/IntervalTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/IntervalTest/IntervalTest.cpp + +OBJS += \ +./tests/IntervalTest/IntervalTest.o + +CPP_DEPS += \ +./tests/IntervalTest/IntervalTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/IntervalTest/IntervalTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/IntervalTest/IntervalTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/KeypadTest/subdir.mk b/tests/test.linux/Release/tests/KeypadTest/subdir.mk new file mode 100644 index 0000000000..9a6464d183 --- /dev/null +++ b/tests/test.linux/Release/tests/KeypadTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/KeypadTest/KeypadTest.cpp + +OBJS += \ +./tests/KeypadTest/KeypadTest.o + +CPP_DEPS += \ +./tests/KeypadTest/KeypadTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/KeypadTest/KeypadTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/KeypadTest/KeypadTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/LabelTest/subdir.mk b/tests/test.linux/Release/tests/LabelTest/subdir.mk new file mode 100644 index 0000000000..5236ac4557 --- /dev/null +++ b/tests/test.linux/Release/tests/LabelTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/LabelTest/LabelTest.cpp + +OBJS += \ +./tests/LabelTest/LabelTest.o + +CPP_DEPS += \ +./tests/LabelTest/LabelTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/LabelTest/LabelTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/LabelTest/LabelTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/LayerTest/subdir.mk b/tests/test.linux/Release/tests/LayerTest/subdir.mk new file mode 100644 index 0000000000..8460b38434 --- /dev/null +++ b/tests/test.linux/Release/tests/LayerTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/LayerTest/LayerTest.cpp + +OBJS += \ +./tests/LayerTest/LayerTest.o + +CPP_DEPS += \ +./tests/LayerTest/LayerTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/LayerTest/LayerTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/LayerTest/LayerTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/MenuTest/subdir.mk b/tests/test.linux/Release/tests/MenuTest/subdir.mk new file mode 100644 index 0000000000..16a6e464c8 --- /dev/null +++ b/tests/test.linux/Release/tests/MenuTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/MenuTest/MenuTest.cpp + +OBJS += \ +./tests/MenuTest/MenuTest.o + +CPP_DEPS += \ +./tests/MenuTest/MenuTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/MenuTest/MenuTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/MenuTest/MenuTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/MotionStreakTest/subdir.mk b/tests/test.linux/Release/tests/MotionStreakTest/subdir.mk new file mode 100644 index 0000000000..f85a08a0c3 --- /dev/null +++ b/tests/test.linux/Release/tests/MotionStreakTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/MotionStreakTest/MotionStreakTest.cpp + +OBJS += \ +./tests/MotionStreakTest/MotionStreakTest.o + +CPP_DEPS += \ +./tests/MotionStreakTest/MotionStreakTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/MotionStreakTest/MotionStreakTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/MotionStreakTest/MotionStreakTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/ParallaxTest/subdir.mk b/tests/test.linux/Release/tests/ParallaxTest/subdir.mk new file mode 100644 index 0000000000..0a54abbb6a --- /dev/null +++ b/tests/test.linux/Release/tests/ParallaxTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ParallaxTest/ParallaxTest.cpp + +OBJS += \ +./tests/ParallaxTest/ParallaxTest.o + +CPP_DEPS += \ +./tests/ParallaxTest/ParallaxTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ParallaxTest/ParallaxTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ParallaxTest/ParallaxTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/ParticleTest/subdir.mk b/tests/test.linux/Release/tests/ParticleTest/subdir.mk new file mode 100644 index 0000000000..6ee2f5fae3 --- /dev/null +++ b/tests/test.linux/Release/tests/ParticleTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ParticleTest/ParticleTest.cpp + +OBJS += \ +./tests/ParticleTest/ParticleTest.o + +CPP_DEPS += \ +./tests/ParticleTest/ParticleTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ParticleTest/ParticleTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ParticleTest/ParticleTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/PerformanceTest/subdir.mk b/tests/test.linux/Release/tests/PerformanceTest/subdir.mk new file mode 100644 index 0000000000..17c0d075c2 --- /dev/null +++ b/tests/test.linux/Release/tests/PerformanceTest/subdir.mk @@ -0,0 +1,74 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceNodeChildrenTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceParticleTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceSpriteTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTextureTest.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTouchesTest.cpp + +OBJS += \ +./tests/PerformanceTest/PerformanceNodeChildrenTest.o \ +./tests/PerformanceTest/PerformanceParticleTest.o \ +./tests/PerformanceTest/PerformanceSpriteTest.o \ +./tests/PerformanceTest/PerformanceTest.o \ +./tests/PerformanceTest/PerformanceTextureTest.o \ +./tests/PerformanceTest/PerformanceTouchesTest.o + +CPP_DEPS += \ +./tests/PerformanceTest/PerformanceNodeChildrenTest.d \ +./tests/PerformanceTest/PerformanceParticleTest.d \ +./tests/PerformanceTest/PerformanceSpriteTest.d \ +./tests/PerformanceTest/PerformanceTest.d \ +./tests/PerformanceTest/PerformanceTextureTest.d \ +./tests/PerformanceTest/PerformanceTouchesTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/PerformanceTest/PerformanceNodeChildrenTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceNodeChildrenTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceParticleTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceParticleTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceSpriteTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceSpriteTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceTextureTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTextureTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/PerformanceTest/PerformanceTouchesTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/PerformanceTest/PerformanceTouchesTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I/usr/include/cocos2dx -I/usr/include/cocos2dx/platform -I/usr/include/cocos2dx/include -I"/home/laschweinski/git/cocos2d-x/tests" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/ProgressActionsTest/subdir.mk b/tests/test.linux/Release/tests/ProgressActionsTest/subdir.mk new file mode 100644 index 0000000000..0d3ebf5530 --- /dev/null +++ b/tests/test.linux/Release/tests/ProgressActionsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ProgressActionsTest/ProgressActionsTest.cpp + +OBJS += \ +./tests/ProgressActionsTest/ProgressActionsTest.o + +CPP_DEPS += \ +./tests/ProgressActionsTest/ProgressActionsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ProgressActionsTest/ProgressActionsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ProgressActionsTest/ProgressActionsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/RenderTextureTest/subdir.mk b/tests/test.linux/Release/tests/RenderTextureTest/subdir.mk new file mode 100644 index 0000000000..fe5d4fc579 --- /dev/null +++ b/tests/test.linux/Release/tests/RenderTextureTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/RenderTextureTest/RenderTextureTest.cpp + +OBJS += \ +./tests/RenderTextureTest/RenderTextureTest.o + +CPP_DEPS += \ +./tests/RenderTextureTest/RenderTextureTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/RenderTextureTest/RenderTextureTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/RenderTextureTest/RenderTextureTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/RotateWorldTest/subdir.mk b/tests/test.linux/Release/tests/RotateWorldTest/subdir.mk new file mode 100644 index 0000000000..7cb84fdbdc --- /dev/null +++ b/tests/test.linux/Release/tests/RotateWorldTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/RotateWorldTest/RotateWorldTest.cpp + +OBJS += \ +./tests/RotateWorldTest/RotateWorldTest.o + +CPP_DEPS += \ +./tests/RotateWorldTest/RotateWorldTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/RotateWorldTest/RotateWorldTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/RotateWorldTest/RotateWorldTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/SceneTest/subdir.mk b/tests/test.linux/Release/tests/SceneTest/subdir.mk new file mode 100644 index 0000000000..a409a9a8d4 --- /dev/null +++ b/tests/test.linux/Release/tests/SceneTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/SceneTest/SceneTest.cpp + +OBJS += \ +./tests/SceneTest/SceneTest.o + +CPP_DEPS += \ +./tests/SceneTest/SceneTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/SceneTest/SceneTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/SceneTest/SceneTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/SchedulerTest/subdir.mk b/tests/test.linux/Release/tests/SchedulerTest/subdir.mk new file mode 100644 index 0000000000..5f812e7751 --- /dev/null +++ b/tests/test.linux/Release/tests/SchedulerTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/SchedulerTest/SchedulerTest.cpp + +OBJS += \ +./tests/SchedulerTest/SchedulerTest.o + +CPP_DEPS += \ +./tests/SchedulerTest/SchedulerTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/SchedulerTest/SchedulerTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/SchedulerTest/SchedulerTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/SpriteTest/subdir.mk b/tests/test.linux/Release/tests/SpriteTest/subdir.mk new file mode 100644 index 0000000000..28d961781b --- /dev/null +++ b/tests/test.linux/Release/tests/SpriteTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/SpriteTest/SpriteTest.cpp + +OBJS += \ +./tests/SpriteTest/SpriteTest.o + +CPP_DEPS += \ +./tests/SpriteTest/SpriteTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/SpriteTest/SpriteTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/SpriteTest/SpriteTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/TextInputTest/subdir.mk b/tests/test.linux/Release/tests/TextInputTest/subdir.mk new file mode 100644 index 0000000000..d1f50c6171 --- /dev/null +++ b/tests/test.linux/Release/tests/TextInputTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/TextInputTest/TextInputTest.cpp + +OBJS += \ +./tests/TextInputTest/TextInputTest.o + +CPP_DEPS += \ +./tests/TextInputTest/TextInputTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/TextInputTest/TextInputTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/TextInputTest/TextInputTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/Texture2dTest/subdir.mk b/tests/test.linux/Release/tests/Texture2dTest/subdir.mk new file mode 100644 index 0000000000..37e02619e3 --- /dev/null +++ b/tests/test.linux/Release/tests/Texture2dTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/Texture2dTest/Texture2dTest.cpp + +OBJS += \ +./tests/Texture2dTest/Texture2dTest.o + +CPP_DEPS += \ +./tests/Texture2dTest/Texture2dTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/Texture2dTest/Texture2dTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/Texture2dTest/Texture2dTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/TileMapTest/subdir.mk b/tests/test.linux/Release/tests/TileMapTest/subdir.mk new file mode 100644 index 0000000000..28f2157fa5 --- /dev/null +++ b/tests/test.linux/Release/tests/TileMapTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/TileMapTest/TileMapTest.cpp + +OBJS += \ +./tests/TileMapTest/TileMapTest.o + +CPP_DEPS += \ +./tests/TileMapTest/TileMapTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/TileMapTest/TileMapTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/TileMapTest/TileMapTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/TouchesTest/subdir.mk b/tests/test.linux/Release/tests/TouchesTest/subdir.mk new file mode 100644 index 0000000000..f3b73c284c --- /dev/null +++ b/tests/test.linux/Release/tests/TouchesTest/subdir.mk @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/Ball.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/Paddle.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/TouchesTest.cpp + +OBJS += \ +./tests/TouchesTest/Ball.o \ +./tests/TouchesTest/Paddle.o \ +./tests/TouchesTest/TouchesTest.o + +CPP_DEPS += \ +./tests/TouchesTest/Ball.d \ +./tests/TouchesTest/Paddle.d \ +./tests/TouchesTest/TouchesTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/TouchesTest/Ball.o: /home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/Ball.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/TouchesTest/Paddle.o: /home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/Paddle.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/TouchesTest/TouchesTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/TouchesTest/TouchesTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/TransitionsTest/subdir.mk b/tests/test.linux/Release/tests/TransitionsTest/subdir.mk new file mode 100644 index 0000000000..a7a1722d5d --- /dev/null +++ b/tests/test.linux/Release/tests/TransitionsTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/TransitionsTest/TransitionsTest.cpp + +OBJS += \ +./tests/TransitionsTest/TransitionsTest.o + +CPP_DEPS += \ +./tests/TransitionsTest/TransitionsTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/TransitionsTest/TransitionsTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/TransitionsTest/TransitionsTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/UserDefaultTest/subdir.mk b/tests/test.linux/Release/tests/UserDefaultTest/subdir.mk new file mode 100644 index 0000000000..f1c4f8b740 --- /dev/null +++ b/tests/test.linux/Release/tests/UserDefaultTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/UserDefaultTest/UserDefaultTest.cpp + +OBJS += \ +./tests/UserDefaultTest/UserDefaultTest.o + +CPP_DEPS += \ +./tests/UserDefaultTest/UserDefaultTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/UserDefaultTest/UserDefaultTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/UserDefaultTest/UserDefaultTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/ZwoptexTest/subdir.mk b/tests/test.linux/Release/tests/ZwoptexTest/subdir.mk new file mode 100644 index 0000000000..aa5ec5f523 --- /dev/null +++ b/tests/test.linux/Release/tests/ZwoptexTest/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/ZwoptexTest/ZwoptexTest.cpp + +OBJS += \ +./tests/ZwoptexTest/ZwoptexTest.o + +CPP_DEPS += \ +./tests/ZwoptexTest/ZwoptexTest.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/ZwoptexTest/ZwoptexTest.o: /home/laschweinski/git/cocos2d-x/tests/tests/ZwoptexTest/ZwoptexTest.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/tests/test.linux/Release/tests/subdir.mk b/tests/test.linux/Release/tests/subdir.mk new file mode 100644 index 0000000000..d529292ed5 --- /dev/null +++ b/tests/test.linux/Release/tests/subdir.mk @@ -0,0 +1,34 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +/home/laschweinski/git/cocos2d-x/tests/tests/controller.cpp \ +/home/laschweinski/git/cocos2d-x/tests/tests/testBasic.cpp + +OBJS += \ +./tests/controller.o \ +./tests/testBasic.o + +CPP_DEPS += \ +./tests/controller.d \ +./tests/testBasic.d + + +# Each subdirectory must supply rules for building sources it contributes +tests/controller.o: /home/laschweinski/git/cocos2d-x/tests/tests/controller.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + +tests/testBasic.o: /home/laschweinski/git/cocos2d-x/tests/tests/testBasic.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' + g++ -DLINUX -I../../ -I../../../cocos2dx/platform/third_party/linux -I../../../cocos2dx/include -I../../../cocos2dx -I../../../cocos2dx/platform -I../../../CocosDenshion/include -I../../..//chipmunk/include/chipmunk -I../../../Box2D -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + From b0660dd578c4908b9c658fe689a779effddfdd4f Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Mon, 29 Aug 2011 10:28:00 +0800 Subject: [PATCH 24/31] update eclipse project file --- installLinuxLib.sh | 22 +++------------------- tests/test.linux/.cproject | 4 ++-- 2 files changed, 5 insertions(+), 21 deletions(-) diff --git a/installLinuxLib.sh b/installLinuxLib.sh index d42ef0e3e0..5afecff62e 100755 --- a/installLinuxLib.sh +++ b/installLinuxLib.sh @@ -1,20 +1,4 @@ #!/bin/bash -linuxLibFolder="Release" -if [ "$1" = "Debug" ];then - echo "debug" - linuxLibFolder="Debug" -fi -cp lib/linux/$linuxLibFolder/libcocos*.so /usr/lib/ -if [ -d "/usr/include/cocos2dx" ];then - echo "exist" -else - echo "build cocos2dx folder" - mkdir /usr/include/cocos2dx -fi - -if [ "$2" = "move" ];then -cp cocos2dx/*.h /usr/include/cocos2dx/ -cp -rf cocos2dx/include /usr/include/cocos2dx/ -cp -f cocos2dx/platform/*.h /usr/include/cocos2dx/platform -cp -f cocos2dx/platform/Linux/*.h /usr/include/cocos2dx/platform/Linux/ -fi +#just copy all fmod lib into /usr/lib +#run it in root mode +cp CocosDenshion/third_party/fmod/api/lib/* /usr/lib diff --git a/tests/test.linux/.cproject b/tests/test.linux/.cproject index ea917a9e7c..2f3ed751e4 100644 --- a/tests/test.linux/.cproject +++ b/tests/test.linux/.cproject @@ -33,7 +33,7 @@ <listOptionValue builtIn="false" value="../../../cocos2dx/platform"/> <listOptionValue builtIn="false" value="../../../CocosDenshion/include"/> <listOptionValue builtIn="false" value="../../..//chipmunk/include/chipmunk"/> - <listOptionValue builtIn="false" value="../../../Box2D"/> + <listOptionValue builtIn="false" value="../../../"/> </option> <option id="gnu.cpp.compiler.option.preprocessor.def.331369055" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> <listOptionValue builtIn="false" value="LINUX"/> @@ -121,7 +121,7 @@ <listOptionValue builtIn="false" value="../../../cocos2dx/platform"/> <listOptionValue builtIn="false" value="../../../CocosDenshion/include"/> <listOptionValue builtIn="false" value="../../..//chipmunk/include/chipmunk"/> - <listOptionValue builtIn="false" value="../../../Box2D"/> + <listOptionValue builtIn="false" value="../../../"/> </option> <option id="gnu.cpp.compiler.option.preprocessor.def.2022262883" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> <listOptionValue builtIn="false" value="LINUX"/> From 717698bf655b9c9e181c7bdee2d307bf357684e7 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Mon, 5 Sep 2011 10:12:14 +0800 Subject: [PATCH 25/31] fix some compiling mistake --- cocos2dx/actions/CCActionInstant.cpp | 1272 ++++++++--------- .../platform/Linux/CCAccelerometer_linux.h | 1 + 2 files changed, 587 insertions(+), 686 deletions(-) diff --git a/cocos2dx/actions/CCActionInstant.cpp b/cocos2dx/actions/CCActionInstant.cpp index 827df935e1..a4c690e0b1 100644 --- a/cocos2dx/actions/CCActionInstant.cpp +++ b/cocos2dx/actions/CCActionInstant.cpp @@ -1,28 +1,28 @@ /**************************************************************************** -Copyright (c) 2010-2011 cocos2d-x.org -Copyright (c) 2008-2010 Ricardo Quesada -Copyright (c) 2011 Zynga Inc. + Copyright (c) 2010-2011 cocos2d-x.org + Copyright (c) 2008-2010 Ricardo Quesada + Copyright (c) 2011 Zynga Inc. -http://www.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: + 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 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. -****************************************************************************/ + 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 "CCActionInstant.h" #include "CCNode.h" @@ -30,670 +30,570 @@ THE SOFTWARE. #include "CCScriptSupport.h" namespace cocos2d { - // - // InstantAction - // - CCActionInstant::CCActionInstant() - {} - - CCObject * CCActionInstant::copyWithZone(CCZone *pZone) - { - CCZone *pNewZone = NULL; - CCActionInstant *pRet = NULL; - - if (pZone && pZone->m_pCopyObject) - { - pRet = (CCActionInstant*)(pZone->m_pCopyObject); - } - else - { - pRet = new CCActionInstant(); - pZone = pNewZone = new CCZone(pRet); - } - - CCFiniteTimeAction::copyWithZone(pZone); - CC_SAFE_DELETE(pNewZone); - return pRet; - } - - bool CCActionInstant::isDone() - { - return true; - } - - void CCActionInstant::step(ccTime dt) - { - CC_UNUSED_PARAM(dt); - update(1); - } - - void CCActionInstant::update(ccTime time) - { - CC_UNUSED_PARAM(time); - // ignore - } - - CCFiniteTimeAction * CCActionInstant::reverse() - { - return (CCFiniteTimeAction*)(copy()->autorelease()); - } - - // - // Show - // - CCShow* CCShow::action() - { - CCShow* pRet = new CCShow(); - - if (pRet) - { - pRet->autorelease(); - } - - return pRet; - } - - void CCShow::startWithTarget(CCNode *pTarget) - { - CCActionInstant::startWithTarget(pTarget); - pTarget->setIsVisible(true); - } - - CCFiniteTimeAction* CCShow::reverse() - { - return (CCFiniteTimeAction*)(CCHide::action()); - } - - CCObject* CCShow::copyWithZone(CCZone *pZone) - { - - if (pZone && pZone->m_pCopyObject) - { - pRet = (CCShow*)(pZone->m_pCopyObject); - } - else - { - pRet = new CCShow(); - pZone = pNewZone = new CCZone(pRet); - } - - CCFiniteTimeAction::copyWithZone(pZone); - CC_SAFE_DELETE(pNewZone); - return pRet; - } - - // - // Hide - // - CCHide * CCHide::action() - { - CCHide *pRet = new CCHide(); - - if (pRet) - { - pRet->autorelease(); - } - - return pRet; - } - - void CCHide::startWithTarget(CCNode *pTarget) - { - CCActionInstant::startWithTarget(pTarget); - pTarget->setIsVisible(false); - } - - CCFiniteTimeAction *CCHide::reverse() - { - return (CCFiniteTimeAction*)(CCShow::action()); - } - - CCObject* CCHide::copyWithZone(CCZone *pZone) - { - CCZone *pNewZone = NULL; - CCHide *pRet = NULL; - - if (pZone && pZone->m_pCopyObject) - { - pRet = (CCHide*)(pZone->m_pCopyObject); - } - else - { - pRet = new CCHide(); - pZone = pNewZone = new CCZone(pRet); - } - - CCFiniteTimeAction::copyWithZone(pZone); - CC_SAFE_DELETE(pNewZone); - return pRet; - } - - // - // ToggleVisibility - // - CCToggleVisibility * CCToggleVisibility::action() - { - CCToggleVisibility *pRet = new CCToggleVisibility(); - - if (pRet) - { - pRet->autorelease(); - } - - return pRet; - } - - void CCToggleVisibility::startWithTarget(CCNode *pTarget) - { - CCActionInstant::startWithTarget(pTarget); - pTarget->setIsVisible(! pTarget->getIsVisible()); - } - - // - // FlipX - // - CCFlipX *CCFlipX::actionWithFlipX(bool x) - { - CCFlipX *pRet = new CCFlipX(); - - if (pRet && pRet->initWithFlipX(x)) - { - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet) - return NULL; - } - - bool CCFlipX::initWithFlipX(bool x) - { - m_bFlipX = x; - return true; - } - - void CCFlipX::startWithTarget(CCNode *pTarget) - { - CCActionInstant::startWithTarget(pTarget); - ((CCSprite*)(pTarget))->setFlipX(m_bFlipX); - } - - CCFiniteTimeAction* CCFlipX::reverse() - { - return CCFlipX::actionWithFlipX(!m_bFlipX); - } - - CCObject * CCFlipX::copyWithZone(CCZone *pZone) - { - CCZone *pNewZone = NULL; - CCFlipX *pRet = NULL; - - if (pZone && pZone->m_pCopyObject) - { - pRet = (CCFlipX*)(pZone->m_pCopyObject); - } - else - { - pRet = new CCFlipX(); - pZone = pNewZone = new CCZone(pRet); - } - - CCActionInstant::copyWithZone(pZone); - pRet->initWithFlipX(m_bFlipX); - CC_SAFE_DELETE(pNewZone); - return pRet; - } - - // - // FlipY - // - CCFlipY * CCFlipY::actionWithFlipY(bool y) - { - CCFlipY *pRet = new CCFlipY(); - - if (pRet &&pRet->initWithFlipY(y)) - { - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - bool CCFlipY::initWithFlipY(bool y) - { - m_bFlipY = y; - return true; - } - - void CCFlipY::startWithTarget(CCNode *pTarget) - { - CCActionInstant::startWithTarget(pTarget); - ((CCSprite*)(pTarget))->setFlipY(m_bFlipY); - } - - CCFiniteTimeAction* CCFlipY::reverse() - { - return CCFlipY::actionWithFlipY(!m_bFlipY); - } - - CCObject* CCFlipY::copyWithZone(CCZone *pZone) - { - CCZone *pNewZone = NULL; - CCFlipY *pRet = NULL; - - if (pZone && pZone->m_pCopyObject) - { - pRet = (CCFlipY*)(pZone->m_pCopyObject); - } - else - { - pRet = new CCFlipY(); - pZone = pNewZone = new CCZone(pRet); - } - - CCActionInstant::copyWithZone(pZone); - pRet->initWithFlipY(m_bFlipY); - CC_SAFE_DELETE(pNewZone); - return pRet; - } - - // - // Place - // - CCPlace* CCPlace::actionWithPosition(const CCPoint& pos) - { - CCPlace *pRet = new CCPlace(); - - if (pRet && pRet->initWithPosition(pos)) - { - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - bool CCPlace::initWithPosition(const CCPoint& pos) - { - m_tPosition = pos; - return true; - } - - CCObject * CCPlace::copyWithZone(CCZone *pZone) - { - CCZone *pNewZone = NULL; - CCPlace *pRet = NULL; - - if (pZone && pZone->m_pCopyObject) - { - pRet = (CCPlace*)(pZone->m_pCopyObject); - } - else - { - pRet = new CCPlace(); - pZone = pNewZone = new CCZone(pRet); - } - - CCActionInstant::copyWithZone(pZone); - pRet->initWithPosition(m_tPosition); - CC_SAFE_DELETE(pNewZone); - return pRet; - } - - void CCPlace::startWithTarget(CCNode *pTarget) - { - CCActionInstant::startWithTarget(pTarget); - m_pTarget->setPosition(m_tPosition); - } - - // - // CallFunc - // - - CCCallFunc * CCCallFunc::actionWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFunc selector) - { - CCCallFunc *pRet = new CCCallFunc(); - - if(pRet && pRet->initWithTarget(pSelectorTarget)) - { - pRet->m_pCallFunc = selector; - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - CCCallFunc* CCCallFunc::actionWithScriptFuncName(const char* pszFuncName) - { - CCCallFunc *pRet = new CCCallFunc(); - - if(pRet && pRet->initWithScriptFuncName(pszFuncName)) - { - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - bool CCCallFunc::initWithScriptFuncName(const char *pszFuncName) - { - this->m_scriptFuncName = string(pszFuncName); - return true; - } - - bool CCCallFunc::initWithTarget(SelectorProtocol* pSelectorTarget) - { - if (pSelectorTarget) - { - pSelectorTarget->selectorProtocolRetain(); - } - - if (m_pSelectorTarget) - { - m_pSelectorTarget->selectorProtocolRelease(); - } - - m_pSelectorTarget = pSelectorTarget; - return true; - } - - CCObject * CCCallFunc::copyWithZone(CCZone *pZone) - { - CCZone* pNewZone = NULL; - CCCallFunc* pRet = NULL; - - if(pZone && pZone->m_pCopyObject) - { - //in case of being called at sub class - pRet = (CCCallFunc*)(pZone->m_pCopyObject); - } - else - { - pRet = new CCCallFunc(); - pZone = pNewZone = new CCZone(pRet); - } - - CCActionInstant::copyWithZone(pZone); - pRet->initWithTarget(m_pSelectorTarget); - pRet->m_pCallFunc = m_pCallFunc; - pRet->m_scriptFuncName = m_scriptFuncName; - CC_SAFE_DELETE(pNewZone); - return pRet; - } - - void CCCallFunc::startWithTarget(CCNode *pTarget) - { - CCActionInstant::startWithTarget(pTarget); - this->execute(); - } - - void CCCallFunc::execute() - { - if(m_pCallFunc) - { - (m_pSelectorTarget->*m_pCallFunc)(); - } - - if (CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()) - { - CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()->executeCallFunc(m_scriptFuncName.c_str()); - } - } - - // - // CallFuncN - // - void CCCallFuncN::execute() - { - if(m_pCallFuncN) - { - (m_pSelectorTarget->*m_pCallFuncN)(m_pTarget); - } - - if (CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()) - { - CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()->executeCallFuncN(m_scriptFuncName.c_str(), - m_pTarget); - } - } - - CCCallFuncN * CCCallFuncN::actionWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFuncN selector) - { - CCCallFuncN *pRet = new CCCallFuncN(); - - if(pRet && pRet->initWithTarget(pSelectorTarget, selector)) - { - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - CCCallFuncN* CCCallFuncN::actionWithScriptFuncName(const char *pszFuncName) - { - CCCallFuncN *pRet = new CCCallFuncN(); - - if(pRet && pRet->initWithScriptFuncName(pszFuncName)) - { - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - bool CCCallFuncN::initWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFuncN selector) - { - if(CCCallFunc::initWithTarget(pSelectorTarget)) - { - m_pCallFuncN = selector; - return true; - } - - return false; - } - - CCObject * CCCallFuncN::copyWithZone(CCZone* zone) - { - CCZone* pNewZone = NULL; - CCCallFuncN* pRet = NULL; - - if(zone && zone->m_pCopyObject) - { - //in case of being called at sub class - pRet = (CCCallFuncN*)(zone->m_pCopyObject); - } - else - { - pRet = new CCCallFuncN(); - zone = pNewZone = new CCZone(pRet); - } - - CCCallFunc::copyWithZone(zone); - pRet->initWithTarget(m_pSelectorTarget, m_pCallFuncN); - CC_SAFE_DELETE(pNewZone); - return pRet; - } - - // - // CallFuncND - // - CCCallFuncND * CCCallFuncND::actionWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFuncND selector, void* d) - { - CCCallFuncND* pRet = new CCCallFuncND(); - - if (pRet && pRet->initWithTarget(pSelectorTarget, selector, d)) - { - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - CCCallFuncND* CCCallFuncND::actionWithScriptFuncName(const char* pszFuncName, void *d) - { - CCCallFuncND* pRet = new CCCallFuncND(); - - if (pRet && pRet->initWithScriptFuncName(pszFuncName)) - { - pRet->autorelease(); - pRet->m_pData = d; - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - bool CCCallFuncND::initWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFuncND selector, void* d) - { - if( CCCallFunc::initWithTarget(pSelectorTarget) ) - { - m_pData = d; - m_pCallFuncND = selector; - return true; - } - - return false; - } - - CCObject * CCCallFuncND::copyWithZone(CCZone* zone) - { - CCZone* pNewZone = NULL; - CCCallFuncND* pRet = NULL; - - if(zone && zone->m_pCopyObject) - { - //in case of being called at sub class - pRet = (CCCallFuncND*)(zone->m_pCopyObject); - } - else - { - pRet = new CCCallFuncND(); - zone = pNewZone = new CCZone(pRet); - } - - CCCallFunc::copyWithZone(zone); - pRet->initWithTarget(m_pSelectorTarget, m_pCallFuncND, m_pData); - CC_SAFE_DELETE(pNewZone); - return pRet; - } - - void CCCallFuncND::execute() - { - if(m_pCallFuncND) - { - (m_pSelectorTarget->*m_pCallFuncND)(m_pTarget, m_pData); - } - - if (CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()) - { - CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()->executeCallFuncND(m_scriptFuncName.c_str(), - m_pTarget, - m_pData); - } - } - - // - // CCCallFuncO - // - CCCallFuncO::CCCallFuncO() - : m_pObject(NULL) - { - } - - CCCallFuncO::~CCCallFuncO() - { - CC_SAFE_RELEASE(m_pObject); - } - - void CCCallFuncO::execute() - { - if(m_pCallFuncO) - { - (m_pSelectorTarget->*m_pCallFuncO)(m_pObject); - } - - if (CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()) - { - CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()->executeCallFunc0(m_scriptFuncName.c_str(), - m_pObject); - } - } - - CCCallFuncO * CCCallFuncO::actionWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFuncO selector, CCObject* pObject) - { - CCCallFuncO *pRet = new CCCallFuncO(); - - if(pRet && pRet->initWithTarget(pSelectorTarget, selector, pObject)) - { - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - CCCallFuncO* CCCallFuncO::actionWithScriptFuncName(const char *pszFuncName) - { - CCCallFuncO *pRet = new CCCallFuncO(); - - if(pRet && pRet->initWithScriptFuncName(pszFuncName)) - { - pRet->autorelease(); - return pRet; - } - - CC_SAFE_DELETE(pRet); - return NULL; - } - - bool CCCallFuncO::initWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFuncO selector, CCObject* pObject) - { - if( CCCallFunc::initWithTarget(pSelectorTarget) ) - { - m_pObject = pObject; - CC_SAFE_RETAIN(m_pObject) - - m_pCallFuncO = selector; - return true; - } - - return false; - } - - CCObject * CCCallFuncO::copyWithZone(CCZone* zone) - { - CCZone* pNewZone = NULL; - CCCallFuncO* pRet = NULL; - - if(zone && zone->m_pCopyObject) - { - //in case of being called at sub class - pRet = (CCCallFuncO*)(zone->m_pCopyObject); - } - else - { - pRet = new CCCallFuncO(); - zone = pNewZone = new CCZone(pRet); - } - - CCCallFunc::copyWithZone(zone); - pRet->initWithTarget(m_pSelectorTarget, m_pCallFuncO, m_pObject); - CC_SAFE_DELETE(pNewZone); - return pRet; - } +// +// InstantAction +// +CCActionInstant::CCActionInstant() { +} + +CCObject * CCActionInstant::copyWithZone(CCZone *pZone) { + CCZone *pNewZone = NULL; + CCActionInstant *pRet = NULL; + + if (pZone && pZone->m_pCopyObject) { + pRet = (CCActionInstant*) (pZone->m_pCopyObject); + } else { + pRet = new CCActionInstant(); + pZone = pNewZone = new CCZone(pRet); + } + + CCFiniteTimeAction::copyWithZone(pZone); + CC_SAFE_DELETE(pNewZone); + return pRet; +} + +bool CCActionInstant::isDone() { + return true; +} + +void CCActionInstant::step(ccTime dt) { + CC_UNUSED_PARAM(dt); + update(1); +} + +void CCActionInstant::update(ccTime time) { + CC_UNUSED_PARAM(time); + // ignore +} + +CCFiniteTimeAction * CCActionInstant::reverse() { + return (CCFiniteTimeAction*) (copy()->autorelease()); +} + +// +// Show +// +CCShow* CCShow::action() { + CCShow* pRet = new CCShow(); + + if (pRet) { + pRet->autorelease(); + } + + return pRet; +} + +void CCShow::startWithTarget(CCNode *pTarget) { + CCActionInstant::startWithTarget(pTarget); + pTarget->setIsVisible(true); +} + +CCFiniteTimeAction* CCShow::reverse() { + return (CCFiniteTimeAction*) (CCHide::action()); +} + +CCObject* CCShow::copyWithZone(CCZone *pZone) { + + CCZone *pNewZone = NULL; + CCShow *pRet = NULL; + if (pZone && pZone->m_pCopyObject) { + pRet = (CCShow*) (pZone->m_pCopyObject); + } else { + pRet = new CCShow(); + pZone = pNewZone = new CCZone(pRet); + } + + CCFiniteTimeAction::copyWithZone(pZone); + CC_SAFE_DELETE(pNewZone); + return pRet; +} + +// +// Hide +// +CCHide * CCHide::action() { + CCHide *pRet = new CCHide(); + + if (pRet) { + pRet->autorelease(); + } + + return pRet; +} + +void CCHide::startWithTarget(CCNode *pTarget) { + CCActionInstant::startWithTarget(pTarget); + pTarget->setIsVisible(false); +} + +CCFiniteTimeAction *CCHide::reverse() { + return (CCFiniteTimeAction*) (CCShow::action()); +} + +CCObject* CCHide::copyWithZone(CCZone *pZone) { + CCZone *pNewZone = NULL; + CCHide *pRet = NULL; + + if (pZone && pZone->m_pCopyObject) { + pRet = (CCHide*) (pZone->m_pCopyObject); + } else { + pRet = new CCHide(); + pZone = pNewZone = new CCZone(pRet); + } + + CCFiniteTimeAction::copyWithZone(pZone); + CC_SAFE_DELETE(pNewZone); + return pRet; +} + +// +// ToggleVisibility +// +CCToggleVisibility * CCToggleVisibility::action() { + CCToggleVisibility *pRet = new CCToggleVisibility(); + + if (pRet) { + pRet->autorelease(); + } + + return pRet; +} + +void CCToggleVisibility::startWithTarget(CCNode *pTarget) { + CCActionInstant::startWithTarget(pTarget); + pTarget->setIsVisible(!pTarget->getIsVisible()); +} + +// +// FlipX +// +CCFlipX *CCFlipX::actionWithFlipX(bool x) { + CCFlipX *pRet = new CCFlipX(); + + if (pRet && pRet->initWithFlipX(x)) { + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet) + return NULL; +} + +bool CCFlipX::initWithFlipX(bool x) { + m_bFlipX = x; + return true; +} + +void CCFlipX::startWithTarget(CCNode *pTarget) { + CCActionInstant::startWithTarget(pTarget); + ((CCSprite*) (pTarget))->setFlipX(m_bFlipX); +} + +CCFiniteTimeAction* CCFlipX::reverse() { + return CCFlipX::actionWithFlipX(!m_bFlipX); +} + +CCObject * CCFlipX::copyWithZone(CCZone *pZone) { + CCZone *pNewZone = NULL; + CCFlipX *pRet = NULL; + + if (pZone && pZone->m_pCopyObject) { + pRet = (CCFlipX*) (pZone->m_pCopyObject); + } else { + pRet = new CCFlipX(); + pZone = pNewZone = new CCZone(pRet); + } + + CCActionInstant::copyWithZone(pZone); + pRet->initWithFlipX(m_bFlipX); + CC_SAFE_DELETE(pNewZone); + return pRet; +} + +// +// FlipY +// +CCFlipY * CCFlipY::actionWithFlipY(bool y) { + CCFlipY *pRet = new CCFlipY(); + + if (pRet && pRet->initWithFlipY(y)) { + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +bool CCFlipY::initWithFlipY(bool y) { + m_bFlipY = y; + return true; +} + +void CCFlipY::startWithTarget(CCNode *pTarget) { + CCActionInstant::startWithTarget(pTarget); + ((CCSprite*) (pTarget))->setFlipY(m_bFlipY); +} + +CCFiniteTimeAction* CCFlipY::reverse() { + return CCFlipY::actionWithFlipY(!m_bFlipY); +} + +CCObject* CCFlipY::copyWithZone(CCZone *pZone) { + CCZone *pNewZone = NULL; + CCFlipY *pRet = NULL; + + if (pZone && pZone->m_pCopyObject) { + pRet = (CCFlipY*) (pZone->m_pCopyObject); + } else { + pRet = new CCFlipY(); + pZone = pNewZone = new CCZone(pRet); + } + + CCActionInstant::copyWithZone(pZone); + pRet->initWithFlipY(m_bFlipY); + CC_SAFE_DELETE(pNewZone); + return pRet; +} + +// +// Place +// +CCPlace* CCPlace::actionWithPosition(const CCPoint& pos) { + CCPlace *pRet = new CCPlace(); + + if (pRet && pRet->initWithPosition(pos)) { + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +bool CCPlace::initWithPosition(const CCPoint& pos) { + m_tPosition = pos; + return true; +} + +CCObject * CCPlace::copyWithZone(CCZone *pZone) { + CCZone *pNewZone = NULL; + CCPlace *pRet = NULL; + + if (pZone && pZone->m_pCopyObject) { + pRet = (CCPlace*) (pZone->m_pCopyObject); + } else { + pRet = new CCPlace(); + pZone = pNewZone = new CCZone(pRet); + } + + CCActionInstant::copyWithZone(pZone); + pRet->initWithPosition(m_tPosition); + CC_SAFE_DELETE(pNewZone); + return pRet; +} + +void CCPlace::startWithTarget(CCNode *pTarget) { + CCActionInstant::startWithTarget(pTarget); + m_pTarget->setPosition(m_tPosition); +} + +// +// CallFunc +// + +CCCallFunc * CCCallFunc::actionWithTarget(SelectorProtocol* pSelectorTarget, + SEL_CallFunc selector) { + CCCallFunc *pRet = new CCCallFunc(); + + if (pRet && pRet->initWithTarget(pSelectorTarget)) { + pRet->m_pCallFunc = selector; + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +CCCallFunc* CCCallFunc::actionWithScriptFuncName(const char* pszFuncName) { + CCCallFunc *pRet = new CCCallFunc(); + + if (pRet && pRet->initWithScriptFuncName(pszFuncName)) { + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +bool CCCallFunc::initWithScriptFuncName(const char *pszFuncName) { + this->m_scriptFuncName = string(pszFuncName); + return true; +} + +bool CCCallFunc::initWithTarget(SelectorProtocol* pSelectorTarget) { + if (pSelectorTarget) { + pSelectorTarget->selectorProtocolRetain(); + } + + if (m_pSelectorTarget) { + m_pSelectorTarget->selectorProtocolRelease(); + } + + m_pSelectorTarget = pSelectorTarget; + return true; +} + +CCObject * CCCallFunc::copyWithZone(CCZone *pZone) { + CCZone* pNewZone = NULL; + CCCallFunc* pRet = NULL; + + if (pZone && pZone->m_pCopyObject) { + //in case of being called at sub class + pRet = (CCCallFunc*) (pZone->m_pCopyObject); + } else { + pRet = new CCCallFunc(); + pZone = pNewZone = new CCZone(pRet); + } + + CCActionInstant::copyWithZone(pZone); + pRet->initWithTarget(m_pSelectorTarget); + pRet->m_pCallFunc = m_pCallFunc; + pRet->m_scriptFuncName = m_scriptFuncName; + CC_SAFE_DELETE(pNewZone); + return pRet; +} + +void CCCallFunc::startWithTarget(CCNode *pTarget) { + CCActionInstant::startWithTarget(pTarget); + this->execute(); +} + +void CCCallFunc::execute() { + if (m_pCallFunc) { + (m_pSelectorTarget->*m_pCallFunc)(); + } + + if (CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()) { + CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()->executeCallFunc( + m_scriptFuncName.c_str()); + } +} + +// +// CallFuncN +// +void CCCallFuncN::execute() { + if (m_pCallFuncN) { + (m_pSelectorTarget->*m_pCallFuncN)(m_pTarget); + } + + if (CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()) { + CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()->executeCallFuncN( + m_scriptFuncName.c_str(), m_pTarget); + } +} + +CCCallFuncN * CCCallFuncN::actionWithTarget(SelectorProtocol* pSelectorTarget, + SEL_CallFuncN selector) { + CCCallFuncN *pRet = new CCCallFuncN(); + + if (pRet && pRet->initWithTarget(pSelectorTarget, selector)) { + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +CCCallFuncN* CCCallFuncN::actionWithScriptFuncName(const char *pszFuncName) { + CCCallFuncN *pRet = new CCCallFuncN(); + + if (pRet && pRet->initWithScriptFuncName(pszFuncName)) { + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +bool CCCallFuncN::initWithTarget(SelectorProtocol* pSelectorTarget, + SEL_CallFuncN selector) { + if (CCCallFunc::initWithTarget(pSelectorTarget)) { + m_pCallFuncN = selector; + return true; + } + + return false; +} + +CCObject * CCCallFuncN::copyWithZone(CCZone* zone) { + CCZone* pNewZone = NULL; + CCCallFuncN* pRet = NULL; + + if (zone && zone->m_pCopyObject) { + //in case of being called at sub class + pRet = (CCCallFuncN*) (zone->m_pCopyObject); + } else { + pRet = new CCCallFuncN(); + zone = pNewZone = new CCZone(pRet); + } + + CCCallFunc::copyWithZone(zone); + pRet->initWithTarget(m_pSelectorTarget, m_pCallFuncN); + CC_SAFE_DELETE(pNewZone); + return pRet; +} + +// +// CallFuncND +// +CCCallFuncND * CCCallFuncND::actionWithTarget(SelectorProtocol* pSelectorTarget, + SEL_CallFuncND selector, void* d) { + CCCallFuncND* pRet = new CCCallFuncND(); + + if (pRet && pRet->initWithTarget(pSelectorTarget, selector, d)) { + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +CCCallFuncND* CCCallFuncND::actionWithScriptFuncName(const char* pszFuncName, + void *d) { + CCCallFuncND* pRet = new CCCallFuncND(); + + if (pRet && pRet->initWithScriptFuncName(pszFuncName)) { + pRet->autorelease(); + pRet->m_pData = d; + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +bool CCCallFuncND::initWithTarget(SelectorProtocol* pSelectorTarget, + SEL_CallFuncND selector, void* d) { + if (CCCallFunc::initWithTarget(pSelectorTarget)) { + m_pData = d; + m_pCallFuncND = selector; + return true; + } + + return false; +} + +CCObject * CCCallFuncND::copyWithZone(CCZone* zone) { + CCZone* pNewZone = NULL; + CCCallFuncND* pRet = NULL; + + if (zone && zone->m_pCopyObject) { + //in case of being called at sub class + pRet = (CCCallFuncND*) (zone->m_pCopyObject); + } else { + pRet = new CCCallFuncND(); + zone = pNewZone = new CCZone(pRet); + } + + CCCallFunc::copyWithZone(zone); + pRet->initWithTarget(m_pSelectorTarget, m_pCallFuncND, m_pData); + CC_SAFE_DELETE(pNewZone); + return pRet; +} + +void CCCallFuncND::execute() { + if (m_pCallFuncND) { + (m_pSelectorTarget->*m_pCallFuncND)(m_pTarget, m_pData); + } + + if (CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()) { + CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()->executeCallFuncND( + m_scriptFuncName.c_str(), m_pTarget, m_pData); + } +} + +// +// CCCallFuncO +// +CCCallFuncO::CCCallFuncO() : + m_pObject(NULL) { +} + +CCCallFuncO::~CCCallFuncO() { + CC_SAFE_RELEASE(m_pObject); +} + +void CCCallFuncO::execute() { + if (m_pCallFuncO) { + (m_pSelectorTarget->*m_pCallFuncO)(m_pObject); + } + + if (CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()) { + CCScriptEngineManager::sharedScriptEngineManager()->getScriptEngine()->executeCallFunc0( + m_scriptFuncName.c_str(), m_pObject); + } +} + +CCCallFuncO * CCCallFuncO::actionWithTarget(SelectorProtocol* pSelectorTarget, + SEL_CallFuncO selector, CCObject* pObject) { + CCCallFuncO *pRet = new CCCallFuncO(); + + if (pRet && pRet->initWithTarget(pSelectorTarget, selector, pObject)) { + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +CCCallFuncO* CCCallFuncO::actionWithScriptFuncName(const char *pszFuncName) { + CCCallFuncO *pRet = new CCCallFuncO(); + + if (pRet && pRet->initWithScriptFuncName(pszFuncName)) { + pRet->autorelease(); + return pRet; + } + + CC_SAFE_DELETE(pRet); + return NULL; +} + +bool CCCallFuncO::initWithTarget(SelectorProtocol* pSelectorTarget, + SEL_CallFuncO selector, CCObject* pObject) { + if (CCCallFunc::initWithTarget(pSelectorTarget)) { + m_pObject = pObject; + CC_SAFE_RETAIN(m_pObject) + + m_pCallFuncO = selector; + return true; + } + + return false; +} + +CCObject * CCCallFuncO::copyWithZone(CCZone* zone) { + CCZone* pNewZone = NULL; + CCCallFuncO* pRet = NULL; + + if (zone && zone->m_pCopyObject) { + //in case of being called at sub class + pRet = (CCCallFuncO*) (zone->m_pCopyObject); + } else { + pRet = new CCCallFuncO(); + zone = pNewZone = new CCZone(pRet); + } + + CCCallFunc::copyWithZone(zone); + pRet->initWithTarget(m_pSelectorTarget, m_pCallFuncO, m_pObject); + CC_SAFE_DELETE(pNewZone); + return pRet; +} } diff --git a/cocos2dx/platform/Linux/CCAccelerometer_linux.h b/cocos2dx/platform/Linux/CCAccelerometer_linux.h index d1e879f049..e0b7a41514 100644 --- a/cocos2dx/platform/Linux/CCAccelerometer_linux.h +++ b/cocos2dx/platform/Linux/CCAccelerometer_linux.h @@ -22,6 +22,7 @@ public: void removeDelegate(CCAccelerometerDelegate* pDelegate) {CC_UNUSED_PARAM(pDelegate);}; void addDelegate(CCAccelerometerDelegate* pDelegate) {CC_UNUSED_PARAM(pDelegate);}; + void setDelegate(CCAccelerometerDelegate* pDelegate) {CC_UNUSED_PARAM(pDelegate);} }; }//namespace cocos2d From 91f8ed7eb42f803569887a4c1f8173789985e119 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Mon, 5 Sep 2011 11:57:10 +0800 Subject: [PATCH 26/31] CCParticleSystemPoint now derive from CCParticleSystemQuade in linux --- cocos2dx/include/CCParticleSystemPoint.h | 15 ++++++++++++--- tests/test.linux/.cproject | 4 ++-- tests/tests/controller.cpp | 4 ++-- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/cocos2dx/include/CCParticleSystemPoint.h b/cocos2dx/include/CCParticleSystemPoint.h index a635547775..1dcaa67762 100755 --- a/cocos2dx/include/CCParticleSystemPoint.h +++ b/cocos2dx/include/CCParticleSystemPoint.h @@ -27,7 +27,10 @@ THE SOFTWARE. #define __CC_PARTICLE_SYSTEM_POINT_MOBILE_H__ /*#include "Availability.h"*/ -#include "CCParticleSystem.h" +#include "CCParticleSystem.h" +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) +#include "CCParticleSystemQuad.h" +#endif namespace cocos2d { @@ -44,7 +47,12 @@ Features: Limitations: * On 3rd gen iPhone devices and iPads, this node performs MUCH slower than CCParticleSystemQuad. -*/ +*/ +#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) +class CC_DLL CCParticleSystemPoint : public CCParticleSystemQuad{ + //nothing to do +}; +#else class CC_DLL CCParticleSystemPoint : public CCParticleSystem { public: @@ -76,7 +84,8 @@ protected: # if CC_USES_VBO GLuint m_uVerticesID; #endif -}; +}; +#endif }// namespace cocos2d diff --git a/tests/test.linux/.cproject b/tests/test.linux/.cproject index 2f3ed751e4..8c1c262115 100644 --- a/tests/test.linux/.cproject +++ b/tests/test.linux/.cproject @@ -85,7 +85,7 @@ </toolChain> </folderInfo> <sourceEntries> - <entry excluding="tests/PerformanceTest|tests/ParticleTest" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> </sourceEntries> </configuration> </storageModule> @@ -173,7 +173,7 @@ </toolChain> </folderInfo> <sourceEntries> - <entry excluding="tests/PerformanceTest|tests/ParticleTest" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> </sourceEntries> </configuration> </storageModule> diff --git a/tests/tests/controller.cpp b/tests/tests/controller.cpp index db3a831da3..eac8212fec 100644 --- a/tests/tests/controller.cpp +++ b/tests/tests/controller.cpp @@ -27,7 +27,7 @@ static TestScene* CreateTestScene(int nIdx) case TEST_ROTATE_WORLD: pScene = new RotateWorldTestScene(); break; case TEST_PARTICLE: -// pScene = new ParticleTestScene(); break; + pScene = new ParticleTestScene(); break; case TEST_EASE_ACTIONS: pScene = new EaseActionsTestScene(); break; case TEST_MOTION_STREAK: @@ -93,7 +93,7 @@ static TestScene* CreateTestScene(int nIdx) case TEST_COCOSDENSHION: pScene = new CocosDenshionTestScene(); break; case TEST_PERFORMANCE: -// pScene = new PerformanceTestScene(); break; + pScene = new PerformanceTestScene(); break; case TEST_ZWOPTEX: pScene = new ZwoptexTestScene(); break; #if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY) From 310e79a49100b5ae16d64b468271f01e7f31f989 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Wed, 7 Sep 2011 12:41:39 +0800 Subject: [PATCH 27/31] delete the project configurations in base folder --- CocosDenshion/.cproject | 294 ------------ CocosDenshion/.project | 83 ---- CocosDenshion/AndroidDebug/Linux/subdir.mk | 27 -- .../AndroidDebug/android/jni/subdir.mk | 24 - CocosDenshion/AndroidDebug/android/subdir.mk | 24 - .../libCocosDenshion.so.REMOVED.git-id | 1 - CocosDenshion/AndroidDebug/makefile | 66 --- CocosDenshion/AndroidDebug/objects.mk | 8 - CocosDenshion/AndroidDebug/sources.mk | 28 -- CocosDenshion/AndroidRelease/Linux/subdir.mk | 27 -- .../AndroidRelease/android/jni/subdir.mk | 24 - .../AndroidRelease/android/subdir.mk | 24 - .../libCocosDenshion.so.REMOVED.git-id | 1 - CocosDenshion/AndroidRelease/makefile | 66 --- CocosDenshion/AndroidRelease/objects.mk | 8 - CocosDenshion/AndroidRelease/sources.mk | 28 -- HelloWorld/.cproject | 376 ---------------- HelloWorld/.project | 83 ---- HelloWorld/AndroidDebug/Classes/subdir.mk | 27 -- .../android/jni/helloworld/subdir.mk | 24 - .../libHelloWorld.so.REMOVED.git-id | 1 - HelloWorld/AndroidDebug/makefile | 66 --- HelloWorld/AndroidDebug/objects.mk | 8 - HelloWorld/AndroidDebug/sources.mk | 28 -- HelloWorld/AndroidRelease/Classes/subdir.mk | 27 -- .../android/jni/helloworld/subdir.mk | 24 - .../libHelloWorld.so.REMOVED.git-id | 1 - HelloWorld/AndroidRelease/makefile | 66 --- HelloWorld/AndroidRelease/objects.mk | 8 - HelloWorld/AndroidRelease/sources.mk | 28 -- HelloWorld/Classes/AppDelegate.cpp | 2 +- HelloWorld/Debug/Classes/subdir.mk | 27 -- HelloWorld/Debug/HelloWorld.REMOVED.git-id | 1 - HelloWorld/Debug/Linux/subdir.mk | 24 - HelloWorld/Debug/makefile | 60 --- HelloWorld/Debug/objects.mk | 8 - HelloWorld/Debug/sources.mk | 28 -- HelloWorld/Release/Classes/subdir.mk | 27 -- HelloWorld/Release/HelloWorld | Bin 33191 -> 0 bytes HelloWorld/Release/Linux/subdir.mk | 24 - HelloWorld/Release/makefile | 60 --- HelloWorld/Release/objects.mk | 8 - HelloWorld/Release/sources.mk | 28 -- HelloWorld/android/assets | 1 - HelloWorld/postCompiled.sh | 44 -- cocos2dx/.cproject | 422 ------------------ cocos2dx/.project | 83 ---- cocos2dx/AndroidDebug/actions/subdir.mk | 54 --- cocos2dx/AndroidDebug/base_nodes/subdir.mk | 27 -- cocos2dx/AndroidDebug/cocoa/subdir.mk | 45 -- cocos2dx/AndroidDebug/effects/subdir.mk | 27 -- .../AndroidDebug/keypad_dispatcher/subdir.mk | 27 -- cocos2dx/AndroidDebug/label_nodes/subdir.mk | 30 -- .../layers_scenes_transitions_nodes/subdir.mk | 36 -- .../AndroidDebug/libcocos2d.so.REMOVED.git-id | 1 - .../libcocos2dx-base.so.REMOVED.git-id | 1 - cocos2dx/AndroidDebug/makefile | 93 ---- cocos2dx/AndroidDebug/menu_nodes/subdir.mk | 27 -- cocos2dx/AndroidDebug/misc_nodes/subdir.mk | 33 -- cocos2dx/AndroidDebug/objects.mk | 8 - .../AndroidDebug/particle_nodes/subdir.mk | 30 -- .../platform/android/jni/subdir.mk | 39 -- .../AndroidDebug/platform/android/subdir.mk | 30 -- cocos2dx/AndroidDebug/platform/subdir.mk | 45 -- .../AndroidDebug/script_support/subdir.mk | 24 - cocos2dx/AndroidDebug/sources.mk | 49 -- cocos2dx/AndroidDebug/sprite_nodes/subdir.mk | 39 -- cocos2dx/AndroidDebug/subdir.mk | 39 -- .../support/image_support/subdir.mk | 24 - cocos2dx/AndroidDebug/support/subdir.mk | 42 -- .../support/zip_support/subdir.mk | 30 -- .../AndroidDebug/text_input_node/subdir.mk | 27 -- cocos2dx/AndroidDebug/textures/subdir.mk | 33 -- .../tileMap_parallax_nodes/subdir.mk | 39 -- .../AndroidDebug/touch_dispatcher/subdir.mk | 27 -- cocos2dx/AndroidRelease/actions/subdir.mk | 54 --- cocos2dx/AndroidRelease/base_nodes/subdir.mk | 27 -- cocos2dx/AndroidRelease/cocoa/subdir.mk | 45 -- cocos2dx/AndroidRelease/effects/subdir.mk | 27 -- .../keypad_dispatcher/subdir.mk | 27 -- cocos2dx/AndroidRelease/label_nodes/subdir.mk | 30 -- .../layers_scenes_transitions_nodes/subdir.mk | 36 -- cocos2dx/AndroidRelease/makefile | 86 ---- cocos2dx/AndroidRelease/menu_nodes/subdir.mk | 27 -- cocos2dx/AndroidRelease/misc_nodes/subdir.mk | 33 -- cocos2dx/AndroidRelease/objects.mk | 8 - .../AndroidRelease/particle_nodes/subdir.mk | 30 -- .../platform/android/jni/subdir.mk | 39 -- .../AndroidRelease/platform/android/subdir.mk | 30 -- cocos2dx/AndroidRelease/platform/subdir.mk | 45 -- .../AndroidRelease/script_support/subdir.mk | 24 - cocos2dx/AndroidRelease/sources.mk | 49 -- .../AndroidRelease/sprite_nodes/subdir.mk | 39 -- cocos2dx/AndroidRelease/subdir.mk | 39 -- .../support/image_support/subdir.mk | 24 - cocos2dx/AndroidRelease/support/subdir.mk | 42 -- .../support/zip_support/subdir.mk | 30 -- .../AndroidRelease/text_input_node/subdir.mk | 27 -- cocos2dx/AndroidRelease/textures/subdir.mk | 33 -- .../tileMap_parallax_nodes/subdir.mk | 39 -- .../AndroidRelease/touch_dispatcher/subdir.mk | 27 -- cocos2dx/Debug/actions/subdir.mk | 54 --- cocos2dx/Debug/base_nodes/subdir.mk | 27 -- cocos2dx/Debug/cocoa/subdir.mk | 45 -- cocos2dx/Debug/effects/subdir.mk | 27 -- cocos2dx/Debug/keypad_dispatcher/subdir.mk | 27 -- cocos2dx/Debug/label_nodes/subdir.mk | 30 -- .../layers_scenes_transitions_nodes/subdir.mk | 36 -- .../Debug/libcocos2dx-base.so.REMOVED.git-id | 1 - cocos2dx/Debug/makefile | 85 ---- cocos2dx/Debug/menu_nodes/subdir.mk | 27 -- cocos2dx/Debug/misc_nodes/subdir.mk | 33 -- cocos2dx/Debug/objects.mk | 8 - cocos2dx/Debug/particle_nodes/subdir.mk | 30 -- cocos2dx/Debug/platform/Linux/subdir.mk | 33 -- cocos2dx/Debug/platform/subdir.mk | 45 -- cocos2dx/Debug/script_support/subdir.mk | 24 - cocos2dx/Debug/sources.mk | 48 -- cocos2dx/Debug/sprite_nodes/subdir.mk | 39 -- cocos2dx/Debug/subdir.mk | 39 -- .../Debug/support/image_support/subdir.mk | 24 - cocos2dx/Debug/support/subdir.mk | 42 -- cocos2dx/Debug/support/zip_support/subdir.mk | 30 -- cocos2dx/Debug/text_input_node/subdir.mk | 27 -- cocos2dx/Debug/textures/subdir.mk | 33 -- .../Debug/tileMap_parallax_nodes/subdir.mk | 39 -- cocos2dx/Debug/touch_dispatcher/subdir.mk | 27 -- cocos2dx/Release/actions/subdir.mk | 54 --- cocos2dx/Release/base_nodes/subdir.mk | 27 -- cocos2dx/Release/cocoa/subdir.mk | 45 -- cocos2dx/Release/effects/subdir.mk | 27 -- cocos2dx/Release/keypad_dispatcher/subdir.mk | 27 -- cocos2dx/Release/label_nodes/subdir.mk | 30 -- .../layers_scenes_transitions_nodes/subdir.mk | 36 -- .../libcocos2dx-base.so.REMOVED.git-id | 1 - cocos2dx/Release/makefile | 85 ---- cocos2dx/Release/menu_nodes/subdir.mk | 27 -- cocos2dx/Release/misc_nodes/subdir.mk | 33 -- cocos2dx/Release/objects.mk | 8 - cocos2dx/Release/particle_nodes/subdir.mk | 30 -- cocos2dx/Release/platform/Linux/subdir.mk | 33 -- cocos2dx/Release/platform/subdir.mk | 45 -- cocos2dx/Release/script_support/subdir.mk | 24 - cocos2dx/Release/sources.mk | 48 -- cocos2dx/Release/sprite_nodes/subdir.mk | 39 -- cocos2dx/Release/subdir.mk | 39 -- .../Release/support/image_support/subdir.mk | 24 - cocos2dx/Release/support/subdir.mk | 42 -- .../Release/support/zip_support/subdir.mk | 30 -- cocos2dx/Release/text_input_node/subdir.mk | 27 -- cocos2dx/Release/textures/subdir.mk | 33 -- .../Release/tileMap_parallax_nodes/subdir.mk | 39 -- cocos2dx/Release/touch_dispatcher/subdir.mk | 27 -- post.sh | 19 +- template/android/mycopy_files.sh | 19 +- 155 files changed, 24 insertions(+), 5964 deletions(-) delete mode 100644 CocosDenshion/.cproject delete mode 100644 CocosDenshion/.project delete mode 100644 CocosDenshion/AndroidDebug/Linux/subdir.mk delete mode 100644 CocosDenshion/AndroidDebug/android/jni/subdir.mk delete mode 100644 CocosDenshion/AndroidDebug/android/subdir.mk delete mode 100644 CocosDenshion/AndroidDebug/libCocosDenshion.so.REMOVED.git-id delete mode 100644 CocosDenshion/AndroidDebug/makefile delete mode 100644 CocosDenshion/AndroidDebug/objects.mk delete mode 100644 CocosDenshion/AndroidDebug/sources.mk delete mode 100644 CocosDenshion/AndroidRelease/Linux/subdir.mk delete mode 100644 CocosDenshion/AndroidRelease/android/jni/subdir.mk delete mode 100644 CocosDenshion/AndroidRelease/android/subdir.mk delete mode 100644 CocosDenshion/AndroidRelease/libCocosDenshion.so.REMOVED.git-id delete mode 100644 CocosDenshion/AndroidRelease/makefile delete mode 100644 CocosDenshion/AndroidRelease/objects.mk delete mode 100644 CocosDenshion/AndroidRelease/sources.mk delete mode 100644 HelloWorld/.cproject delete mode 100644 HelloWorld/.project delete mode 100644 HelloWorld/AndroidDebug/Classes/subdir.mk delete mode 100644 HelloWorld/AndroidDebug/android/jni/helloworld/subdir.mk delete mode 100644 HelloWorld/AndroidDebug/libHelloWorld.so.REMOVED.git-id delete mode 100644 HelloWorld/AndroidDebug/makefile delete mode 100644 HelloWorld/AndroidDebug/objects.mk delete mode 100644 HelloWorld/AndroidDebug/sources.mk delete mode 100644 HelloWorld/AndroidRelease/Classes/subdir.mk delete mode 100644 HelloWorld/AndroidRelease/android/jni/helloworld/subdir.mk delete mode 100644 HelloWorld/AndroidRelease/libHelloWorld.so.REMOVED.git-id delete mode 100644 HelloWorld/AndroidRelease/makefile delete mode 100644 HelloWorld/AndroidRelease/objects.mk delete mode 100644 HelloWorld/AndroidRelease/sources.mk delete mode 100644 HelloWorld/Debug/Classes/subdir.mk delete mode 100644 HelloWorld/Debug/HelloWorld.REMOVED.git-id delete mode 100644 HelloWorld/Debug/Linux/subdir.mk delete mode 100644 HelloWorld/Debug/makefile delete mode 100644 HelloWorld/Debug/objects.mk delete mode 100644 HelloWorld/Debug/sources.mk delete mode 100644 HelloWorld/Release/Classes/subdir.mk delete mode 100755 HelloWorld/Release/HelloWorld delete mode 100644 HelloWorld/Release/Linux/subdir.mk delete mode 100644 HelloWorld/Release/makefile delete mode 100644 HelloWorld/Release/objects.mk delete mode 100644 HelloWorld/Release/sources.mk delete mode 120000 HelloWorld/android/assets delete mode 100644 HelloWorld/postCompiled.sh delete mode 100644 cocos2dx/.cproject delete mode 100644 cocos2dx/.project delete mode 100644 cocos2dx/AndroidDebug/actions/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/base_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/cocoa/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/effects/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/keypad_dispatcher/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/label_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/libcocos2d.so.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/libcocos2dx-base.so.REMOVED.git-id delete mode 100644 cocos2dx/AndroidDebug/makefile delete mode 100644 cocos2dx/AndroidDebug/menu_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/misc_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/objects.mk delete mode 100644 cocos2dx/AndroidDebug/particle_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/platform/android/jni/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/platform/android/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/platform/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/script_support/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/sources.mk delete mode 100644 cocos2dx/AndroidDebug/sprite_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/support/image_support/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/support/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/support/zip_support/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/text_input_node/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/textures/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/tileMap_parallax_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidDebug/touch_dispatcher/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/actions/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/base_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/cocoa/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/effects/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/keypad_dispatcher/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/label_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/makefile delete mode 100644 cocos2dx/AndroidRelease/menu_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/misc_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/objects.mk delete mode 100644 cocos2dx/AndroidRelease/particle_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/platform/android/jni/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/platform/android/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/platform/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/script_support/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/sources.mk delete mode 100644 cocos2dx/AndroidRelease/sprite_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/support/image_support/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/support/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/support/zip_support/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/text_input_node/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/textures/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/tileMap_parallax_nodes/subdir.mk delete mode 100644 cocos2dx/AndroidRelease/touch_dispatcher/subdir.mk delete mode 100644 cocos2dx/Debug/actions/subdir.mk delete mode 100644 cocos2dx/Debug/base_nodes/subdir.mk delete mode 100644 cocos2dx/Debug/cocoa/subdir.mk delete mode 100644 cocos2dx/Debug/effects/subdir.mk delete mode 100644 cocos2dx/Debug/keypad_dispatcher/subdir.mk delete mode 100644 cocos2dx/Debug/label_nodes/subdir.mk delete mode 100644 cocos2dx/Debug/layers_scenes_transitions_nodes/subdir.mk delete mode 100644 cocos2dx/Debug/libcocos2dx-base.so.REMOVED.git-id delete mode 100644 cocos2dx/Debug/makefile delete mode 100644 cocos2dx/Debug/menu_nodes/subdir.mk delete mode 100644 cocos2dx/Debug/misc_nodes/subdir.mk delete mode 100644 cocos2dx/Debug/objects.mk delete mode 100644 cocos2dx/Debug/particle_nodes/subdir.mk delete mode 100644 cocos2dx/Debug/platform/Linux/subdir.mk delete mode 100644 cocos2dx/Debug/platform/subdir.mk delete mode 100644 cocos2dx/Debug/script_support/subdir.mk delete mode 100644 cocos2dx/Debug/sources.mk delete mode 100644 cocos2dx/Debug/sprite_nodes/subdir.mk delete mode 100644 cocos2dx/Debug/subdir.mk delete mode 100644 cocos2dx/Debug/support/image_support/subdir.mk delete mode 100644 cocos2dx/Debug/support/subdir.mk delete mode 100644 cocos2dx/Debug/support/zip_support/subdir.mk delete mode 100644 cocos2dx/Debug/text_input_node/subdir.mk delete mode 100644 cocos2dx/Debug/textures/subdir.mk delete mode 100644 cocos2dx/Debug/tileMap_parallax_nodes/subdir.mk delete mode 100644 cocos2dx/Debug/touch_dispatcher/subdir.mk delete mode 100644 cocos2dx/Release/actions/subdir.mk delete mode 100644 cocos2dx/Release/base_nodes/subdir.mk delete mode 100644 cocos2dx/Release/cocoa/subdir.mk delete mode 100644 cocos2dx/Release/effects/subdir.mk delete mode 100644 cocos2dx/Release/keypad_dispatcher/subdir.mk delete mode 100644 cocos2dx/Release/label_nodes/subdir.mk delete mode 100644 cocos2dx/Release/layers_scenes_transitions_nodes/subdir.mk delete mode 100644 cocos2dx/Release/libcocos2dx-base.so.REMOVED.git-id delete mode 100644 cocos2dx/Release/makefile delete mode 100644 cocos2dx/Release/menu_nodes/subdir.mk delete mode 100644 cocos2dx/Release/misc_nodes/subdir.mk delete mode 100644 cocos2dx/Release/objects.mk delete mode 100644 cocos2dx/Release/particle_nodes/subdir.mk delete mode 100644 cocos2dx/Release/platform/Linux/subdir.mk delete mode 100644 cocos2dx/Release/platform/subdir.mk delete mode 100644 cocos2dx/Release/script_support/subdir.mk delete mode 100644 cocos2dx/Release/sources.mk delete mode 100644 cocos2dx/Release/sprite_nodes/subdir.mk delete mode 100644 cocos2dx/Release/subdir.mk delete mode 100644 cocos2dx/Release/support/image_support/subdir.mk delete mode 100644 cocos2dx/Release/support/subdir.mk delete mode 100644 cocos2dx/Release/support/zip_support/subdir.mk delete mode 100644 cocos2dx/Release/text_input_node/subdir.mk delete mode 100644 cocos2dx/Release/textures/subdir.mk delete mode 100644 cocos2dx/Release/tileMap_parallax_nodes/subdir.mk delete mode 100644 cocos2dx/Release/touch_dispatcher/subdir.mk diff --git a/CocosDenshion/.cproject b/CocosDenshion/.cproject deleted file mode 100644 index 85c4d51b12..0000000000 --- a/CocosDenshion/.cproject +++ /dev/null @@ -1,294 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<?fileVersion 4.0.0?> - -<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> - <storageModule moduleId="org.eclipse.cdt.core.settings"> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1982681102"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1982681102" moduleId="org.eclipse.cdt.core.settings" name="Debug"> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/Debug"/> - <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1982681102" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../post.sh ${ProjName} cocosdenshion"> - <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1982681102." name="/" resourcePath=""> - <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1290289406" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> - <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.1343594495" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> - <builder buildPath="${workspace_loc:/CocosDenshion/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.2041927999" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> - <tool id="cdt.managedbuild.tool.gnu.archiver.base.1293331295" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2092876171" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> - <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.2020537008" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.886209200" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.1002280254" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1604049990" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1178240227" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> - <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.206236808" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.debug.option.debugging.level.828037565" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.985313341" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.370598124" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1145844969" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> - <option defaultValue="true" id="gnu.c.link.option.shared.1822605485" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1767253018" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> - <option id="gnu.cpp.link.option.libs.956474372" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="fmodex"/> - </option> - <option defaultValue="true" id="gnu.cpp.link.option.shared.430688089" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1207468004" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1192863353" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.2047527740" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="android|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.509246766"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.509246766" moduleId="org.eclipse.cdt.core.settings" name="Release"> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/Release"/> - <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.509246766" name="Release" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../post.sh ${ProjName} cocosdenshion"> - <folderInfo id="cdt.managedbuild.config.gnu.exe.release.509246766." name="/" resourcePath=""> - <toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.305868874" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> - <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.506287391" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> - <builder buildPath="${workspace_loc:/CocosDenshion/Release}" id="cdt.managedbuild.target.gnu.builder.exe.release.1316417033" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> - <tool id="cdt.managedbuild.tool.gnu.archiver.base.1125358518" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.222121229" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> - <option id="gnu.cpp.compiler.exe.release.option.optimization.level.1962013303" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.release.option.debugging.level.2015755429" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.1414683978" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1557365568" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1919066836" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> - <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1295172282" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.release.option.debugging.level.1006696632" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.92938039" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.757092405" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.release.490094345" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> - <option defaultValue="true" id="gnu.c.link.option.shared.2114715478" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1107958294" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> - <option id="gnu.cpp.link.option.libs.1450744481" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="fmodex"/> - </option> - <option defaultValue="true" id="gnu.cpp.link.option.shared.1840009551" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1952243970" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.86394856" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.895909947" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="android|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209" moduleId="org.eclipse.cdt.core.settings" name="AndroidDebug"> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/AndroidDebug"/> - <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209" name="AndroidDebug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../post.sh ${ProjName} cocosdenshion"> - <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209." name="/" resourcePath=""> - <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1558765061" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> - <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.620879821" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> - <builder buildPath="${workspace_loc:/CocosDenshion/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.507120743" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.40387952" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.792840741" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> - <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.976541662" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.1307745860" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.438026184" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.2045722816" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1567615028" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> - <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.879455147" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.debug.option.debugging.level.1476208622" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.554440625" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.260627685" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1900603638" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> - <option defaultValue="true" id="gnu.c.link.option.shared.1038390402" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.303615758" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> - <option id="gnu.cpp.link.option.libs.1196370704" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="log"/> - </option> - <option defaultValue="true" id="gnu.cpp.link.option.shared.1009537507" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.331207899" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1169174011" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.776530056" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="third_party|Linux|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575" moduleId="org.eclipse.cdt.core.settings" name="AndroidRelease"> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/AndroidRelease"/> - <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575" name="AndroidRelease" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../post.sh ${ProjName} cocosdenshion"> - <folderInfo id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575." name="/" resourcePath=""> - <toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.885182269" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> - <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.1280043208" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> - <builder buildPath="${workspace_loc:/CocosDenshion/Release}" id="cdt.managedbuild.target.gnu.builder.exe.release.474969838" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.509102503" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1702337749" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> - <option id="gnu.cpp.compiler.exe.release.option.optimization.level.44964931" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.release.option.debugging.level.2138571216" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.1983104201" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1493650421" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1390354356" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> - <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.923425099" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.release.option.debugging.level.1422867368" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.1675694653" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.858170289" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.release.168343506" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> - <option defaultValue="true" id="gnu.c.link.option.shared.2128797843" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.2083694616" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> - <option id="gnu.cpp.link.option.libs.1657717164" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="log"/> - </option> - <option defaultValue="true" id="gnu.cpp.link.option.shared.21289368" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.258929024" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.1157573136" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.980689040" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="third_party|Linux|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <project id="CocosDenshion.cdt.managedbuild.target.gnu.exe.346390339" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/> - </storageModule> - <storageModule moduleId="scannerConfiguration"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1982681102;cdt.managedbuild.config.gnu.exe.debug.1982681102.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1178240227;cdt.managedbuild.tool.gnu.c.compiler.input.370598124"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1982681102;cdt.managedbuild.config.gnu.exe.debug.1982681102.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2092876171;cdt.managedbuild.tool.gnu.cpp.compiler.input.1604049990"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.509246766;cdt.managedbuild.config.gnu.exe.release.509246766.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.1919066836;cdt.managedbuild.tool.gnu.c.compiler.input.757092405"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.509246766;cdt.managedbuild.config.gnu.exe.release.509246766.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.222121229;cdt.managedbuild.tool.gnu.cpp.compiler.input.1557365568"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - </storageModule> - <storageModule moduleId="refreshScope"/> -</cproject> diff --git a/CocosDenshion/.project b/CocosDenshion/.project deleted file mode 100644 index 7ea064a7ad..0000000000 --- a/CocosDenshion/.project +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>CocosDenshion</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> - <triggers>clean,full,incremental,</triggers> - <arguments> - <dictionary> - <key>?name?</key> - <value></value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.append_environment</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.autoBuildTarget</key> - <value>all</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.buildArguments</key> - <value></value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.buildCommand</key> - <value>make</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.buildLocation</key> - <value>${workspace_loc:/CocosDenshion/Debug}</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.cleanBuildTarget</key> - <value>clean</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.contents</key> - <value>org.eclipse.cdt.make.core.activeConfigSettings</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.enableAutoBuild</key> - <value>false</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.enableCleanBuild</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.enableFullBuild</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.fullBuildTarget</key> - <value>all</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.stopOnError</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> - <value>true</value> - </dictionary> - </arguments> - </buildCommand> - <buildCommand> - <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> - <triggers>full,incremental,</triggers> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.cdt.core.cnature</nature> - <nature>org.eclipse.cdt.core.ccnature</nature> - <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> - <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> - </natures> -</projectDescription> diff --git a/CocosDenshion/AndroidDebug/Linux/subdir.mk b/CocosDenshion/AndroidDebug/Linux/subdir.mk deleted file mode 100644 index 8ea2a167e7..0000000000 --- a/CocosDenshion/AndroidDebug/Linux/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Linux/FmodAudioPlayer.cpp \ -../Linux/SimpleAudioEngine.cpp - -OBJS += \ -./Linux/FmodAudioPlayer.o \ -./Linux/SimpleAudioEngine.o - -CPP_DEPS += \ -./Linux/FmodAudioPlayer.d \ -./Linux/SimpleAudioEngine.d - - -# Each subdirectory must supply rules for building sources it contributes -Linux/%.o: ../Linux/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/CocosDenshion/AndroidDebug/android/jni/subdir.mk b/CocosDenshion/AndroidDebug/android/jni/subdir.mk deleted file mode 100644 index ecbf9b4252..0000000000 --- a/CocosDenshion/AndroidDebug/android/jni/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../android/jni/SimpleAudioEngineJni.cpp - -OBJS += \ -./android/jni/SimpleAudioEngineJni.o - -CPP_DEPS += \ -./android/jni/SimpleAudioEngineJni.d - - -# Each subdirectory must supply rules for building sources it contributes -android/jni/%.o: ../android/jni/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/CocosDenshion/AndroidDebug/android/subdir.mk b/CocosDenshion/AndroidDebug/android/subdir.mk deleted file mode 100644 index a3545fc51f..0000000000 --- a/CocosDenshion/AndroidDebug/android/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../android/SimpleAudioEngine.cpp - -OBJS += \ -./android/SimpleAudioEngine.o - -CPP_DEPS += \ -./android/SimpleAudioEngine.d - - -# Each subdirectory must supply rules for building sources it contributes -android/%.o: ../android/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/CocosDenshion/AndroidDebug/libCocosDenshion.so.REMOVED.git-id b/CocosDenshion/AndroidDebug/libCocosDenshion.so.REMOVED.git-id deleted file mode 100644 index d9aca5d6f6..0000000000 --- a/CocosDenshion/AndroidDebug/libCocosDenshion.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -44df184b33ff13c8b7f673ff651334bca3a50fdd \ No newline at end of file diff --git a/CocosDenshion/AndroidDebug/makefile b/CocosDenshion/AndroidDebug/makefile deleted file mode 100644 index a2265e0491..0000000000 --- a/CocosDenshion/AndroidDebug/makefile +++ /dev/null @@ -1,66 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include android/jni/subdir.mk --include android/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: libCocosDenshion.so - -# Tool invocations -libCocosDenshion.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -shared -o "libCocosDenshion.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libCocosDenshion.so - -@echo ' ' - -post-build: - -@echo 'move output libs to a specific libs' - -sh ../../post.sh CocosDenshion cocosdenshion - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets diff --git a/CocosDenshion/AndroidDebug/objects.mk b/CocosDenshion/AndroidDebug/objects.mk deleted file mode 100644 index b143531988..0000000000 --- a/CocosDenshion/AndroidDebug/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -LIBS := -llog - diff --git a/CocosDenshion/AndroidDebug/sources.mk b/CocosDenshion/AndroidDebug/sources.mk deleted file mode 100644 index 5b56f77175..0000000000 --- a/CocosDenshion/AndroidDebug/sources.mk +++ /dev/null @@ -1,28 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -android/jni \ -android \ - diff --git a/CocosDenshion/AndroidRelease/Linux/subdir.mk b/CocosDenshion/AndroidRelease/Linux/subdir.mk deleted file mode 100644 index c71c1b0fd3..0000000000 --- a/CocosDenshion/AndroidRelease/Linux/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Linux/FmodAudioPlayer.cpp \ -../Linux/SimpleAudioEngine.cpp - -OBJS += \ -./Linux/FmodAudioPlayer.o \ -./Linux/SimpleAudioEngine.o - -CPP_DEPS += \ -./Linux/FmodAudioPlayer.d \ -./Linux/SimpleAudioEngine.d - - -# Each subdirectory must supply rules for building sources it contributes -Linux/%.o: ../Linux/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/CocosDenshion/AndroidRelease/android/jni/subdir.mk b/CocosDenshion/AndroidRelease/android/jni/subdir.mk deleted file mode 100644 index 862c7e4465..0000000000 --- a/CocosDenshion/AndroidRelease/android/jni/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../android/jni/SimpleAudioEngineJni.cpp - -OBJS += \ -./android/jni/SimpleAudioEngineJni.o - -CPP_DEPS += \ -./android/jni/SimpleAudioEngineJni.d - - -# Each subdirectory must supply rules for building sources it contributes -android/jni/%.o: ../android/jni/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/CocosDenshion/AndroidRelease/android/subdir.mk b/CocosDenshion/AndroidRelease/android/subdir.mk deleted file mode 100644 index 4e7778a78b..0000000000 --- a/CocosDenshion/AndroidRelease/android/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../android/SimpleAudioEngine.cpp - -OBJS += \ -./android/SimpleAudioEngine.o - -CPP_DEPS += \ -./android/SimpleAudioEngine.d - - -# Each subdirectory must supply rules for building sources it contributes -android/%.o: ../android/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/CocosDenshion/AndroidRelease/libCocosDenshion.so.REMOVED.git-id b/CocosDenshion/AndroidRelease/libCocosDenshion.so.REMOVED.git-id deleted file mode 100644 index e1cefd40e3..0000000000 --- a/CocosDenshion/AndroidRelease/libCocosDenshion.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -273438a6408c82cbe725fd85c3519c44833e65db \ No newline at end of file diff --git a/CocosDenshion/AndroidRelease/makefile b/CocosDenshion/AndroidRelease/makefile deleted file mode 100644 index a2265e0491..0000000000 --- a/CocosDenshion/AndroidRelease/makefile +++ /dev/null @@ -1,66 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include android/jni/subdir.mk --include android/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: libCocosDenshion.so - -# Tool invocations -libCocosDenshion.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -shared -o "libCocosDenshion.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libCocosDenshion.so - -@echo ' ' - -post-build: - -@echo 'move output libs to a specific libs' - -sh ../../post.sh CocosDenshion cocosdenshion - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets diff --git a/CocosDenshion/AndroidRelease/objects.mk b/CocosDenshion/AndroidRelease/objects.mk deleted file mode 100644 index b143531988..0000000000 --- a/CocosDenshion/AndroidRelease/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -LIBS := -llog - diff --git a/CocosDenshion/AndroidRelease/sources.mk b/CocosDenshion/AndroidRelease/sources.mk deleted file mode 100644 index 5b56f77175..0000000000 --- a/CocosDenshion/AndroidRelease/sources.mk +++ /dev/null @@ -1,28 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -android/jni \ -android \ - diff --git a/HelloWorld/.cproject b/HelloWorld/.cproject deleted file mode 100644 index ca82a962ae..0000000000 --- a/HelloWorld/.cproject +++ /dev/null @@ -1,376 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<?fileVersion 4.0.0?> - -<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> - <storageModule moduleId="org.eclipse.cdt.core.settings"> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1378309016"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1378309016" moduleId="org.eclipse.cdt.core.settings" name="Debug"> - <macros> - <stringMacro name="cocos2dx_loc" type="VALUE_TEXT" value="/home/laschweinski/git/cocos2d-x"/> - </macros> - <externalSettings/> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1378309016" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug"> - <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1378309016." name="/" resourcePath=""> - <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1538958685" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> - <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.519149464" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> - <builder buildPath="${workspace_loc:/HelloCocos2dx/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.533408716" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> - <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.archiver.base.610675027" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.986170120" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> - <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.513215504" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.354795965" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.577331571" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/cocos2dx""/> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> - </option> - <option id="gnu.cpp.compiler.option.preprocessor.def.753894218" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="LINUX"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1499791735" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1024548975" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> - <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.1846873676" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.debug.option.debugging.level.624794682" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.141168982" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx"/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.1586206751" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="LINUX"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1184297872" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1033696081" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"/> - <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1383466696" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> - <option id="gnu.cpp.link.option.libs.1391251808" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="cocos2d"/> - <listOptionValue builtIn="false" value="z"/> - <listOptionValue builtIn="false" value="cocosdenshion"/> - </option> - <option id="gnu.cpp.link.option.paths.1730426040" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/lib/linux/Debug/""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.338357910" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1908755862" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.1360047451" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="wophone|win32|airplay|ios|android|android/jni" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.1261731462"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.1261731462" moduleId="org.eclipse.cdt.core.settings" name="Release"> - <macros> - <stringMacro name="cocos2dx_loc" type="VALUE_TEXT" value="/home/laschweinski/git/cocos2d-x"/> - </macros> - <externalSettings/> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.1261731462" name="Release" parent="cdt.managedbuild.config.gnu.exe.release"> - <folderInfo id="cdt.managedbuild.config.gnu.exe.release.1261731462." name="/" resourcePath=""> - <toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.1286487413" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> - <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.549294927" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> - <builder buildPath="${workspace_loc:/HelloCocos2dx/Release}" id="cdt.managedbuild.target.gnu.builder.exe.release.1313183802" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> - <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.archiver.base.151631864" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1347395052" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> - <option id="gnu.cpp.compiler.exe.release.option.optimization.level.1579660092" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.release.option.debugging.level.67257659" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.1175073911" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/cocos2dx""/> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> - </option> - <option id="gnu.cpp.compiler.option.preprocessor.def.1649765609" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="LINUX"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.627062533" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1992070152" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> - <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.925598500" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.release.option.debugging.level.1434439101" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.92708570" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx"/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.1314682529" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="LINUX"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1476095646" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.c.linker.exe.release.1136815621" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"/> - <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Release" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1566686420" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> - <option id="gnu.cpp.link.option.libs.956118225" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="cocos2d"/> - <listOptionValue builtIn="false" value="z"/> - <listOptionValue builtIn="false" value="cocosdenshion"/> - </option> - <option id="gnu.cpp.link.option.paths.510724007" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/lib/linux/Release/""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.970027608" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.770212797" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.2041720683" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="wophone|win32|airplay|ios|android|android/jni" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448" moduleId="org.eclipse.cdt.core.settings" name="AndroidDebug"> - <macros> - <stringMacro name="cocos2dx_loc" type="VALUE_TEXT" value="/home/laschweinski/git/cocos2d-x"/> - </macros> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/HelloCocos2dx"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/HelloWorld"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/HelloCocos2dx/AndroidDebug"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/HelloWorld/AndroidDebug"/> - <entry flags="RESOLVED" kind="libraryFile" name="HelloCocos2dx"/> - <entry flags="RESOLVED" kind="libraryFile" name="HelloWorld"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448" name="AndroidDebug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move required lib into android/libs automatically" postbuildStep="sh ../postCompiled.sh ${ConfigName} ${ProjName} ${cocos2dx_loc}"> - <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448." name="/" resourcePath=""> - <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.891597002" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> - <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.1175507817" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> - <builder buildPath="${workspace_loc:/HelloCocos2dx/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.2103810488" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.998791186" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1818259119" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> - <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.647901347" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.1442997034" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.1516129513" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/cocos2dx""/> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> - </option> - <option id="gnu.cpp.compiler.option.preprocessor.def.1589537277" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="ANDROID"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.810275929" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.175957853" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> - <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.114873492" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.debug.option.debugging.level.1551373981" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.449757136" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx"/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.1622166484" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="ANDROID"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.838160662" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.2118477626" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> - <option defaultValue="true" id="gnu.c.link.option.shared.152142838" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1254507739" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> - <option id="gnu.cpp.link.option.libs.2115744134" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="cocos2d"/> - <listOptionValue builtIn="false" value="cocosdenshion"/> - </option> - <option id="gnu.cpp.link.option.paths.1036583050" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/lib/android/Debug/""/> - </option> - <option defaultValue="true" id="gnu.cpp.link.option.shared.26636318" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.83157690" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.155839540" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.1547088128" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="wophone|win32|airplay|ios|Linux" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403" moduleId="org.eclipse.cdt.core.settings" name="AndroidRelease"> - <macros> - <stringMacro name="cocos2dx_loc" type="VALUE_TEXT" value="/home/laschweinski/git/cocos2d-x"/> - </macros> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/HelloCocos2dx"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/HelloWorld"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/HelloCocos2dx/AndroidRelease"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/HelloWorld/AndroidRelease"/> - <entry flags="RESOLVED" kind="libraryFile" name="HelloCocos2dx"/> - <entry flags="RESOLVED" kind="libraryFile" name="HelloWorld"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403" name="AndroidRelease" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move required lib into android/libs automatically" postbuildStep="sh ../postCompiled.sh ${ConfigName} ${ProjName} ${cocos2dx_loc}"> - <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403." name="/" resourcePath=""> - <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.952577400" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> - <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.400831122" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> - <builder buildPath="${workspace_loc:/HelloCocos2dx/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.2089617317" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.1512592708" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.942164708" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> - <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.1919445545" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.1865018121" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.661752474" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/cocos2dx""/> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> - </option> - <option id="gnu.cpp.compiler.option.preprocessor.def.1175103885" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="ANDROID"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1074068007" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1116079203" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> - <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.2050135148" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.debug.option.debugging.level.1078024265" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.2081737176" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> - <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx"/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.262900511" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="ANDROID"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1941427790" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.756044676" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> - <option defaultValue="true" id="gnu.c.link.option.shared.549647408" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1769711845" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> - <option id="gnu.cpp.link.option.libs.1975754001" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="cocos2d"/> - <listOptionValue builtIn="false" value="cocosdenshion"/> - </option> - <option id="gnu.cpp.link.option.paths.41168718" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> - <listOptionValue builtIn="false" value=""${cocos2dx_loc}/lib/android/Release/""/> - </option> - <option defaultValue="true" id="gnu.cpp.link.option.shared.1819279818" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.863158828" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1290961042" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.1011610564" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="wophone|win32|airplay|ios|Linux" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <project id="HelloCocos2dx.cdt.managedbuild.target.gnu.exe.1681361206" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/> - </storageModule> - <storageModule moduleId="refreshScope"/> - <storageModule moduleId="scannerConfiguration"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403;cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1116079203;cdt.managedbuild.tool.gnu.c.compiler.input.1941427790"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016;cdt.managedbuild.config.gnu.exe.debug.1378309016.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.986170120;cdt.managedbuild.tool.gnu.cpp.compiler.input.1499791735"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016;cdt.managedbuild.config.gnu.exe.debug.1378309016.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1024548975;cdt.managedbuild.tool.gnu.c.compiler.input.1184297872"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403;cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.942164708;cdt.managedbuild.tool.gnu.cpp.compiler.input.1074068007"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1261731462;cdt.managedbuild.config.gnu.exe.release.1261731462.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1347395052;cdt.managedbuild.tool.gnu.cpp.compiler.input.627062533"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1261731462;cdt.managedbuild.config.gnu.exe.release.1261731462.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.1992070152;cdt.managedbuild.tool.gnu.c.compiler.input.1476095646"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448;cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1818259119;cdt.managedbuild.tool.gnu.cpp.compiler.input.810275929"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448;cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.175957853;cdt.managedbuild.tool.gnu.c.compiler.input.838160662"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - </storageModule> -</cproject> diff --git a/HelloWorld/.project b/HelloWorld/.project deleted file mode 100644 index 424183b670..0000000000 --- a/HelloWorld/.project +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>HelloWorld</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> - <triggers>clean,full,incremental,</triggers> - <arguments> - <dictionary> - <key>?name?</key> - <value></value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.append_environment</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.autoBuildTarget</key> - <value>all</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.buildArguments</key> - <value></value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.buildCommand</key> - <value>make</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.buildLocation</key> - <value>${workspace_loc:/HelloCocos2dx/Debug}</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.cleanBuildTarget</key> - <value>clean</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.contents</key> - <value>org.eclipse.cdt.make.core.activeConfigSettings</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.enableAutoBuild</key> - <value>false</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.enableCleanBuild</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.enableFullBuild</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.fullBuildTarget</key> - <value>all</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.stopOnError</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> - <value>true</value> - </dictionary> - </arguments> - </buildCommand> - <buildCommand> - <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> - <triggers>full,incremental,</triggers> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.cdt.core.cnature</nature> - <nature>org.eclipse.cdt.core.ccnature</nature> - <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> - <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> - </natures> -</projectDescription> diff --git a/HelloWorld/AndroidDebug/Classes/subdir.mk b/HelloWorld/AndroidDebug/Classes/subdir.mk deleted file mode 100644 index 33d0912205..0000000000 --- a/HelloWorld/AndroidDebug/Classes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Classes/AppDelegate.cpp \ -../Classes/HelloWorldScene.cpp - -OBJS += \ -./Classes/AppDelegate.o \ -./Classes/HelloWorldScene.o - -CPP_DEPS += \ -./Classes/AppDelegate.d \ -./Classes/HelloWorldScene.d - - -# Each subdirectory must supply rules for building sources it contributes -Classes/%.o: ../Classes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloWorld/AndroidDebug/android/jni/helloworld/subdir.mk b/HelloWorld/AndroidDebug/android/jni/helloworld/subdir.mk deleted file mode 100644 index 1f93056647..0000000000 --- a/HelloWorld/AndroidDebug/android/jni/helloworld/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../android/jni/helloworld/main.cpp - -OBJS += \ -./android/jni/helloworld/main.o - -CPP_DEPS += \ -./android/jni/helloworld/main.d - - -# Each subdirectory must supply rules for building sources it contributes -android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloWorld/AndroidDebug/libHelloWorld.so.REMOVED.git-id b/HelloWorld/AndroidDebug/libHelloWorld.so.REMOVED.git-id deleted file mode 100644 index d651da5bee..0000000000 --- a/HelloWorld/AndroidDebug/libHelloWorld.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -fa728d61c44d85bfd750298eabac3bccfd3b4229 \ No newline at end of file diff --git a/HelloWorld/AndroidDebug/makefile b/HelloWorld/AndroidDebug/makefile deleted file mode 100644 index ffa7589f5f..0000000000 --- a/HelloWorld/AndroidDebug/makefile +++ /dev/null @@ -1,66 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include android/jni/helloworld/subdir.mk --include Classes/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: libHelloWorld.so - -# Tool invocations -libHelloWorld.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/lib/android/Debug/" -shared -o "libHelloWorld.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libHelloWorld.so - -@echo ' ' - -post-build: - -@echo 'move required lib into android/libs automatically' - -sh ../postCompiled.sh AndroidDebug HelloWorld /home/laschweinski/git/cocos2d-x - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets diff --git a/HelloWorld/AndroidDebug/objects.mk b/HelloWorld/AndroidDebug/objects.mk deleted file mode 100644 index 028c82493e..0000000000 --- a/HelloWorld/AndroidDebug/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -LIBS := -lcocos2d -lcocosdenshion - diff --git a/HelloWorld/AndroidDebug/sources.mk b/HelloWorld/AndroidDebug/sources.mk deleted file mode 100644 index 74691bfe18..0000000000 --- a/HelloWorld/AndroidDebug/sources.mk +++ /dev/null @@ -1,28 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -android/jni/helloworld \ -Classes \ - diff --git a/HelloWorld/AndroidRelease/Classes/subdir.mk b/HelloWorld/AndroidRelease/Classes/subdir.mk deleted file mode 100644 index 33d0912205..0000000000 --- a/HelloWorld/AndroidRelease/Classes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Classes/AppDelegate.cpp \ -../Classes/HelloWorldScene.cpp - -OBJS += \ -./Classes/AppDelegate.o \ -./Classes/HelloWorldScene.o - -CPP_DEPS += \ -./Classes/AppDelegate.d \ -./Classes/HelloWorldScene.d - - -# Each subdirectory must supply rules for building sources it contributes -Classes/%.o: ../Classes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloWorld/AndroidRelease/android/jni/helloworld/subdir.mk b/HelloWorld/AndroidRelease/android/jni/helloworld/subdir.mk deleted file mode 100644 index 1f93056647..0000000000 --- a/HelloWorld/AndroidRelease/android/jni/helloworld/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../android/jni/helloworld/main.cpp - -OBJS += \ -./android/jni/helloworld/main.o - -CPP_DEPS += \ -./android/jni/helloworld/main.d - - -# Each subdirectory must supply rules for building sources it contributes -android/jni/helloworld/%.o: ../android/jni/helloworld/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloWorld/AndroidRelease/libHelloWorld.so.REMOVED.git-id b/HelloWorld/AndroidRelease/libHelloWorld.so.REMOVED.git-id deleted file mode 100644 index 46b071f9c2..0000000000 --- a/HelloWorld/AndroidRelease/libHelloWorld.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -c01ad58a5b4aa55336caf36b46f29a2dd89cb100 \ No newline at end of file diff --git a/HelloWorld/AndroidRelease/makefile b/HelloWorld/AndroidRelease/makefile deleted file mode 100644 index 68ddbd420a..0000000000 --- a/HelloWorld/AndroidRelease/makefile +++ /dev/null @@ -1,66 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include android/jni/helloworld/subdir.mk --include Classes/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: libHelloWorld.so - -# Tool invocations -libHelloWorld.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -L"/home/laschweinski/git/cocos2d-x/lib/android/Release/" -shared -o "libHelloWorld.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libHelloWorld.so - -@echo ' ' - -post-build: - -@echo 'move required lib into android/libs automatically' - -sh ../postCompiled.sh AndroidRelease HelloWorld /home/laschweinski/git/cocos2d-x - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets diff --git a/HelloWorld/AndroidRelease/objects.mk b/HelloWorld/AndroidRelease/objects.mk deleted file mode 100644 index 028c82493e..0000000000 --- a/HelloWorld/AndroidRelease/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -LIBS := -lcocos2d -lcocosdenshion - diff --git a/HelloWorld/AndroidRelease/sources.mk b/HelloWorld/AndroidRelease/sources.mk deleted file mode 100644 index 74691bfe18..0000000000 --- a/HelloWorld/AndroidRelease/sources.mk +++ /dev/null @@ -1,28 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -android/jni/helloworld \ -Classes \ - diff --git a/HelloWorld/Classes/AppDelegate.cpp b/HelloWorld/Classes/AppDelegate.cpp index b403f1f400..5cf758ebfd 100644 --- a/HelloWorld/Classes/AppDelegate.cpp +++ b/HelloWorld/Classes/AppDelegate.cpp @@ -66,7 +66,7 @@ bool AppDelegate::initInstance() { CC_BREAK_IF(! pMainWnd || ! pMainWnd->Create("cocos2d: Hello World", 800, 480,480, 320)); - CCFileUtils::setResourcePath("Resource/"); + CCFileUtils::setResourcePath("../Resource/"); #endif // CC_PLATFORM_LINUX bRet = true; diff --git a/HelloWorld/Debug/Classes/subdir.mk b/HelloWorld/Debug/Classes/subdir.mk deleted file mode 100644 index 558a885a7e..0000000000 --- a/HelloWorld/Debug/Classes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Classes/AppDelegate.cpp \ -../Classes/HelloWorldScene.cpp - -OBJS += \ -./Classes/AppDelegate.o \ -./Classes/HelloWorldScene.o - -CPP_DEPS += \ -./Classes/AppDelegate.d \ -./Classes/HelloWorldScene.d - - -# Each subdirectory must supply rules for building sources it contributes -Classes/%.o: ../Classes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloWorld/Debug/HelloWorld.REMOVED.git-id b/HelloWorld/Debug/HelloWorld.REMOVED.git-id deleted file mode 100644 index 9e62f51ebe..0000000000 --- a/HelloWorld/Debug/HelloWorld.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -b96c2b712f76b3685ef00fb9f2639525efd91342 \ No newline at end of file diff --git a/HelloWorld/Debug/Linux/subdir.mk b/HelloWorld/Debug/Linux/subdir.mk deleted file mode 100644 index cf2059cc22..0000000000 --- a/HelloWorld/Debug/Linux/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Linux/main.cpp - -OBJS += \ -./Linux/main.o - -CPP_DEPS += \ -./Linux/main.d - - -# Each subdirectory must supply rules for building sources it contributes -Linux/%.o: ../Linux/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloWorld/Debug/makefile b/HelloWorld/Debug/makefile deleted file mode 100644 index 023a622021..0000000000 --- a/HelloWorld/Debug/makefile +++ /dev/null @@ -1,60 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Linux/subdir.mk --include Classes/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: HelloWorld - -# Tool invocations -HelloWorld: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - g++ -L"/home/laschweinski/git/cocos2d-x/lib/linux/Debug/" -o "HelloWorld" $(OBJS) $(USER_OBJS) $(LIBS) -Wl,-rpath,/home/laschweinski/git/cocos2d-x/lib/linux/Debug/ - @echo 'Finished building target: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) HelloWorld - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: - --include ../makefile.targets diff --git a/HelloWorld/Debug/objects.mk b/HelloWorld/Debug/objects.mk deleted file mode 100644 index 25a30a896f..0000000000 --- a/HelloWorld/Debug/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -LIBS := -lcocos2d -lz -lcocosdenshion - diff --git a/HelloWorld/Debug/sources.mk b/HelloWorld/Debug/sources.mk deleted file mode 100644 index e6df4461ef..0000000000 --- a/HelloWorld/Debug/sources.mk +++ /dev/null @@ -1,28 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -CPP_DEPS := -EXECUTABLES := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Linux \ -Classes \ - diff --git a/HelloWorld/Release/Classes/subdir.mk b/HelloWorld/Release/Classes/subdir.mk deleted file mode 100644 index 8d80543937..0000000000 --- a/HelloWorld/Release/Classes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Classes/AppDelegate.cpp \ -../Classes/HelloWorldScene.cpp - -OBJS += \ -./Classes/AppDelegate.o \ -./Classes/HelloWorldScene.o - -CPP_DEPS += \ -./Classes/AppDelegate.d \ -./Classes/HelloWorldScene.d - - -# Each subdirectory must supply rules for building sources it contributes -Classes/%.o: ../Classes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloWorld/Release/HelloWorld b/HelloWorld/Release/HelloWorld deleted file mode 100755 index b1d44176812831209b0a6874dcb380b5a1a02d52..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 33191 zcmeHwe|S{Yx$aIf!RU=RSj4EHqXq=UFcU%uO6$NRfk=drL<|T{hGdcqB$F{SiNRtW z4InX~Q;*mBw6;yHwcM7|rbkP$Qact7KhB}IIW1Cnq&B_&3Kcb0YH6kBzVF(5&8$6{ zfzZ?QpX+(P`S!cNwb!q2t#7Tp_uAh)P*z!<k&&Uvkf~*9M729CIYr>PRl1}|vuWpR zQ}H`V8-r7n6-5vSWWxodY@D-zvOv|q)el;7NS^~HQHIlkz%&ill3EsM8j06yR$YE@ zv8Ek--I7DfMS?lFnE6tk2{s7%AY`N*Bub*3d61fbn~*oD6qqDs?zh7ArSoy_7m$H+ z5tk(8w?mHTBZ5qSDdcMTif}E7*Mn&@n*FP1G}qtQ><_ee7KB<03UwKZF60Xq-yzaw zJ(%W2AYMBj#I~dSRN1F9L+y8e`u&T4y8gGj96$W8Yo}#*K^6tg2FY+S4q8AS<HV!j zw}5U3H5uo|f<I^+lZ8P(&`i)hpc$YN(8HjOp!-1#H-aj}k)~}mIGG!Cmw{^xPPQJj z859KF1Y&)bfEZSQrh_JeTp+y#aDXrgv`!r9Ki4bAJe&urG|n}E_kgy5Y#@f^piQ7< z1PG0w%RnIlgeySR;wbTR6%N_%*Mg|*J3&i9=!RM|=o(NSNDY?&+y=@uPPQ9-vcbt# zfu<PvN^o>j5zqy+%R$sR!$Y8A&?BHu5JQp9v^MZrAoh)N<J?;Cxu8WLJ18F%0i7wV zR)ps%$7ROxH1G?I;{t;}X7FSdFixDGEHH33xKojhGmbg#8Q8xW{5l))dpFM92igF7 zK#@9><0>3;3}k`UfF^(#F4UR$t;H|Lpc<}Iz!z}bYGAK&KGor^DNb5(uERKgGk9H6 zoEw0<m2;OW$LS7BlLQMD{J)fAdH6+nVDLE#&cX3i(7ndF&x5Z7eaXP{4Su!3*#<U) z*cYzKjB3ttIoi04f7ixoPFEx&(~{p9IRfQcFCL6oEY{1uY(ooAxBepI72BidoevX^ zF`p5A#W^nDIX+^WIC<XO@u-nCxF`0l%>3IHYB99gg*lPPX1BFF(}_IB4n!?f;zKr! zOWTIJJe%eGUTf@C=Mz>@7Fo7@#O2uHc#=9~-KK%A2Qkn_aXiqLar|)H&_1$Fs2>Kl zffFR_?!qz0zygpAs;)W4Ic{k~+2?3iXdh^2XvgjXahyw=i$krJKM1Qq^`Hg<C8X;2 zv@;BHY{`BZ)K81wuyM>jw@x|FvBDtx!u>d=jvoST05NRTnXv0Tgr4Goee@Af4~VvO zE9g-W$N#;T{r-l^^KTg&`LzFopPYDTXvXZ){C(rz`pHLcuUgr?=bL|j_;d4DzW4aw zzdwD&_4nu9|54Tb&zx-A^u=E_yj_)JyTs9d`0m5wu6jJ<iT^zC`4{i2TKUy$*46mm z`o*W$efNe(8y6q`r1Fa&SpHOBy=KxgzY6~DqxUOnUTZA==7tLj)~wn-b?+@*pJZ(* zoKU{;#Yw-vA!EaUX8B&tZPO0kl==Sie|`1#BY9;DzrA!q(Yvcww*IlVVSd@GCmt!d z{eyKCYj?bH`z3dGM%;Bjz1W+x?}1-6?C8AZ`QHXs)>Z!Pf%6W}$=Lb3cc*Cge8cj3 zPV~LX(DA=s`NRB{pWQR*wz6k-&V1>rC*9}$@i!lgeR1oDV;j$_@NRi$hyR1QcNK46 z^hT^q`-=6*Jv9^G+dk=+6LRl)|Ix2LcIAv)o>`me{?1$0zrEk|(i@Mj|MZg1nhS4T z^VnYoclCU(`(JAo#^(O{^_Q1h9-6jd#s}70zLB@=%6Hzm`;m_y`oV9CzGQuL?bqvm z_U|vPcD>w^@q<T7SMAJMw`x(-FE72M{n=nk=BB2Xi>BDGI68UWpC;vB@XEmKi(*Yb z?>({P*~c1pkNeOy!~2sxT^}}l{=%boJ@nhIzg_p;^S<^q=d};FzjkNg2fz8sqW!Ng zUtY`U!xTC>aT(!a@MjdGLj1qamr_k5-kE>`|2j$j)1>QFd(G>Yo|i~~_(nMy;Fx$I z!z}-9Qu(&SV8|e@mxdlEiQmhVQXNlDiochWkr5dGA_>54pu?P4jX?RGSrX~#_3)$- zc=)WG#Bfaflp!M{{vZhtD-#msQ^zJE5YJD_e>kbVvXkn2ZQ^oK{#%p^F}=?vU4H@E z$N3`|W(3NMQ2v2GSaN75uf}TVo8!?Aiu@$XXZvv?{_`lmTakOAKX+e3emN!z_X`QU z9O?D{FoCnNK(hVJl0!9Iqm9+d(O+ze{8E&xPsM2ee#A$zB7O-DoN9T{|7=SB`z)H) ztCa7{><>zQry%cB@F!?5s}lculy^W$e=Pc=8}~a%MYPw0jIZFW=wGpaOUQSkJ)BDY zcOd^h1)o6uhZMXTII5KA81j!Q`S&6Jpi;hJ<kzp{_bBp<DeZM5^xgM-qC8(hdNC!v zCMZ3s#D4(&tyU?|1JH+EiGLsTZ&k`yjrt5I=}%yLDCOCL{D&0zvru%cQvUBF{(yqB zF}@>8`nRBeA3=X)dt0>+hcAVGt%`n+&>kq|n~L((;(B&-_NRQ*C#s}hiS~;r^?Mcd z=~b?O6#Zd9$^UW0w<-GFh5i>&+N%)xM3nk&ME!b|^j9GNh*JNTP_Up9|JNKpO8!CA zbZA#%Jan+XDE0k1(i>9n$B1uL(jSNRS^0CR?~Al8DF46@B+k_;&|hkm_(K>!cBOr0 zqd)X3_)4_@2Be2(!5Yu1O-21;O8(_Z`nd=8!>-gno8w1muNzPvr&9k#NYAOX_hsmB zK_z|w@vZ+4_wC4^_Gl^cI|K|U`okO0hg+%77__Hd(bpV~C#5`o$a|IiUd4EcDD_>0 z@>`YoucACLCH@c4-)fQnbfY|{(B3iS`peLMeTqJPXx|~FK6OYhqO{+ake*FR?{1C< zMLq<5_bKWB2kO(Sq&EkOi7NH?pgeY^yx&Iuu2s@=q2+>*%keSH_EX}&1ARo4^2bo0 zpmO~ov`?*~ze7l`SCKcPJQ1b+TG-!}^uB`lF{Qi}C|^*CzYX=XEAszB``HvZ@BR9e z{GWilUrGM}+RvuQGf>`M1>Xw&YfAbWp1;(!*0qKT>+$qO^W56uS?X)_hr+%#SF<-1 z@`W^yr?I6q;0cAjZDEf`^Q@?D3KSL>c^1z$E}ZRhReIO?+8i?%`PK!!^`*X0xUF?v zSqI|ABNe+`i(Bh`4tt|7yv)}Y_I0i>M?fm>R(~Mua+EbRs8>4dE?23)%~uz0ZJQPJ zwugM?3st#eX2=&_67&TYR4()T?k#gKuJX)rxylS^N_M8pH7^)!_SbpC{?>r2(44BQ zRB>ydtkWMh3ysQ@c<bw3P5$QkGIy1oEi<CF4isl;Ygpt^##&WZ#N#;31t`-z{(wKM zrXtHQ8)XPUBcc$Z_3bHIfA+k(I$yJ|t+mC6xQl$gpt;bdb}9-rdE0#TvR%zFW%Zz{ zs<pm*Yf?%J9d)gN4rsEvb?Jin^W1H%Vf3TslyMynBy~r~*H-EcdsD`k)!`2%x3Z(S z3iYAdW#UC)f8AQqj`3EM{b~+c+TDsYpv#JY+u!MH4wWrk1pUj7g$7P2DA6e##d=dH zy@nk(Z8OiT_tzUO?G5`x4|5cuE9s4|Yg*08G0Ww;%@=5|2>V(pTD*-u#~eQn%b};m zt!*vdW^uC2y{N9L(8K;Zvf5?0Rn7F2cTia3axGcC28~i?s*Y@h!Zu%PTRp~ZyjS|w zvKY~dp^a*9qgfFnvvm~uI(&ifLT{iR-AdFHZCS>1rp#qGEu7tEn2tOB;il@=_PVB0 ze<<h;*EJb^cZAm1FQnGY#gU0R&b7Veg@v=wBPv3sK~Wa)u5R|#m#tPC#er6lhO61v z2&FoT*80}X_tvd-!8)u({FIiAV>{lb-KHoh+S1X2KA<*bLX&D?3=PdeyR2A3O`7wT zm2=qj5}$dL7q|IB?JY^>GM+?HU7gU8FH{z&M<v<4&{wN`;q<DG7aB>2z5al?bSQk4 z|32Rc3m(sM6ca=VYEGlGd_>ZmJ_-xb=&n{6!$6o>nMb;jzo~O320DsmQj*csjzZ*E z5n9?F2>1g@V**i@VyuY@iAjl8p{Qh}@ts|tYR;4OE}~&inK||Bh9Sm?N>#SPBE4+B zX4sVu-@HIw6O18eNfA9=X&edF&PRt1j7qh#u%&4x!a}=gD4l7NFD#5t4VB*2zGi8@ z&2=0(NQ&Eo^|Yy`>0g%1QE2qnM3o>CJve=Tl{%)KiO<8PmX^t5$m<hk1C)gknYL|9 z;={(}4Pe5hJsHi=8Cl(uI&X7xLwlf3TyGS$EXk56i=UakKx$LOUQ~s|d`UC4X~yTm z>rQ`wqsFWUwT;BQf$o?xMhV8Az8)|s$hdwsqzl^odSftWg85#o)>7Cv2aRXk@TZ@q zrFQ<I9&HqiD+8l-Oy!QJeYS;@kxn5Eg)#)=w#U?;WNXwl`@Dhnq$QXkEJleq|E8Lo z&1*`(DT*v{inVH0oiE@k3cy5~RhMRR<ANmR<Tlz~s_Il0%P|`bR1wmLq%qT)+J;LZ zeOZ8YotS9lm`=<<NNjXtS}gc<(`l@}(+%19&`vD>3`G>xw|Vas4VLa&rQ;>aIO<sv z3nFxb5jQL&nxWXRDQ1f@`ldj;ySy#Fw$y8D(Q#8vnkMC7YOe~mVQK0p3JK0dT)Dp) zOWZ|us=AZzTV}SkCz%UOxvtjWI?Sf9**IWAD_R5kS{W@bj!h|!Sm-BAqp6Itrxo(9 zjCVxUZQg*s<}dZvm&0<0n#}#*P;}fvre0Pg4LY@KGD`>TTT<sXFC)#jbIH@FQ4nLb zu?%-RSc#@At3xabl5b^9?O-G(4f1mHj487!LWvc7b%wj4cqO^|stD<8OSxD!<s4rC zIvn11+?gr;dlW<Hw$_eO&X!Vd(sn0Rk@JgKT2xn;J7zU=k-=V86>j4i4jooZDM&<2 zcf6_MnDcdp=QaBq16YcO%W$`4nhuN{3-JWOeABs9sbl;G#x%7SVhD)rX@uosL|Eih zb062R$vKQ%OD9w!`kh%NrjBP6oW@toztmS+T}Xp_E{iBxlrt}K3ulSGV_GDp>_SF) z9bC#+gycv_t`cV`$4uTdv1NJl91<<dhNp~Y%I-@!QvcBvn(P53ZN3(C)OpR#ayi5z zxQq#%1y!En$i_*fX@^5kDRDP0F6QI26c2Dlv%pTWy)a7RF^=*aE44|XDNtqr-4vj{ zVtA;HD3!w-57l;<jDTz?riweK6n7`d+7yren5J5YRB1ZwNK-x^G>uQ$(8`Q_R&&B( zkn%}o`rGFbbF&;ViOf)vR7(^*NxhFd*c|a^s`b7=s0q)b_+%B*P`JMCh8q~A7)>6y zcMW^evc(R&$5YqY>0Ryba1`P=<oDF^(W@uCF6hHE!G>1$t@>thV~`x*;qi2|q`JV< z*xBg``r1OR0dKQEyw1~MXBk@b>~YjsSLX@o<@MYVxYr-3$CF<^E)c~xN?EZ4&wcCt z0S}(K*5gSquESO0NpK5p|22;fH*8)AR-?S)JWd7bwHZx#3ONI{sB5~{=MRL|`e!uy z!!wKr#y58A+y1!cZ-!xBwFNGhXJ&z2TTods-{mR9k*lU=-uw!WqhO|fvZe+Ritzke z!%LwNf#>ir{|o_-_EQGDVnNV<$>mWZ^2jrZ`1-YsVToUv9ADx@+B}mutEa(Vc{T&7 z$&fhGuaehEc`|1%f5Cedyz0_yAorAYc<Yj_J%V>f43v+@v6Nf=d@GctJsy{5YJTH- z#{bO^*P`hx+SA50;c1WKEk>sHT_gU`?=3lFCgHse-cx2@jdbxoCwmR@CdY<7zAwrS zA)x`hcbSHi$We(La;Pnr9ICUDqq5`4{n%4TUWI*-<W8hVj!iuI<kw@b068`+O((w& z?@h=XG_8od1N$_|QS!Oui}0R}{6_3$CC7WEh2(fYQ%OD<?L>}^LDl3BX<7|AHixYw zM~!RAH(<{aIW{*nk=J1lBstzY1<A4TC`^uxPo3m=KeL|Pf%ih>*Wi63d99{xCbwZv z5qUn|W05b=v?s`K#@-3?pr$=dz8LRu$P2K?f*hNgwvmT5Z9BOa?}f-0YT66r(D+Vr zyieLiUWWHh<Xbgu4>>fxpS%%!hsp6Cs-L_I?-$9jiR%b?wWb{-=X*KwM>XwD@*eCd zCZDBgC&;nka)=zA>LfYdo1G$mOw&%2b7LL)$9Z@kWg+i|{>kxvG?%;?`X|RmvGL^S ze|hA~pnvl9&_6l)Tt4|1pnvj*p?~sAp?~sH=%2hC`X|qW{>krw{>dMK{>gpNKY20q zPd)|uC!YuXlW&Ip$u~m(<N@fP{0``!d^Yq?z6AOwzYO{(za07}FM<BaE1`e#E1-Y! zYoUMg`I@$wd^+?`UIYD;PlW!-H$ng84?_RsH$ng8Zs?!99r`D~1^Or70{xR0LjU9# zk2}e)g#O84H)G^Wp?~rg=%4&5=%0Kh_8E7-Rn>LEG6+p+cRjc}2VJ)3UrrAX4{!W+ zID7E@G0^yN441)t=(y&t1G|T3ox;c;o_rd=yk>Z^22D5d@b~~O8=h<-rtEmXz&XUY zT00&SIF}e2(vJ5DY$di4_X<3ocq(yJ;5=eGaYW#W#As>lcu-&)v6Hw~;C$kR#BPD7 z5~BsR<4%F66Qkv|<931V#I?jWfs2S)q2pG8ONfKSn!t03JBf!r#fiyI;t278z@@~S ziTed!NE{`O30z716mg%xZsK0zUV*ELw-HALt|9ItjtIPxcqegC;9BAsajn4h#QTZe z0yh!&6FUWNCO$%J7dS{fKx`8@Ogu<z6}Xdlh*%SNJ@F~xp}({K5n{|PsK3A)i21p} z@qU3f6I+R60&gMCBkmJ8N^B$U75E9_sl-u%pCYysM+APFxP&+;a4)fwxK`k2i5C*P z1>Q#NCUy$Eow$bBE^r@lEwN4D7l`?J#Br;@JBfqDn!vk=JBf!lPA12QBg6v&?;+ky z+%NEc;wW)U;Df|Z5%&q)Puxq~EAS!WZNyQ5j}Z3}M+81bypuR6@Bnd)xK`jdiT4w` z1s){sCw2;ag7^rrUEm?&0b-lLCy57%tpcAS9wOERK23azc<2+>UxOuS;_B@9fWQ{w z9O8a~bBL|PF@bZ5^N9Ndwi4Tjdj%d(%q>mFqXOp<+leCrPb4lO4hn1|b`sYLoKL)v z*e&o>VmGl<;OWFQ#CC!0#I?jWfs2Tnh^+#b5C@4hf#(u;5)b`NjDO+?@qoak#G8rx z1zt!TC5{PPN&FOXpTKV7UgBPXtBJP}M+L4S?jw!}ypnh)aZun|;uvwQ!1cuYiQNJ> z5%&{21#TujLTnc}NIXDn6F5vfNNg3jlX!?&6L>xGDdM5Oit$gZVJUZfK;R9;ImG<} zZzi@9#{}L&oJZUzaFp0a+$-=C#8Zi*0zXA;CyogGG;s-WP~cu-CvmO7&k`>rb_=|X z*iGydcsp?ov0dOk;#y*xz%LLt5nBb`NgO2B1l~p5Nj!8)jDO+?@qoa4h&L1W3%s8= zN*ojTAn{YgeZY?Q?(Y6W*PBD`>ZMJwmm%rL&+W^aY(K%bTR%jHI~g?vW4?}jehU`Z zTKg^Eih{p1fUmqBeD@fBU-=}n>)nhwM?zO_-2oe|b;UBi%_zg;H&QI3&pFaIxHp># zWOVJZ+_h@=*6<W<>#pk<AL)0U$otlth`TWszL@ijhJ*9>S@L;qxc|WJ<no~OT_^0_ zEAyvrU74TP9nPQLJu!c9CVI$V0W3zhC4X=eENAy#o<0V{(LL0I$UTgBV%2W_{2rb! z${##|m}&;Buj93@6ZuF#2V_A(o<PY5zm3LI&OOa@GnmcFd@Cqdkv&UU2$NUWo_y3c zs<+J6pU3N)Gk6J9+g+A(;P?sj@f7kuGdIe&KqX0Xte?gY9%6*ugOhMMs@YwdZyCJ$ zFT=w<S$kcRGjQg2*@M_o_&Zc!*qt}H7wVVM*5JynJ>zN7HBq`3uq?#~2XTEM{UX$Q zAx;i{{bOdsCapqFj@ZW6!X-Uf`%3fktPq2bcOo5dD=j*BuEBFS!hkKCQ4C}~?9S=h zQ-u7w%T59gTF?MJI7G^RC@mV@sux4=Z{vGb<?PGare8WZNUg5I_2chab^Je3{OHyW zrMz7ya(c>g_GyfM;P^{S?F{m-jgYfFksnL77?srX6`AdBh$hNIc|npqD&)!i<prUC zwp^kQ?c%v%YHMVF*+ZEN<?2e?U*2MB><`obJfc6`xvc8J6IhySMkOj3_ZN=XhF@Q_ zVV9wm+rhWqAETlWQDecVoFOzBRGk?^0iI!x+S{Y`I4ir$b`6G@%3Qr?H8Rt(f$p+x zSh^q0F8PHe=V*0)&XJZF^mi0}Y;YrD^ptJGh+<b9zGD}Tm;o~zY%)?d&aruh-IYCA z7`m3N?MDzV2gPFt9gcFLsK?9Uwed9eaKIowPM`)k^TBg3MzQ6^sKq4KVi$|Ockst3 z4@$rF{(dnuo;!)+jX}+hmhBN$n9C}Z#f}_6RT1xKwi73gyo<W9W|pI?o;tc}^U+n? z2DjtN?)50={rgcYR7@|n%r;(T<Ufu1&qZC2mTm6dd$ep@kM{ZjwkFbNx@AuxGtpXi z8i~pjnHp=$3dU0u19YqJ<Xv}rU_+Gg(RE^K_o|cK?Wel$KRtN*BlK8Hz7-9KYQO)d z;o%ouOlh|x*8TgBzTdD9H&c5TWU_Gw2O!;-wUDjmvON0=SQppTF>z!;3a7*om640) zU`Z}{0;e{_!uG8$3&-kv)bkj09}CMKJ;bbrdRCq6X+PC-|7n_6V;rNICgwX{8;<Tl zly?v6M)x9W1xEK?j$u7ue6e=%@IQ{xE^3Z<Bx93QjPL(e`5wd|IE|^`-7&fqPp%*3 zIhfYpouJFR82{b#&HC2un^2rnS6n2nxJX=a5vjNX$M<3s=uJ9`^bPxWZarhLjsr~^ z<zn<gJwH)D^ZX9`G>9h{+Jn0<yBZ6G6B7sj@&WA0ORu6?ws!G%+P+tYGdB*0^Bo`e zlvy!iQQ=$;T-bH=y5T3DXRNNh8FM~ud%bJVL@^|KCg!8#AU~Af@~uNyEOeb34u9?? z9yLU}-n9((_hjKz`^he`=!nPVy(XVMY_Y*MO~j<R9M2hejsdflmZ4>8##7{*Yzwjb zrqy<5Yg==@h=8AdSWWwjSPp?AJMq0eNCORE4drm)JxM9vy>aUS;x@t9#Sov@VqA&m zmOLIO!k2GxHMfR*`W94QeL*nLsEITBu1$e&LqcuXk`*Y>L|HD-%OZ}&p@_vaWtfh^ z%kLYspILJF9f=LZ{pwB-_o2J7mz>|T@EZ#5^X9iI++Q98wt;gmIKS73K^DO=_tx|K zn?4*nu}|I&UJK$kCES<q201CiH3PVw-@5R71nv>%cLx2SS{(Bm41QO^z4qL%&OPWu zpaC4a!6T3jfXBeCFCz|!--Xly^LrpC(y;M55WgSjW%-y7Xb89u@oG`OAc*_lxo6#m zydvP-U*E^;m>=YQxW-Nya4mQgJc=}|NV6Zf7i0y+81JVz24RLCX4?i4Pea*iLEPsa zMLdpS(e7+tobSW=UR)c2EP``UP%kKm^lKsG_Y+o>iMD~)^+RSyx<SN0Wt@v3ZWLwi zgDeJe*b_>puBW1JO~kbWe_;RWorhC+Qn%2RaYfe6v;{VtIEJZaI*#YU^sWbg8vH5n zUEnW(9|Pyj`dkd>6Fd)|i>34l@TuUr7$2qJ)4^-OE5X-;H-m>Uy&nX}*TdQg@a^Eo zFi#%@-;SjYZ#s8@zW{y^oHvEXz)yg4-J65Kb{ae%JQwR+C-_A0mEhCCdDAl&{0Z<% z@ILUB;0M8*!3V+DgIkc_)8IDngWz+)r$bpa;CR$2LdJdW%B5PydVZ9FCe^OUwOBTz zzII6SLEB)#@EBUNl<c$Q%p03Ce`Dr_*^8}N=iPDs(B<c!x@LiOjDC3fnz$bVq$!fb zLrWy7r<jK{Y@nS;53d#AEWt?2)s;orToC7MJd#exa7bAV&p}_QWMPObkloHWGR@Mi zEY|N$&_c-Y8bPyED&=3K=h=tz+aR9|9=~>hE<1=*yCB1(@PrJ9EDsH3ERBq_&K}6{ z=r?hlk){o@{b^)#A<M<|pRHbpV^M#|v^26XWGB(bQe78?Y%q;%J7mYw$o50lpGNj3 zWP8%cFg<8HAwyRZbuVRKG3qc8vh8VPC6M)|Nt56BJ&{Hhgluyf*%rvwr;+iYPB4vZ z4`ksqGCrJPes~>_(5+Fw(~xn@->S+Cz2{*(4q=U%s^1quR+OUOv;Xp8NeN`{pv~j` zv$89DljY$o8&2(kJO_5_0FEsymHu7%aMmVEm*^71!x`2*98J1#zBU7V2?*zM$Aaf& zd$k(8g8;tpBD@>AIr}FWS^zK4J`10<z-KM+SqpsD0-v?OXD#qgZvosA4M%WK+{b%m z1Y(&9r+P_?u=wQh9R}yVAmaB7&V5G2+)s27_?_Un;QZzuTTH~a_*m*|+aI*#{Q1-2 zR&5jZ0s$X-9D9byyLDd{&*M65SrL1ZkfaD$T4*PKZ^^;3M(YLO+It)bTRk-A_boX* z&I89*6XC}R%Lk2>!7W<rw(p5YH?2%#2zc}V(d!9#PJur2<ONf3&sYp92Q33NfI2{% zKu?061ML9q1sw*x4f+@~2KSN^KvO`)pmNYMPy?s~v<dVi=sD01&|c7C(A%JoL1S>= zIRP{UR17KyEdw=xIzXF1PlBEU?Evis9R|G(`WQ3@_o@>>Q$WR_a?mnR1E>SE3G^iB zInWN!UeICC+n|p@V{lJA0W<|v3@QgL12up;K$}2Mf}R8I0PO`G2E7gX7&Hd=&J#dW zK*gYP&@xa1r~|YK^d#sx&<@aE&|%QqppQXga0fR5GzC-)DhDkCHGn!mn?O&3o&)Uw z?FAhMy$$*pGzRzc6F^fy#h`M~GLY0Ob{^hjn|jCU_CUDZR#Z?_F!RQuc7bM1)3K%% zgx0l$y{o~)Z8~p~NBA1g*A~<Y0<B?R0X8h&81^<As4>u9u(}-|h~Mb1*9wT5yrCwo zpnhEd>FGS&rc3ZCbqIS!O~3;gw%9Yieh_R9YX#yn@dA87k7Mz*T0vW@*oIl)Yw|R- z;X@ElQ$4Pf2uWhEr?0cl7Yut)_-3D0z^|%9D1gq^)FC=D@wWKu5W5u#<EKF6rl*Yk zow%sAg<I!kyN!lp+mo;l9K*uLC5#2fsSLCo4A+8q&&GJd7bOHX9Lqo(!hk(V@pzkI zQ}~>K&j@6Y@fP9)?F`eS?cu#<HH5S|42(xA1>tc@E922NF~T7jjpTTXA*Ov|Jld>7 z*zX4?pQ0>CTBOC-H_Je@IU?TUhzH|D+a?3!GTaS<$rbt1Hf^4U`a&r4<@KbsAlfq? z)23~^9`}tnW?L~I)`0=r0a+Yz4Q*oH4Z2N~=`kKVe3ufBHq?oDw5^OsdoAPfofXT< z^R(py1^V+CKoMlV4+F_~R@gf04BRt{o9{$C#(i9gM}Mic#dy{dAA!2v=M_&W@#x28 zC7zne=R}mte7|ADW4lBUFM@cyZ<fJk96Sfk@=+vwn9j%i#1lr4>Ae6f<GFX^IiU;B zE!e<Dknvsymht#Fs$_xgM^DC+N%tG^n1t}niVnp7A%jfsw>ZIT7>_UIk0GAYEb;oj zuEgWZ_cswwrU6m>_zfIWXG~A{d}VsbK&ph-F#QuCnJ@S64&g08a(cucD)BfMpF}*q zx0iu&NPh##^!oA4v;X$g^<X6C&+_rv=n=#_iDMaT#z8jXF+ID18Sh%-n2a*gI1tm4 z;S<E8k184DA-U2$v|K#U>m3UpjyOLD#5zzv97Ae)+Z#0Plgn|^2r@m1RZjaxta}C4 z?U;`BoN2Fgtmi<xq+{leK>LG`B`lY2XLL-B0>hr@Sl6ap(_|SvhW0_1vljZ=NXHil z%<-;cS~7iH>zFGx)F0zl$Fu~R@N2ANG!%mLtCVGUiQ~A_<$BNN_|h@80y}_lq+_no z@Ei%_MaTLKz;U5tuI%*wuVZ}$$bPP4-GIuqSe94;VqJ&+sLT0;QeP|T7@Khs*bjBA zD^PzH&-Uf4ln7a{FsfcH@Uz7hk>$f~dEt+i<C9lqXqSlfrYv6uysOT_`KYm`$b{dm zMZjWLjfj7R@P)~}H`H_n@^1nkQsO7)&q?-3JiqbUgTUDNVdQ_Y_8735|JQ)+hCZ18 zkAP)heSRtdIPrggbNych&iH=>=Uy6S!18hYaUYGuR{?YH3^h&p9Hqca?>1oGOQ`8_ zGl9IG>2aTh#7vKSD`a{>V5#4X%uBU(zz2-_YnkJ<N0RW@foYFW94#aBGVOU_zH1_8 zZ{vFt8HnFV!k-YMypzE$M*XddabWy{B<uqYD(OEC98vI#z)=Ms1Liv>Bqhr8DKPt= z9hiQ+E`bT?Q{?l2t$2^bH4FW=tpPq_^k4dYy9YR?#Qz#F-&@J}e*o@R<YUm$1{8b) z@Q{L67$!%SF9OVWUJ~yIwki0Xr1+W0SdK3nMh73VtA5fZvS3DFd(HxOE9tEU=DRaS zV|^dT0pBI^62{*H%=fo^Z$kaN1<ZH2v=qd7Fo}F`2q@w&2j;s#KBuNU2+Vi8v|Lxi zvOfeIQR07t7;;vNe%-zUY(x6hBE7NN_ke>aA1y7*_gi2YSiV02^IfGZ{|$&}SFjhD zJMnnUxXeqm0C2C8e-zk;_rM1rXL+{)A2RekF7tBj$H09`{C?n=f<FT0yKY)O)-PM+ z#N71um;*eZ#9s;AkMeOQV11qj9#Z75CS5-aEbaZpu=m-RQuxkQrauFi?{6h;2DU4h zep1~^d;AJ`NXh??z)mGT3+7hvb-+&ShT&R+^`oE5T1CDBnD1j{{*M6jJ-_T9yMXzA zSIW6~k1F^|V7?3HWo(Z*z`crm4RD`=w*vFMGMZh)e-1dN$oB*DyC-JI@%=V%zaqaB z6Uu;sX8}iHf38G)>i<^YUg*;%uD5C{IRP1g{VkY;cLVc%IHOQbKbkfLU#U;w6bt#y zz<ft9@k(H>!*x7Xt4oT%m2xHi%fNg;F0aqTz~Vb_i3@<;s1Iju*2e{WJ?bOmh`a(g zsMNO=SO%8=Ux0g+^!5VxDfk`Wn1aV#g!oGTas#V=9+v_4EAck~%fS4;1I&F4H{qE2 ze^HU!aPF51X8d=E@hk(sqCLl8;^KY<iLd5FW(3CH1Z-F2+km;3fNEraei4{^6l8z; zHL&Uj@jQJAB~oO1bAjDTdNsh@tH219Kb;i+AaF#He+V2^a6T_G0uM{^)2GP&z|y{3 zVc$D|521ha63$0o1m^w*b{p1b3vf)i{s6EHJRHQ&fFi#DOF)~Vzb^ng72F9tq{RO& za72;62P^~ApMZg{&X?B!Tk-6OaVTF1%)K)bHv)4{hs0l{9QNaO5r3?95SaUBr2IIr zTfzK3tsnYZVZ^@_nEP&I{8_+31vdak6ucQYs^A|1_bRv_xKF|S?k%R^X~4B;57~e2 z(3i-}UevcE2|vo~mG*lXct}a_2;<{fnY{k5N!O3VLsy$3p9##pJ~I9?V5fq+fcf3$ zbVQ&%d=c2K$lnH*f%^FrIH<@cVPcD+eL26<p4<o=1ilrR<8>Y|_x(UELcR_-qFlcN zSX1iz8Zh_k;H+pL3vLm56?`plpMvKB#}vF8xL?8F1RhZE{{@!8hJ)WJnDsjiY>nGn z`02+jiCwXmHv_AFc9#RIesCj<uUx+eSO%v5I<Q-jYjthmP`JIJp#Z*HJg({`OFfkp zRn_$0=_xg#TV0B%zSYy%+`8J^>=91}J>K?CY`1F(Hp8W4eZg#dp+lp<<FD@|nyKlJ z8|&L!TGq*Y$`+T3Y|59;yRFP45wnrUiCn~ENRbOaCoiZA1~p}mp1__3l}qN&tMqs( zJn-LW+QXOZ2dUEGFr0|4fE!GcM}|uJji9%K)Dn7m(<O;*T*84zsv;;`y=H}k%MW-m zC|$mI-fa~wGy)&bdc19I-gV+rc+&~v6M3UbOUlcu%Bnrp^X6BUrE(uSTXiA@e*sSC z0)8BCd<U<1vy{FOWP_Mmsnl-v38A_!8R=3?m7aq)Rp}DqTzq6XM(3?Eg`<#k?oAS& zp3df>L$=tcoNk=iJ(1x8A>mv~rtP4Ao@8%2CeIlEREJoOQTf*xjbo3|dS^5Bm1O^N z>2&1yZ@OoRyK+i$c869MBUU;=<9iF~k|N2Cg-KPZoeszQ^Jskaq;ayA)`O_*AZK@D zWg5tiLYkI}0E`G659)*36k(>_n{a4+r@y&b_{b`Um!`(H*7juQfwC0mtPpjtYr?f< zb(N_sDV)kEZtog`o~C;>-GxX(8}UXTjr&Mh{6q=j&Y7g>oPEcR*83e@vFOvNF{O>D zgYbB4_Bg3FTVmeu)Q4I<O~S=)iY80t7TIVeF-Xn+XR9mHs=zc<&&^*|3YTTVuTBaV zM(5n%agCe(6UALCn%sD)?PID>3TM`a7tfJh;;bId;+-eqL^a|1=WL$;;uoLIr{u_< zb{22T(wwTjs5G@lTj@eK$v_%yP5Y@h3#?wIrl>Y?ye`SklG18FU8POEvT%-Kq~Ntr z*eIGx#YV}>j_@!qoiUw@`?9#pI@M>f%t5Vu@<K^Az^FY*%aJ+KqcF0A!+cX_sdXpp zhIBh7OuVv^N%H<>THq!Mdv0#nl6(l7RAnqD(M3#O&gjml(k@0hH2=xI`DEqJ>V#2h z;B2lBlO0(Zl@V^Ily$X{TuG9je`6J&F!~86(`mfP$L)|>K-CvovZ0gxbHoTpSf#`m zNMn_lMoRBzsoZdzRIEF%^!STQiVM)4Ji$6oxT!s`wqSK9Ercm<vRm!=a2x3%GPxBB z&+ch2`I7YiA7Qj?+}m%m$H)<m-OkPFs@QZhvTOVU?jlWI*+-g$RR6${s;8xG_tZ{j z<q%5TBE_4QcOlZH;{WtN6r}LlTcNfAx>pKYso%jS`@T!<E6?dv{KlCT#!8->Pf4Rw zsehO-ijg_`^+J+GKdV1Ssl_w?)ryRC4*$oXE~k|LSV>n`)f1>kz0soYKWMNjNu}|w zCW{8gz;(ihV#0_)l*+53qQRubk`FtiiIk=_{eO*&Ty!P;4AX_Xk%DPn9eIu8-2Tep zEI$0>O_TmvK%zUHy^YS|#aZ>!m@q2wmP_TXG+sa>R@}hW2(QCpl1XtZaHa<<ruidz zJ*azeuJpn$ep9MHWS}cilds$40?HMQD4#yj*M-_g{JD-%9l2OeatwXWKCI(yi1{+^ z*xuyfG~V~m<|bV>G*U|SA0RR(VM>$TM5lM9FE1PMmqf|!H>yAONg9hIoq!`dK5i9% zouS@Uq<L0C)11;Fy;1DAr}h+nP19L?+2Cnhahq3lCP({5rb#hUMLFZY9wbj#X`HpD zE5A{SGr4a!Ic~)w*6^XK7)>J);Zr>RM<a<*A@7q_gDvla)N_v6EkZ;1BHo36tyqow zHMnDzrZ>LkGnr1={))%m(fiOJX?GKU{v>Qpsy`r0zEh1CP-zA6R}e{~U6xdx*G8Jh zb8$_anAg%Q&XbE)ct&T+$$!BXzdC6grs?Wua4B!H#mNs8;_agT0a+sN5zocdKX6I6 XcKC;S1N3M9Bc6C6WDyhp)As)Xhm2s| diff --git a/HelloWorld/Release/Linux/subdir.mk b/HelloWorld/Release/Linux/subdir.mk deleted file mode 100644 index 954fe8d9b4..0000000000 --- a/HelloWorld/Release/Linux/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../Linux/main.cpp - -OBJS += \ -./Linux/main.o - -CPP_DEPS += \ -./Linux/main.d - - -# Each subdirectory must supply rules for building sources it contributes -Linux/%.o: ../Linux/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/CocosDenshion/include" -I"/home/laschweinski/git/cocos2d-x/HelloWorld/Classes" -I/home/laschweinski/git/cocos2d-x/cocos2dx/include -I/home/laschweinski/git/cocos2d-x/cocos2dx/platform -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/HelloWorld/Release/makefile b/HelloWorld/Release/makefile deleted file mode 100644 index b1640a4617..0000000000 --- a/HelloWorld/Release/makefile +++ /dev/null @@ -1,60 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Linux/subdir.mk --include Classes/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: HelloWorld - -# Tool invocations -HelloWorld: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - g++ -L"/home/laschweinski/git/cocos2d-x/lib/linux/Release/" -o "HelloWorld" $(OBJS) $(USER_OBJS) $(LIBS) -Wl,-rpath,/home/laschweinski/git/cocos2d-x/lib/linux/Release - @echo 'Finished building target: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) HelloWorld - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: - --include ../makefile.targets diff --git a/HelloWorld/Release/objects.mk b/HelloWorld/Release/objects.mk deleted file mode 100644 index 25a30a896f..0000000000 --- a/HelloWorld/Release/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -LIBS := -lcocos2d -lz -lcocosdenshion - diff --git a/HelloWorld/Release/sources.mk b/HelloWorld/Release/sources.mk deleted file mode 100644 index e6df4461ef..0000000000 --- a/HelloWorld/Release/sources.mk +++ /dev/null @@ -1,28 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -CPP_DEPS := -EXECUTABLES := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Linux \ -Classes \ - diff --git a/HelloWorld/android/assets b/HelloWorld/android/assets deleted file mode 120000 index 2a212c0a9e..0000000000 --- a/HelloWorld/android/assets +++ /dev/null @@ -1 +0,0 @@ -/home/laschweinski/git/cocos2d-x/HelloWorld/AndroidDebug/../Resource \ No newline at end of file diff --git a/HelloWorld/postCompiled.sh b/HelloWorld/postCompiled.sh deleted file mode 100644 index 467ba2fe40..0000000000 --- a/HelloWorld/postCompiled.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -#arguments -#1 is the config name -#2 is the project name -#3 is the cocos2d sdk base folder -#4 is the resource folder name if it has - -mode="Release" -originRes="Resource" -echo $# -if [ $# > 2 ]; then - echo "ok" -else - echo "configname or proj name do not assign" - exit -fi - -if echo $1 | grep "Debug"; then - mode="Debug" -fi; - -if [ -d "../android/libs/armeabi" ];then - echo "create libs" -else - mkdir ../android/libs/armeabi -fi -#move game lib into android/libs/armeabi -cp -f lib$2.so ../android/libs/armeabi/ - -#move cocos2d lib into android/libs/armeabi -cp -f $3/lib/android/$mode/lib*.so ../android/libs/armeabi/ - -#link the resource folder -if [ -L ../android/assets ];then - exit -fi - -if [ $# == '4' ];then - originRes=$4 -fi - -echo `pwd`/../$originRes -ln -s `pwd`/../$originRes ../android/assets - diff --git a/cocos2dx/.cproject b/cocos2dx/.cproject deleted file mode 100644 index 932aa82f6a..0000000000 --- a/cocos2dx/.cproject +++ /dev/null @@ -1,422 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<?fileVersion 4.0.0?> - -<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> - <storageModule moduleId="org.eclipse.cdt.core.settings"> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.502995704"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.502995704" moduleId="org.eclipse.cdt.core.settings" name="Debug"> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/cocos2dx-base"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/Debug"/> - <entry flags="RESOLVED" kind="libraryFile" name="cocos2dx-base"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.debug.502995704" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move all libs into the specific folder" postbuildStep="sh ../../post.sh ${ProjName} cocos2d" preannouncebuildStep="" prebuildStep=""> - <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.502995704." name="/" resourcePath=""> - <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.debug.1381795813" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> - <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.debug.493450185" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> - <builder buildPath="${workspace_loc:/cocos2dx-base/Debug}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.debug.148088968" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> - <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.archiver.base.1953133549" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2063289710" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> - <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.1363689121" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.182720845" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.1224978101" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libfreetype2}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libpng}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libxml2}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libjpeg}""/> - </option> - <option id="gnu.cpp.compiler.option.preprocessor.def.954744053" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="LINUX"/> - </option> - <option id="gnu.cpp.compiler.option.warnings.allwarn.1620989551" name="All warnings (-Wall)" superClass="gnu.cpp.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.966305124" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool command="gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.452615323" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> - <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.1079128222" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.debug.option.debugging.level.703039623" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.500257262" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libjpeg}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libpng}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libfreetype2}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libxml2}""/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.1531770269" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="LINUX"/> - </option> - <option id="gnu.c.compiler.option.warnings.allwarn.1446204747" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.697502414" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1826952880" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> - <option defaultValue="true" id="gnu.c.link.option.shared.978860202" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1429401820" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> - <option defaultValue="true" id="gnu.cpp.link.option.shared.1563119377" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" value="true" valueType="boolean"/> - <option id="gnu.cpp.link.option.libs.1265275896" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="glfw"/> - <listOptionValue builtIn="false" value="GL"/> - </option> - <option id="gnu.cpp.link.option.soname.2012475291" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> - <option id="gnu.cpp.link.option.userobjs.1360463693" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libfreetype.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libcurl.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libxml2.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libpng.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libjpeg.a}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.620370737" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.debug.857245124" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.673491520" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="platform/airplay|platform (copy)|platform/wophone|particle_nodes/CCParticleSystemPoint.cpp|proj.wophone|platform/ios|proj.win32|platform/android|platform/win32|proj.airplay|platform/third_party" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.1270689208"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.1270689208" moduleId="org.eclipse.cdt.core.settings" name="Release"> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/cocos2dx-base"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/Release"/> - <entry flags="RESOLVED" kind="libraryFile" name="cocos2dx-base"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.release.1270689208" name="Release" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move all libs into the specific folder" postbuildStep="sh ../../post.sh ${ProjName} cocos2d" preannouncebuildStep="" prebuildStep=""> - <folderInfo id="cdt.managedbuild.config.gnu.exe.release.1270689208." name="/" resourcePath=""> - <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.release.1907181202" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> - <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.release.294936983" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> - <builder buildPath="${workspace_loc:/cocos2dx-base/Release}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.release.1974622272" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> - <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.archiver.base.958073991" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1336291657" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> - <option id="gnu.cpp.compiler.exe.release.option.optimization.level.1498871898" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.release.option.debugging.level.1985273019" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.1571711257" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libfreetype2}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libpng}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libxml2}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libjpeg}""/> - </option> - <option id="gnu.cpp.compiler.option.preprocessor.def.1432872181" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="LINUX"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1506297979" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool command="gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.984270671" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> - <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1465078999" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.release.option.debugging.level.519142307" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.1095324729" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libjpeg}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libpng}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libfreetype2}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libxml2}""/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.1479035749" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="LINUX"/> - </option> - <option id="gnu.c.compiler.option.warnings.allwarn.2077117046" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.191330176" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.c.linker.exe.release.1375796638" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> - <option defaultValue="true" id="gnu.c.link.option.shared.10185576" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1659743626" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> - <option defaultValue="true" id="gnu.cpp.link.option.shared.1422544016" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" value="true" valueType="boolean"/> - <option id="gnu.cpp.link.option.libs.1080426232" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="glfw"/> - <listOptionValue builtIn="false" value="GL"/> - </option> - <option id="gnu.cpp.link.option.soname.1066283521" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> - <option id="gnu.cpp.link.option.userobjs.394630625" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libfreetype.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libcurl.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libxml2.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libpng.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libjpeg.a}""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.319060310" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.release.1254214954" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.43527139" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="platform/airplay|platform (copy)|platform/wophone|particle_nodes/CCParticleSystemPoint.cpp|proj.wophone|platform/ios|proj.win32|platform/android|platform/win32|proj.airplay|platform/third_party" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526" moduleId="org.eclipse.cdt.core.settings" name="AndroidDebug"> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/cocos2dx-base"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/androidDebug"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/AndroidDebug"/> - <entry flags="RESOLVED" kind="libraryFile" name="cocos2dx-base"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526" name="AndroidDebug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move all libs into the specific folder" postbuildStep="sh ../../post.sh ${ProjName} cocos2d" preannouncebuildStep="" prebuildStep="arm-linux-androideabi-g++"> - <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526." name="/" resourcePath=""> - <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.debug.55615126" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> - <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.debug.289263445" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> - <builder buildPath="${workspace_loc:/cocos2dx-base/Debug}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.debug.1312719223" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> - <tool id="cdt.managedbuild.tool.gnu.archiver.base.1051422256" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1024625311" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> - <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.1890339371" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.598132003" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.1360460941" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libjpeg}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libpng}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libxml2}""/> - </option> - <option id="gnu.cpp.compiler.option.preprocessor.def.1788036206" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="ANDROID"/> - <listOptionValue builtIn="false" value="USE_FILE32API"/> - </option> - <option id="gnu.cpp.compiler.option.warnings.allwarn.183315535" name="All warnings (-Wall)" superClass="gnu.cpp.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1920645677" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.870071077" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> - <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.208937313" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.debug.option.debugging.level.1295665520" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.162614966" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libjpeg}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libpng}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libxml2}""/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.1608881664" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="ANDROID"/> - <listOptionValue builtIn="false" value="USE_FILE32API"/> - </option> - <option id="gnu.c.compiler.option.warnings.allwarn.905428726" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.132105612" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.843553932" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> - <option defaultValue="true" id="gnu.c.link.option.shared.1868588214" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.698024693" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> - <option defaultValue="true" id="gnu.cpp.link.option.shared.1270683226" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" value="true" valueType="boolean"/> - <option id="gnu.cpp.link.option.libs.1246376061" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="GLESv1_CM"/> - <listOptionValue builtIn="false" value="log"/> - <listOptionValue builtIn="false" value="z"/> - </option> - <option id="gnu.cpp.link.option.soname.1993381493" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> - <option id="gnu.cpp.link.option.userobjs.614766409" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> - <listOptionValue builtIn="false" value="../platform/third_party/android/libraries/libcurl.a"/> - <listOptionValue builtIn="false" value="../platform/third_party/android/libraries/libpng.a"/> - <listOptionValue builtIn="false" value="../platform/third_party/android/libraries/libxml2.a"/> - <listOptionValue builtIn="false" value="..//platform/third_party/android/libraries/libjpeg.a"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1778443215" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.debug.780981785" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.658384811" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="platform/android/CCThread_android.cpp|platform/android/CCImage_android.cpp|particle_nodes/CCParticleSystemPoint.cpp|proj.wophone|platform/ios|proj.win32|platform/win32|proj.airplay|platform/third_party|platform/airplay|platform (copy)|platform/wophone|platform/android/CCFileUtils_android.cpp|platform/Linux" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047" moduleId="org.eclipse.cdt.core.settings" name="AndroidRelease"> - <externalSettings> - <externalSetting> - <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/cocos2dx-base"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/Release"/> - <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/AndroidRelease"/> - <entry flags="RESOLVED" kind="libraryFile" name="cocos2dx-base"/> - </externalSetting> - </externalSettings> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047" name="AndroidRelease" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move all libs into the specific folder" postbuildStep="sh ../../post.sh ${ProjName} cocos2d" preannouncebuildStep="" prebuildStep=""> - <folderInfo id="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047." name="/" resourcePath=""> - <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.release.1122072085" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> - <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.release.890244578" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> - <builder buildPath="${workspace_loc:/cocos2dx-base/Release}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.release.867010258" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> - <tool id="cdt.managedbuild.tool.gnu.archiver.base.1061870949" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> - <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1742516529" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> - <option id="gnu.cpp.compiler.exe.release.option.optimization.level.289795823" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> - <option id="gnu.cpp.compiler.exe.release.option.debugging.level.824050416" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.include.paths.540511999" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libjpeg}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libpng}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libxml2}""/> - </option> - <option id="gnu.cpp.compiler.option.preprocessor.def.307242920" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="ANDROID"/> - <listOptionValue builtIn="false" value="USE_FILE32API"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1036435822" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> - </tool> - <tool command="arm-linux-androideabi-gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.518312421" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> - <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1174848276" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> - <option id="gnu.c.compiler.exe.release.option.debugging.level.1788869001" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.917488555" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libjpeg}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libpng}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libxml2}""/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.1513047276" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="ANDROID"/> - <listOptionValue builtIn="false" value="USE_FILE32API"/> - </option> - <option id="gnu.c.compiler.option.warnings.allwarn.506945632" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> - <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1602098267" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> - </tool> - <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.release.215019684" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> - <option defaultValue="true" id="gnu.c.link.option.shared.438827097" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> - </tool> - <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1349397535" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> - <option defaultValue="true" id="gnu.cpp.link.option.shared.401181609" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" value="true" valueType="boolean"/> - <option id="gnu.cpp.link.option.libs.1515809509" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> - <listOptionValue builtIn="false" value="GLESv1_CM"/> - <listOptionValue builtIn="false" value="stdc++"/> - <listOptionValue builtIn="false" value="log"/> - <listOptionValue builtIn="false" value="z"/> - </option> - <option id="gnu.cpp.link.option.soname.2039202857" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> - <option id="gnu.cpp.link.option.userobjs.857042882" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> - <listOptionValue builtIn="false" value="../platform/third_party/android/libraries/libcurl.a"/> - <listOptionValue builtIn="false" value="../platform/third_party/android/libraries/libpng.a"/> - <listOptionValue builtIn="false" value="../platform/third_party/android/libraries/libxml2.a"/> - <listOptionValue builtIn="false" value="..//platform/third_party/android/libraries/libjpeg.a"/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.787272563" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.release.809967425" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.498886492" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry excluding="platform/android/CCThread_android.cpp|platform/android/CCImage_android.cpp|particle_nodes/CCParticleSystemPoint.cpp|proj.wophone|platform/ios|proj.win32|platform/win32|proj.airplay|platform/third_party|platform/airplay|platform (copy)|platform/wophone|platform/android/CCFileUtils_android.cpp|platform/Linux" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <project id="cocos2dx-base.cdt.managedbuild.target.gnu.exe.634598992" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/> - </storageModule> - <storageModule moduleId="refreshScope" versionNumber="1"> - <resource resourceType="PROJECT" workspacePath="/cocos2dx-base"/> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/> - <storageModule moduleId="scannerConfiguration"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526;cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1024625311;cdt.managedbuild.tool.gnu.cpp.compiler.input.1920645677"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1270689208;cdt.managedbuild.config.gnu.exe.release.1270689208.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1336291657;cdt.managedbuild.tool.gnu.cpp.compiler.input.1506297979"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1270689208;cdt.managedbuild.config.gnu.exe.release.1270689208.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.984270671;cdt.managedbuild.tool.gnu.c.compiler.input.191330176"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047;cdt.managedbuild.config.gnu.exe.release.1270689208.232480047.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.518312421;cdt.managedbuild.tool.gnu.c.compiler.input.1602098267"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.502995704;cdt.managedbuild.config.gnu.exe.debug.502995704.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2063289710;cdt.managedbuild.tool.gnu.cpp.compiler.input.966305124"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.502995704;cdt.managedbuild.config.gnu.exe.debug.502995704.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.452615323;cdt.managedbuild.tool.gnu.c.compiler.input.697502414"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047;cdt.managedbuild.config.gnu.exe.release.1270689208.232480047.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1742516529;cdt.managedbuild.tool.gnu.cpp.compiler.input.1036435822"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> - </scannerConfigBuildInfo> - <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526;cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.870071077;cdt.managedbuild.tool.gnu.c.compiler.input.132105612"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> - </scannerConfigBuildInfo> - </storageModule> -</cproject> diff --git a/cocos2dx/.project b/cocos2dx/.project deleted file mode 100644 index 6a4ab0d741..0000000000 --- a/cocos2dx/.project +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>cocos2dx-base</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> - <triggers>clean,full,incremental,</triggers> - <arguments> - <dictionary> - <key>?name?</key> - <value></value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.append_environment</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.autoBuildTarget</key> - <value>all</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.buildArguments</key> - <value></value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.buildCommand</key> - <value>make</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.buildLocation</key> - <value>${workspace_loc:/cocos2dx-base/Debug}</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.cleanBuildTarget</key> - <value>clean</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.contents</key> - <value>org.eclipse.cdt.make.core.activeConfigSettings</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.enableAutoBuild</key> - <value>false</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.enableCleanBuild</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.enableFullBuild</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.fullBuildTarget</key> - <value>all</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.stopOnError</key> - <value>true</value> - </dictionary> - <dictionary> - <key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> - <value>true</value> - </dictionary> - </arguments> - </buildCommand> - <buildCommand> - <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> - <triggers>full,incremental,</triggers> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.cdt.core.cnature</nature> - <nature>org.eclipse.cdt.core.ccnature</nature> - <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> - <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> - </natures> -</projectDescription> diff --git a/cocos2dx/AndroidDebug/actions/subdir.mk b/cocos2dx/AndroidDebug/actions/subdir.mk deleted file mode 100644 index da12ff9a6d..0000000000 --- a/cocos2dx/AndroidDebug/actions/subdir.mk +++ /dev/null @@ -1,54 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../actions/CCAction.cpp \ -../actions/CCActionCamera.cpp \ -../actions/CCActionEase.cpp \ -../actions/CCActionGrid.cpp \ -../actions/CCActionGrid3D.cpp \ -../actions/CCActionInstant.cpp \ -../actions/CCActionInterval.cpp \ -../actions/CCActionManager.cpp \ -../actions/CCActionPageTurn3D.cpp \ -../actions/CCActionProgressTimer.cpp \ -../actions/CCActionTiledGrid.cpp - -OBJS += \ -./actions/CCAction.o \ -./actions/CCActionCamera.o \ -./actions/CCActionEase.o \ -./actions/CCActionGrid.o \ -./actions/CCActionGrid3D.o \ -./actions/CCActionInstant.o \ -./actions/CCActionInterval.o \ -./actions/CCActionManager.o \ -./actions/CCActionPageTurn3D.o \ -./actions/CCActionProgressTimer.o \ -./actions/CCActionTiledGrid.o - -CPP_DEPS += \ -./actions/CCAction.d \ -./actions/CCActionCamera.d \ -./actions/CCActionEase.d \ -./actions/CCActionGrid.d \ -./actions/CCActionGrid3D.d \ -./actions/CCActionInstant.d \ -./actions/CCActionInterval.d \ -./actions/CCActionManager.d \ -./actions/CCActionPageTurn3D.d \ -./actions/CCActionProgressTimer.d \ -./actions/CCActionTiledGrid.d - - -# Each subdirectory must supply rules for building sources it contributes -actions/%.o: ../actions/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/base_nodes/subdir.mk b/cocos2dx/AndroidDebug/base_nodes/subdir.mk deleted file mode 100644 index 471b15b53c..0000000000 --- a/cocos2dx/AndroidDebug/base_nodes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../base_nodes/CCAtlasNode.cpp \ -../base_nodes/CCNode.cpp - -OBJS += \ -./base_nodes/CCAtlasNode.o \ -./base_nodes/CCNode.o - -CPP_DEPS += \ -./base_nodes/CCAtlasNode.d \ -./base_nodes/CCNode.d - - -# Each subdirectory must supply rules for building sources it contributes -base_nodes/%.o: ../base_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/cocoa/subdir.mk b/cocos2dx/AndroidDebug/cocoa/subdir.mk deleted file mode 100644 index 777d7f8bdc..0000000000 --- a/cocos2dx/AndroidDebug/cocoa/subdir.mk +++ /dev/null @@ -1,45 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../cocoa/CCAffineTransform.cpp \ -../cocoa/CCAutoreleasePool.cpp \ -../cocoa/CCData.cpp \ -../cocoa/CCGeometry.cpp \ -../cocoa/CCNS.cpp \ -../cocoa/CCObject.cpp \ -../cocoa/CCSet.cpp \ -../cocoa/CCZone.cpp - -OBJS += \ -./cocoa/CCAffineTransform.o \ -./cocoa/CCAutoreleasePool.o \ -./cocoa/CCData.o \ -./cocoa/CCGeometry.o \ -./cocoa/CCNS.o \ -./cocoa/CCObject.o \ -./cocoa/CCSet.o \ -./cocoa/CCZone.o - -CPP_DEPS += \ -./cocoa/CCAffineTransform.d \ -./cocoa/CCAutoreleasePool.d \ -./cocoa/CCData.d \ -./cocoa/CCGeometry.d \ -./cocoa/CCNS.d \ -./cocoa/CCObject.d \ -./cocoa/CCSet.d \ -./cocoa/CCZone.d - - -# Each subdirectory must supply rules for building sources it contributes -cocoa/%.o: ../cocoa/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/effects/subdir.mk b/cocos2dx/AndroidDebug/effects/subdir.mk deleted file mode 100644 index 68ac3a1f4f..0000000000 --- a/cocos2dx/AndroidDebug/effects/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../effects/CCGrabber.cpp \ -../effects/CCGrid.cpp - -OBJS += \ -./effects/CCGrabber.o \ -./effects/CCGrid.o - -CPP_DEPS += \ -./effects/CCGrabber.d \ -./effects/CCGrid.d - - -# Each subdirectory must supply rules for building sources it contributes -effects/%.o: ../effects/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/keypad_dispatcher/subdir.mk b/cocos2dx/AndroidDebug/keypad_dispatcher/subdir.mk deleted file mode 100644 index 721378ec59..0000000000 --- a/cocos2dx/AndroidDebug/keypad_dispatcher/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../keypad_dispatcher/CCKeypadDelegate.cpp \ -../keypad_dispatcher/CCKeypadDispatcher.cpp - -OBJS += \ -./keypad_dispatcher/CCKeypadDelegate.o \ -./keypad_dispatcher/CCKeypadDispatcher.o - -CPP_DEPS += \ -./keypad_dispatcher/CCKeypadDelegate.d \ -./keypad_dispatcher/CCKeypadDispatcher.d - - -# Each subdirectory must supply rules for building sources it contributes -keypad_dispatcher/%.o: ../keypad_dispatcher/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/label_nodes/subdir.mk b/cocos2dx/AndroidDebug/label_nodes/subdir.mk deleted file mode 100644 index 79da31242d..0000000000 --- a/cocos2dx/AndroidDebug/label_nodes/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../label_nodes/CCLabelAtlas.cpp \ -../label_nodes/CCLabelBMFont.cpp \ -../label_nodes/CCLabelTTF.cpp - -OBJS += \ -./label_nodes/CCLabelAtlas.o \ -./label_nodes/CCLabelBMFont.o \ -./label_nodes/CCLabelTTF.o - -CPP_DEPS += \ -./label_nodes/CCLabelAtlas.d \ -./label_nodes/CCLabelBMFont.d \ -./label_nodes/CCLabelTTF.d - - -# Each subdirectory must supply rules for building sources it contributes -label_nodes/%.o: ../label_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/subdir.mk b/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/subdir.mk deleted file mode 100644 index 0425005603..0000000000 --- a/cocos2dx/AndroidDebug/layers_scenes_transitions_nodes/subdir.mk +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../layers_scenes_transitions_nodes/CCLayer.cpp \ -../layers_scenes_transitions_nodes/CCScene.cpp \ -../layers_scenes_transitions_nodes/CCTransition.cpp \ -../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ -../layers_scenes_transitions_nodes/CCTransitionRadial.cpp - -OBJS += \ -./layers_scenes_transitions_nodes/CCLayer.o \ -./layers_scenes_transitions_nodes/CCScene.o \ -./layers_scenes_transitions_nodes/CCTransition.o \ -./layers_scenes_transitions_nodes/CCTransitionPageTurn.o \ -./layers_scenes_transitions_nodes/CCTransitionRadial.o - -CPP_DEPS += \ -./layers_scenes_transitions_nodes/CCLayer.d \ -./layers_scenes_transitions_nodes/CCScene.d \ -./layers_scenes_transitions_nodes/CCTransition.d \ -./layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ -./layers_scenes_transitions_nodes/CCTransitionRadial.d - - -# Each subdirectory must supply rules for building sources it contributes -layers_scenes_transitions_nodes/%.o: ../layers_scenes_transitions_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/libcocos2d.so.REMOVED.git-id b/cocos2dx/AndroidDebug/libcocos2d.so.REMOVED.git-id deleted file mode 100644 index 80fa18720f..0000000000 --- a/cocos2dx/AndroidDebug/libcocos2d.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -e4ef8dbafc8bdd9c7aac53a6bce4856d5e36593f \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/libcocos2dx-base.so.REMOVED.git-id b/cocos2dx/AndroidDebug/libcocos2dx-base.so.REMOVED.git-id deleted file mode 100644 index 52dbf0b491..0000000000 --- a/cocos2dx/AndroidDebug/libcocos2dx-base.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -1b3e5c21514a780cdf103254278017482fde6fdf \ No newline at end of file diff --git a/cocos2dx/AndroidDebug/makefile b/cocos2dx/AndroidDebug/makefile deleted file mode 100644 index c92985a26d..0000000000 --- a/cocos2dx/AndroidDebug/makefile +++ /dev/null @@ -1,93 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include touch_dispatcher/subdir.mk --include tileMap_parallax_nodes/subdir.mk --include textures/subdir.mk --include text_input_node/subdir.mk --include support/zip_support/subdir.mk --include support/image_support/subdir.mk --include support/subdir.mk --include sprite_nodes/subdir.mk --include script_support/subdir.mk --include platform/subdir.mk --include platform/android/jni/subdir.mk --include platform/android/subdir.mk --include particle_nodes/subdir.mk --include misc_nodes/subdir.mk --include menu_nodes/subdir.mk --include layers_scenes_transitions_nodes/subdir.mk --include label_nodes/subdir.mk --include keypad_dispatcher/subdir.mk --include effects/subdir.mk --include cocoa/subdir.mk --include base_nodes/subdir.mk --include actions/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: pre-build main-build - -# Main-build Target -main-build: libcocos2dx-base.so - -# Tool invocations -libcocos2dx-base.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -shared -o "libcocos2dx-base.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libcocos2dx-base.so - -@echo ' ' - -pre-build: - -arm-linux-androideabi-g++ - -@echo ' ' - -post-build: - -@echo 'move all libs into the specific folder' - -sh ../../post.sh cocos2dx-base cocos2d - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: main-build pre-build post-build - --include ../makefile.targets diff --git a/cocos2dx/AndroidDebug/menu_nodes/subdir.mk b/cocos2dx/AndroidDebug/menu_nodes/subdir.mk deleted file mode 100644 index 8b28e48204..0000000000 --- a/cocos2dx/AndroidDebug/menu_nodes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../menu_nodes/CCMenu.cpp \ -../menu_nodes/CCMenuItem.cpp - -OBJS += \ -./menu_nodes/CCMenu.o \ -./menu_nodes/CCMenuItem.o - -CPP_DEPS += \ -./menu_nodes/CCMenu.d \ -./menu_nodes/CCMenuItem.d - - -# Each subdirectory must supply rules for building sources it contributes -menu_nodes/%.o: ../menu_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/misc_nodes/subdir.mk b/cocos2dx/AndroidDebug/misc_nodes/subdir.mk deleted file mode 100644 index cbf44dfd43..0000000000 --- a/cocos2dx/AndroidDebug/misc_nodes/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../misc_nodes/CCMotionStreak.cpp \ -../misc_nodes/CCProgressTimer.cpp \ -../misc_nodes/CCRenderTexture.cpp \ -../misc_nodes/CCRibbon.cpp - -OBJS += \ -./misc_nodes/CCMotionStreak.o \ -./misc_nodes/CCProgressTimer.o \ -./misc_nodes/CCRenderTexture.o \ -./misc_nodes/CCRibbon.o - -CPP_DEPS += \ -./misc_nodes/CCMotionStreak.d \ -./misc_nodes/CCProgressTimer.d \ -./misc_nodes/CCRenderTexture.d \ -./misc_nodes/CCRibbon.d - - -# Each subdirectory must supply rules for building sources it contributes -misc_nodes/%.o: ../misc_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/objects.mk b/cocos2dx/AndroidDebug/objects.mk deleted file mode 100644 index 2333372ec2..0000000000 --- a/cocos2dx/AndroidDebug/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := ../platform/third_party/android/libraries/libcurl.a ../platform/third_party/android/libraries/libpng.a ../platform/third_party/android/libraries/libxml2.a ..//platform/third_party/android/libraries/libjpeg.a - -LIBS := -lGLESv1_CM -llog -lz - diff --git a/cocos2dx/AndroidDebug/particle_nodes/subdir.mk b/cocos2dx/AndroidDebug/particle_nodes/subdir.mk deleted file mode 100644 index 7687c071b8..0000000000 --- a/cocos2dx/AndroidDebug/particle_nodes/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../particle_nodes/CCParticleExamples.cpp \ -../particle_nodes/CCParticleSystem.cpp \ -../particle_nodes/CCParticleSystemQuad.cpp - -OBJS += \ -./particle_nodes/CCParticleExamples.o \ -./particle_nodes/CCParticleSystem.o \ -./particle_nodes/CCParticleSystemQuad.o - -CPP_DEPS += \ -./particle_nodes/CCParticleExamples.d \ -./particle_nodes/CCParticleSystem.d \ -./particle_nodes/CCParticleSystemQuad.d - - -# Each subdirectory must supply rules for building sources it contributes -particle_nodes/%.o: ../particle_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/platform/android/jni/subdir.mk b/cocos2dx/AndroidDebug/platform/android/jni/subdir.mk deleted file mode 100644 index 3d12adf013..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/jni/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/android/jni/IMEJni.cpp \ -../platform/android/jni/JniHelper.cpp \ -../platform/android/jni/MessageJni.cpp \ -../platform/android/jni/SensorJni.cpp \ -../platform/android/jni/SystemInfoJni.cpp \ -../platform/android/jni/TouchesJni.cpp - -OBJS += \ -./platform/android/jni/IMEJni.o \ -./platform/android/jni/JniHelper.o \ -./platform/android/jni/MessageJni.o \ -./platform/android/jni/SensorJni.o \ -./platform/android/jni/SystemInfoJni.o \ -./platform/android/jni/TouchesJni.o - -CPP_DEPS += \ -./platform/android/jni/IMEJni.d \ -./platform/android/jni/JniHelper.d \ -./platform/android/jni/MessageJni.d \ -./platform/android/jni/SensorJni.d \ -./platform/android/jni/SystemInfoJni.d \ -./platform/android/jni/TouchesJni.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/android/jni/%.o: ../platform/android/jni/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/platform/android/subdir.mk b/cocos2dx/AndroidDebug/platform/android/subdir.mk deleted file mode 100644 index dd60bb0bd5..0000000000 --- a/cocos2dx/AndroidDebug/platform/android/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/android/CCAccelerometer_android.cpp \ -../platform/android/CCApplication_android.cpp \ -../platform/android/CCEGLView_android.cpp - -OBJS += \ -./platform/android/CCAccelerometer_android.o \ -./platform/android/CCApplication_android.o \ -./platform/android/CCEGLView_android.o - -CPP_DEPS += \ -./platform/android/CCAccelerometer_android.d \ -./platform/android/CCApplication_android.d \ -./platform/android/CCEGLView_android.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/android/%.o: ../platform/android/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/platform/subdir.mk b/cocos2dx/AndroidDebug/platform/subdir.mk deleted file mode 100644 index 9c34331e38..0000000000 --- a/cocos2dx/AndroidDebug/platform/subdir.mk +++ /dev/null @@ -1,45 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/CCCommon.cpp \ -../platform/CCFileUtils.cpp \ -../platform/CCGL.cpp \ -../platform/CCImage.cpp \ -../platform/CCSAXParser.cpp \ -../platform/CCStdC.cpp \ -../platform/CCThread.cpp \ -../platform/platform.cpp - -OBJS += \ -./platform/CCCommon.o \ -./platform/CCFileUtils.o \ -./platform/CCGL.o \ -./platform/CCImage.o \ -./platform/CCSAXParser.o \ -./platform/CCStdC.o \ -./platform/CCThread.o \ -./platform/platform.o - -CPP_DEPS += \ -./platform/CCCommon.d \ -./platform/CCFileUtils.d \ -./platform/CCGL.d \ -./platform/CCImage.d \ -./platform/CCSAXParser.d \ -./platform/CCStdC.d \ -./platform/CCThread.d \ -./platform/platform.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/%.o: ../platform/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/script_support/subdir.mk b/cocos2dx/AndroidDebug/script_support/subdir.mk deleted file mode 100644 index 09d4d9c6ae..0000000000 --- a/cocos2dx/AndroidDebug/script_support/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../script_support/CCScriptSupport.cpp - -OBJS += \ -./script_support/CCScriptSupport.o - -CPP_DEPS += \ -./script_support/CCScriptSupport.d - - -# Each subdirectory must supply rules for building sources it contributes -script_support/%.o: ../script_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/sources.mk b/cocos2dx/AndroidDebug/sources.mk deleted file mode 100644 index c2f95fd8fc..0000000000 --- a/cocos2dx/AndroidDebug/sources.mk +++ /dev/null @@ -1,49 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -touch_dispatcher \ -tileMap_parallax_nodes \ -textures \ -text_input_node \ -support/zip_support \ -support/image_support \ -support \ -sprite_nodes \ -script_support \ -platform \ -platform/android/jni \ -platform/android \ -particle_nodes \ -misc_nodes \ -menu_nodes \ -layers_scenes_transitions_nodes \ -label_nodes \ -keypad_dispatcher \ -effects \ -. \ -cocoa \ -base_nodes \ -actions \ - diff --git a/cocos2dx/AndroidDebug/sprite_nodes/subdir.mk b/cocos2dx/AndroidDebug/sprite_nodes/subdir.mk deleted file mode 100644 index fcad05aaf0..0000000000 --- a/cocos2dx/AndroidDebug/sprite_nodes/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../sprite_nodes/CCAnimation.cpp \ -../sprite_nodes/CCAnimationCache.cpp \ -../sprite_nodes/CCSprite.cpp \ -../sprite_nodes/CCSpriteBatchNode.cpp \ -../sprite_nodes/CCSpriteFrame.cpp \ -../sprite_nodes/CCSpriteFrameCache.cpp - -OBJS += \ -./sprite_nodes/CCAnimation.o \ -./sprite_nodes/CCAnimationCache.o \ -./sprite_nodes/CCSprite.o \ -./sprite_nodes/CCSpriteBatchNode.o \ -./sprite_nodes/CCSpriteFrame.o \ -./sprite_nodes/CCSpriteFrameCache.o - -CPP_DEPS += \ -./sprite_nodes/CCAnimation.d \ -./sprite_nodes/CCAnimationCache.d \ -./sprite_nodes/CCSprite.d \ -./sprite_nodes/CCSpriteBatchNode.d \ -./sprite_nodes/CCSpriteFrame.d \ -./sprite_nodes/CCSpriteFrameCache.d - - -# Each subdirectory must supply rules for building sources it contributes -sprite_nodes/%.o: ../sprite_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/subdir.mk b/cocos2dx/AndroidDebug/subdir.mk deleted file mode 100644 index f8f6f98591..0000000000 --- a/cocos2dx/AndroidDebug/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../CCCamera.cpp \ -../CCConfiguration.cpp \ -../CCDirector.cpp \ -../CCDrawingPrimitives.cpp \ -../CCScheduler.cpp \ -../cocos2d.cpp - -OBJS += \ -./CCCamera.o \ -./CCConfiguration.o \ -./CCDirector.o \ -./CCDrawingPrimitives.o \ -./CCScheduler.o \ -./cocos2d.o - -CPP_DEPS += \ -./CCCamera.d \ -./CCConfiguration.d \ -./CCDirector.d \ -./CCDrawingPrimitives.d \ -./CCScheduler.d \ -./cocos2d.d - - -# Each subdirectory must supply rules for building sources it contributes -%.o: ../%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/support/image_support/subdir.mk b/cocos2dx/AndroidDebug/support/image_support/subdir.mk deleted file mode 100644 index ddb3cf5f80..0000000000 --- a/cocos2dx/AndroidDebug/support/image_support/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/image_support/TGAlib.cpp - -OBJS += \ -./support/image_support/TGAlib.o - -CPP_DEPS += \ -./support/image_support/TGAlib.d - - -# Each subdirectory must supply rules for building sources it contributes -support/image_support/%.o: ../support/image_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/support/subdir.mk b/cocos2dx/AndroidDebug/support/subdir.mk deleted file mode 100644 index f7e358fc32..0000000000 --- a/cocos2dx/AndroidDebug/support/subdir.mk +++ /dev/null @@ -1,42 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/CCArray.cpp \ -../support/CCPointExtension.cpp \ -../support/CCProfiling.cpp \ -../support/CCUserDefault.cpp \ -../support/TransformUtils.cpp \ -../support/base64.cpp \ -../support/ccUtils.cpp - -OBJS += \ -./support/CCArray.o \ -./support/CCPointExtension.o \ -./support/CCProfiling.o \ -./support/CCUserDefault.o \ -./support/TransformUtils.o \ -./support/base64.o \ -./support/ccUtils.o - -CPP_DEPS += \ -./support/CCArray.d \ -./support/CCPointExtension.d \ -./support/CCProfiling.d \ -./support/CCUserDefault.d \ -./support/TransformUtils.d \ -./support/base64.d \ -./support/ccUtils.d - - -# Each subdirectory must supply rules for building sources it contributes -support/%.o: ../support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/support/zip_support/subdir.mk b/cocos2dx/AndroidDebug/support/zip_support/subdir.mk deleted file mode 100644 index e6a1b14767..0000000000 --- a/cocos2dx/AndroidDebug/support/zip_support/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/zip_support/ZipUtils.cpp \ -../support/zip_support/ioapi.cpp \ -../support/zip_support/unzip.cpp - -OBJS += \ -./support/zip_support/ZipUtils.o \ -./support/zip_support/ioapi.o \ -./support/zip_support/unzip.o - -CPP_DEPS += \ -./support/zip_support/ZipUtils.d \ -./support/zip_support/ioapi.d \ -./support/zip_support/unzip.d - - -# Each subdirectory must supply rules for building sources it contributes -support/zip_support/%.o: ../support/zip_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/text_input_node/subdir.mk b/cocos2dx/AndroidDebug/text_input_node/subdir.mk deleted file mode 100644 index e75cff32cf..0000000000 --- a/cocos2dx/AndroidDebug/text_input_node/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../text_input_node/CCIMEDispatcher.cpp \ -../text_input_node/CCTextFieldTTF.cpp - -OBJS += \ -./text_input_node/CCIMEDispatcher.o \ -./text_input_node/CCTextFieldTTF.o - -CPP_DEPS += \ -./text_input_node/CCIMEDispatcher.d \ -./text_input_node/CCTextFieldTTF.d - - -# Each subdirectory must supply rules for building sources it contributes -text_input_node/%.o: ../text_input_node/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/textures/subdir.mk b/cocos2dx/AndroidDebug/textures/subdir.mk deleted file mode 100644 index df0555ce1b..0000000000 --- a/cocos2dx/AndroidDebug/textures/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../textures/CCTexture2D.cpp \ -../textures/CCTextureAtlas.cpp \ -../textures/CCTextureCache.cpp \ -../textures/CCTexturePVR.cpp - -OBJS += \ -./textures/CCTexture2D.o \ -./textures/CCTextureAtlas.o \ -./textures/CCTextureCache.o \ -./textures/CCTexturePVR.o - -CPP_DEPS += \ -./textures/CCTexture2D.d \ -./textures/CCTextureAtlas.d \ -./textures/CCTextureCache.d \ -./textures/CCTexturePVR.d - - -# Each subdirectory must supply rules for building sources it contributes -textures/%.o: ../textures/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/subdir.mk b/cocos2dx/AndroidDebug/tileMap_parallax_nodes/subdir.mk deleted file mode 100644 index 86180931f6..0000000000 --- a/cocos2dx/AndroidDebug/tileMap_parallax_nodes/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../tileMap_parallax_nodes/CCParallaxNode.cpp \ -../tileMap_parallax_nodes/CCTMXLayer.cpp \ -../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ -../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ -../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ -../tileMap_parallax_nodes/CCTileMapAtlas.cpp - -OBJS += \ -./tileMap_parallax_nodes/CCParallaxNode.o \ -./tileMap_parallax_nodes/CCTMXLayer.o \ -./tileMap_parallax_nodes/CCTMXObjectGroup.o \ -./tileMap_parallax_nodes/CCTMXTiledMap.o \ -./tileMap_parallax_nodes/CCTMXXMLParser.o \ -./tileMap_parallax_nodes/CCTileMapAtlas.o - -CPP_DEPS += \ -./tileMap_parallax_nodes/CCParallaxNode.d \ -./tileMap_parallax_nodes/CCTMXLayer.d \ -./tileMap_parallax_nodes/CCTMXObjectGroup.d \ -./tileMap_parallax_nodes/CCTMXTiledMap.d \ -./tileMap_parallax_nodes/CCTMXXMLParser.d \ -./tileMap_parallax_nodes/CCTileMapAtlas.d - - -# Each subdirectory must supply rules for building sources it contributes -tileMap_parallax_nodes/%.o: ../tileMap_parallax_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidDebug/touch_dispatcher/subdir.mk b/cocos2dx/AndroidDebug/touch_dispatcher/subdir.mk deleted file mode 100644 index 5568bb1125..0000000000 --- a/cocos2dx/AndroidDebug/touch_dispatcher/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../touch_dispatcher/CCTouchDispatcher.cpp \ -../touch_dispatcher/CCTouchHandler.cpp - -OBJS += \ -./touch_dispatcher/CCTouchDispatcher.o \ -./touch_dispatcher/CCTouchHandler.o - -CPP_DEPS += \ -./touch_dispatcher/CCTouchDispatcher.d \ -./touch_dispatcher/CCTouchHandler.d - - -# Each subdirectory must supply rules for building sources it contributes -touch_dispatcher/%.o: ../touch_dispatcher/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/actions/subdir.mk b/cocos2dx/AndroidRelease/actions/subdir.mk deleted file mode 100644 index 0559ee8134..0000000000 --- a/cocos2dx/AndroidRelease/actions/subdir.mk +++ /dev/null @@ -1,54 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../actions/CCAction.cpp \ -../actions/CCActionCamera.cpp \ -../actions/CCActionEase.cpp \ -../actions/CCActionGrid.cpp \ -../actions/CCActionGrid3D.cpp \ -../actions/CCActionInstant.cpp \ -../actions/CCActionInterval.cpp \ -../actions/CCActionManager.cpp \ -../actions/CCActionPageTurn3D.cpp \ -../actions/CCActionProgressTimer.cpp \ -../actions/CCActionTiledGrid.cpp - -OBJS += \ -./actions/CCAction.o \ -./actions/CCActionCamera.o \ -./actions/CCActionEase.o \ -./actions/CCActionGrid.o \ -./actions/CCActionGrid3D.o \ -./actions/CCActionInstant.o \ -./actions/CCActionInterval.o \ -./actions/CCActionManager.o \ -./actions/CCActionPageTurn3D.o \ -./actions/CCActionProgressTimer.o \ -./actions/CCActionTiledGrid.o - -CPP_DEPS += \ -./actions/CCAction.d \ -./actions/CCActionCamera.d \ -./actions/CCActionEase.d \ -./actions/CCActionGrid.d \ -./actions/CCActionGrid3D.d \ -./actions/CCActionInstant.d \ -./actions/CCActionInterval.d \ -./actions/CCActionManager.d \ -./actions/CCActionPageTurn3D.d \ -./actions/CCActionProgressTimer.d \ -./actions/CCActionTiledGrid.d - - -# Each subdirectory must supply rules for building sources it contributes -actions/%.o: ../actions/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/base_nodes/subdir.mk b/cocos2dx/AndroidRelease/base_nodes/subdir.mk deleted file mode 100644 index 66bfa21d17..0000000000 --- a/cocos2dx/AndroidRelease/base_nodes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../base_nodes/CCAtlasNode.cpp \ -../base_nodes/CCNode.cpp - -OBJS += \ -./base_nodes/CCAtlasNode.o \ -./base_nodes/CCNode.o - -CPP_DEPS += \ -./base_nodes/CCAtlasNode.d \ -./base_nodes/CCNode.d - - -# Each subdirectory must supply rules for building sources it contributes -base_nodes/%.o: ../base_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/cocoa/subdir.mk b/cocos2dx/AndroidRelease/cocoa/subdir.mk deleted file mode 100644 index d3f57f8542..0000000000 --- a/cocos2dx/AndroidRelease/cocoa/subdir.mk +++ /dev/null @@ -1,45 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../cocoa/CCAffineTransform.cpp \ -../cocoa/CCAutoreleasePool.cpp \ -../cocoa/CCData.cpp \ -../cocoa/CCGeometry.cpp \ -../cocoa/CCNS.cpp \ -../cocoa/CCObject.cpp \ -../cocoa/CCSet.cpp \ -../cocoa/CCZone.cpp - -OBJS += \ -./cocoa/CCAffineTransform.o \ -./cocoa/CCAutoreleasePool.o \ -./cocoa/CCData.o \ -./cocoa/CCGeometry.o \ -./cocoa/CCNS.o \ -./cocoa/CCObject.o \ -./cocoa/CCSet.o \ -./cocoa/CCZone.o - -CPP_DEPS += \ -./cocoa/CCAffineTransform.d \ -./cocoa/CCAutoreleasePool.d \ -./cocoa/CCData.d \ -./cocoa/CCGeometry.d \ -./cocoa/CCNS.d \ -./cocoa/CCObject.d \ -./cocoa/CCSet.d \ -./cocoa/CCZone.d - - -# Each subdirectory must supply rules for building sources it contributes -cocoa/%.o: ../cocoa/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/effects/subdir.mk b/cocos2dx/AndroidRelease/effects/subdir.mk deleted file mode 100644 index 9f70eaba3a..0000000000 --- a/cocos2dx/AndroidRelease/effects/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../effects/CCGrabber.cpp \ -../effects/CCGrid.cpp - -OBJS += \ -./effects/CCGrabber.o \ -./effects/CCGrid.o - -CPP_DEPS += \ -./effects/CCGrabber.d \ -./effects/CCGrid.d - - -# Each subdirectory must supply rules for building sources it contributes -effects/%.o: ../effects/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/keypad_dispatcher/subdir.mk b/cocos2dx/AndroidRelease/keypad_dispatcher/subdir.mk deleted file mode 100644 index 656cf7a409..0000000000 --- a/cocos2dx/AndroidRelease/keypad_dispatcher/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../keypad_dispatcher/CCKeypadDelegate.cpp \ -../keypad_dispatcher/CCKeypadDispatcher.cpp - -OBJS += \ -./keypad_dispatcher/CCKeypadDelegate.o \ -./keypad_dispatcher/CCKeypadDispatcher.o - -CPP_DEPS += \ -./keypad_dispatcher/CCKeypadDelegate.d \ -./keypad_dispatcher/CCKeypadDispatcher.d - - -# Each subdirectory must supply rules for building sources it contributes -keypad_dispatcher/%.o: ../keypad_dispatcher/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/label_nodes/subdir.mk b/cocos2dx/AndroidRelease/label_nodes/subdir.mk deleted file mode 100644 index 997b7f987a..0000000000 --- a/cocos2dx/AndroidRelease/label_nodes/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../label_nodes/CCLabelAtlas.cpp \ -../label_nodes/CCLabelBMFont.cpp \ -../label_nodes/CCLabelTTF.cpp - -OBJS += \ -./label_nodes/CCLabelAtlas.o \ -./label_nodes/CCLabelBMFont.o \ -./label_nodes/CCLabelTTF.o - -CPP_DEPS += \ -./label_nodes/CCLabelAtlas.d \ -./label_nodes/CCLabelBMFont.d \ -./label_nodes/CCLabelTTF.d - - -# Each subdirectory must supply rules for building sources it contributes -label_nodes/%.o: ../label_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/subdir.mk b/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/subdir.mk deleted file mode 100644 index f664b9769c..0000000000 --- a/cocos2dx/AndroidRelease/layers_scenes_transitions_nodes/subdir.mk +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../layers_scenes_transitions_nodes/CCLayer.cpp \ -../layers_scenes_transitions_nodes/CCScene.cpp \ -../layers_scenes_transitions_nodes/CCTransition.cpp \ -../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ -../layers_scenes_transitions_nodes/CCTransitionRadial.cpp - -OBJS += \ -./layers_scenes_transitions_nodes/CCLayer.o \ -./layers_scenes_transitions_nodes/CCScene.o \ -./layers_scenes_transitions_nodes/CCTransition.o \ -./layers_scenes_transitions_nodes/CCTransitionPageTurn.o \ -./layers_scenes_transitions_nodes/CCTransitionRadial.o - -CPP_DEPS += \ -./layers_scenes_transitions_nodes/CCLayer.d \ -./layers_scenes_transitions_nodes/CCScene.d \ -./layers_scenes_transitions_nodes/CCTransition.d \ -./layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ -./layers_scenes_transitions_nodes/CCTransitionRadial.d - - -# Each subdirectory must supply rules for building sources it contributes -layers_scenes_transitions_nodes/%.o: ../layers_scenes_transitions_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/makefile b/cocos2dx/AndroidRelease/makefile deleted file mode 100644 index 0953befbda..0000000000 --- a/cocos2dx/AndroidRelease/makefile +++ /dev/null @@ -1,86 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include touch_dispatcher/subdir.mk --include tileMap_parallax_nodes/subdir.mk --include textures/subdir.mk --include text_input_node/subdir.mk --include support/zip_support/subdir.mk --include support/image_support/subdir.mk --include support/subdir.mk --include sprite_nodes/subdir.mk --include script_support/subdir.mk --include platform/subdir.mk --include platform/android/jni/subdir.mk --include platform/android/subdir.mk --include particle_nodes/subdir.mk --include misc_nodes/subdir.mk --include menu_nodes/subdir.mk --include layers_scenes_transitions_nodes/subdir.mk --include label_nodes/subdir.mk --include keypad_dispatcher/subdir.mk --include effects/subdir.mk --include cocoa/subdir.mk --include base_nodes/subdir.mk --include actions/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: libcocos2dx-base.so - -# Tool invocations -libcocos2dx-base.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - arm-linux-androideabi-g++ -shared -o "libcocos2dx-base.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libcocos2dx-base.so - -@echo ' ' - -post-build: - -@echo 'move all libs into the specific folder' - -sh ../../post.sh cocos2dx-base cocos2d - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets diff --git a/cocos2dx/AndroidRelease/menu_nodes/subdir.mk b/cocos2dx/AndroidRelease/menu_nodes/subdir.mk deleted file mode 100644 index db09576447..0000000000 --- a/cocos2dx/AndroidRelease/menu_nodes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../menu_nodes/CCMenu.cpp \ -../menu_nodes/CCMenuItem.cpp - -OBJS += \ -./menu_nodes/CCMenu.o \ -./menu_nodes/CCMenuItem.o - -CPP_DEPS += \ -./menu_nodes/CCMenu.d \ -./menu_nodes/CCMenuItem.d - - -# Each subdirectory must supply rules for building sources it contributes -menu_nodes/%.o: ../menu_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/misc_nodes/subdir.mk b/cocos2dx/AndroidRelease/misc_nodes/subdir.mk deleted file mode 100644 index 37e51b88b6..0000000000 --- a/cocos2dx/AndroidRelease/misc_nodes/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../misc_nodes/CCMotionStreak.cpp \ -../misc_nodes/CCProgressTimer.cpp \ -../misc_nodes/CCRenderTexture.cpp \ -../misc_nodes/CCRibbon.cpp - -OBJS += \ -./misc_nodes/CCMotionStreak.o \ -./misc_nodes/CCProgressTimer.o \ -./misc_nodes/CCRenderTexture.o \ -./misc_nodes/CCRibbon.o - -CPP_DEPS += \ -./misc_nodes/CCMotionStreak.d \ -./misc_nodes/CCProgressTimer.d \ -./misc_nodes/CCRenderTexture.d \ -./misc_nodes/CCRibbon.d - - -# Each subdirectory must supply rules for building sources it contributes -misc_nodes/%.o: ../misc_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/objects.mk b/cocos2dx/AndroidRelease/objects.mk deleted file mode 100644 index c110520a13..0000000000 --- a/cocos2dx/AndroidRelease/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := ../platform/third_party/android/libraries/libcurl.a ../platform/third_party/android/libraries/libpng.a ../platform/third_party/android/libraries/libxml2.a ..//platform/third_party/android/libraries/libjpeg.a - -LIBS := -lGLESv1_CM -lstdc++ -llog -lz - diff --git a/cocos2dx/AndroidRelease/particle_nodes/subdir.mk b/cocos2dx/AndroidRelease/particle_nodes/subdir.mk deleted file mode 100644 index 93e80fe19e..0000000000 --- a/cocos2dx/AndroidRelease/particle_nodes/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../particle_nodes/CCParticleExamples.cpp \ -../particle_nodes/CCParticleSystem.cpp \ -../particle_nodes/CCParticleSystemQuad.cpp - -OBJS += \ -./particle_nodes/CCParticleExamples.o \ -./particle_nodes/CCParticleSystem.o \ -./particle_nodes/CCParticleSystemQuad.o - -CPP_DEPS += \ -./particle_nodes/CCParticleExamples.d \ -./particle_nodes/CCParticleSystem.d \ -./particle_nodes/CCParticleSystemQuad.d - - -# Each subdirectory must supply rules for building sources it contributes -particle_nodes/%.o: ../particle_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/platform/android/jni/subdir.mk b/cocos2dx/AndroidRelease/platform/android/jni/subdir.mk deleted file mode 100644 index 75276350d6..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/jni/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/android/jni/IMEJni.cpp \ -../platform/android/jni/JniHelper.cpp \ -../platform/android/jni/MessageJni.cpp \ -../platform/android/jni/SensorJni.cpp \ -../platform/android/jni/SystemInfoJni.cpp \ -../platform/android/jni/TouchesJni.cpp - -OBJS += \ -./platform/android/jni/IMEJni.o \ -./platform/android/jni/JniHelper.o \ -./platform/android/jni/MessageJni.o \ -./platform/android/jni/SensorJni.o \ -./platform/android/jni/SystemInfoJni.o \ -./platform/android/jni/TouchesJni.o - -CPP_DEPS += \ -./platform/android/jni/IMEJni.d \ -./platform/android/jni/JniHelper.d \ -./platform/android/jni/MessageJni.d \ -./platform/android/jni/SensorJni.d \ -./platform/android/jni/SystemInfoJni.d \ -./platform/android/jni/TouchesJni.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/android/jni/%.o: ../platform/android/jni/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/platform/android/subdir.mk b/cocos2dx/AndroidRelease/platform/android/subdir.mk deleted file mode 100644 index 62dd5a9853..0000000000 --- a/cocos2dx/AndroidRelease/platform/android/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/android/CCAccelerometer_android.cpp \ -../platform/android/CCApplication_android.cpp \ -../platform/android/CCEGLView_android.cpp - -OBJS += \ -./platform/android/CCAccelerometer_android.o \ -./platform/android/CCApplication_android.o \ -./platform/android/CCEGLView_android.o - -CPP_DEPS += \ -./platform/android/CCAccelerometer_android.d \ -./platform/android/CCApplication_android.d \ -./platform/android/CCEGLView_android.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/android/%.o: ../platform/android/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/platform/subdir.mk b/cocos2dx/AndroidRelease/platform/subdir.mk deleted file mode 100644 index 80fe156b3a..0000000000 --- a/cocos2dx/AndroidRelease/platform/subdir.mk +++ /dev/null @@ -1,45 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/CCCommon.cpp \ -../platform/CCFileUtils.cpp \ -../platform/CCGL.cpp \ -../platform/CCImage.cpp \ -../platform/CCSAXParser.cpp \ -../platform/CCStdC.cpp \ -../platform/CCThread.cpp \ -../platform/platform.cpp - -OBJS += \ -./platform/CCCommon.o \ -./platform/CCFileUtils.o \ -./platform/CCGL.o \ -./platform/CCImage.o \ -./platform/CCSAXParser.o \ -./platform/CCStdC.o \ -./platform/CCThread.o \ -./platform/platform.o - -CPP_DEPS += \ -./platform/CCCommon.d \ -./platform/CCFileUtils.d \ -./platform/CCGL.d \ -./platform/CCImage.d \ -./platform/CCSAXParser.d \ -./platform/CCStdC.d \ -./platform/CCThread.d \ -./platform/platform.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/%.o: ../platform/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/script_support/subdir.mk b/cocos2dx/AndroidRelease/script_support/subdir.mk deleted file mode 100644 index e4586171ef..0000000000 --- a/cocos2dx/AndroidRelease/script_support/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../script_support/CCScriptSupport.cpp - -OBJS += \ -./script_support/CCScriptSupport.o - -CPP_DEPS += \ -./script_support/CCScriptSupport.d - - -# Each subdirectory must supply rules for building sources it contributes -script_support/%.o: ../script_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/sources.mk b/cocos2dx/AndroidRelease/sources.mk deleted file mode 100644 index c2f95fd8fc..0000000000 --- a/cocos2dx/AndroidRelease/sources.mk +++ /dev/null @@ -1,49 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -touch_dispatcher \ -tileMap_parallax_nodes \ -textures \ -text_input_node \ -support/zip_support \ -support/image_support \ -support \ -sprite_nodes \ -script_support \ -platform \ -platform/android/jni \ -platform/android \ -particle_nodes \ -misc_nodes \ -menu_nodes \ -layers_scenes_transitions_nodes \ -label_nodes \ -keypad_dispatcher \ -effects \ -. \ -cocoa \ -base_nodes \ -actions \ - diff --git a/cocos2dx/AndroidRelease/sprite_nodes/subdir.mk b/cocos2dx/AndroidRelease/sprite_nodes/subdir.mk deleted file mode 100644 index 7726cae97f..0000000000 --- a/cocos2dx/AndroidRelease/sprite_nodes/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../sprite_nodes/CCAnimation.cpp \ -../sprite_nodes/CCAnimationCache.cpp \ -../sprite_nodes/CCSprite.cpp \ -../sprite_nodes/CCSpriteBatchNode.cpp \ -../sprite_nodes/CCSpriteFrame.cpp \ -../sprite_nodes/CCSpriteFrameCache.cpp - -OBJS += \ -./sprite_nodes/CCAnimation.o \ -./sprite_nodes/CCAnimationCache.o \ -./sprite_nodes/CCSprite.o \ -./sprite_nodes/CCSpriteBatchNode.o \ -./sprite_nodes/CCSpriteFrame.o \ -./sprite_nodes/CCSpriteFrameCache.o - -CPP_DEPS += \ -./sprite_nodes/CCAnimation.d \ -./sprite_nodes/CCAnimationCache.d \ -./sprite_nodes/CCSprite.d \ -./sprite_nodes/CCSpriteBatchNode.d \ -./sprite_nodes/CCSpriteFrame.d \ -./sprite_nodes/CCSpriteFrameCache.d - - -# Each subdirectory must supply rules for building sources it contributes -sprite_nodes/%.o: ../sprite_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/subdir.mk b/cocos2dx/AndroidRelease/subdir.mk deleted file mode 100644 index 849211a106..0000000000 --- a/cocos2dx/AndroidRelease/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../CCCamera.cpp \ -../CCConfiguration.cpp \ -../CCDirector.cpp \ -../CCDrawingPrimitives.cpp \ -../CCScheduler.cpp \ -../cocos2d.cpp - -OBJS += \ -./CCCamera.o \ -./CCConfiguration.o \ -./CCDirector.o \ -./CCDrawingPrimitives.o \ -./CCScheduler.o \ -./cocos2d.o - -CPP_DEPS += \ -./CCCamera.d \ -./CCConfiguration.d \ -./CCDirector.d \ -./CCDrawingPrimitives.d \ -./CCScheduler.d \ -./cocos2d.d - - -# Each subdirectory must supply rules for building sources it contributes -%.o: ../%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/support/image_support/subdir.mk b/cocos2dx/AndroidRelease/support/image_support/subdir.mk deleted file mode 100644 index 731264c3a3..0000000000 --- a/cocos2dx/AndroidRelease/support/image_support/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/image_support/TGAlib.cpp - -OBJS += \ -./support/image_support/TGAlib.o - -CPP_DEPS += \ -./support/image_support/TGAlib.d - - -# Each subdirectory must supply rules for building sources it contributes -support/image_support/%.o: ../support/image_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/support/subdir.mk b/cocos2dx/AndroidRelease/support/subdir.mk deleted file mode 100644 index a5bfdfd25e..0000000000 --- a/cocos2dx/AndroidRelease/support/subdir.mk +++ /dev/null @@ -1,42 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/CCArray.cpp \ -../support/CCPointExtension.cpp \ -../support/CCProfiling.cpp \ -../support/CCUserDefault.cpp \ -../support/TransformUtils.cpp \ -../support/base64.cpp \ -../support/ccUtils.cpp - -OBJS += \ -./support/CCArray.o \ -./support/CCPointExtension.o \ -./support/CCProfiling.o \ -./support/CCUserDefault.o \ -./support/TransformUtils.o \ -./support/base64.o \ -./support/ccUtils.o - -CPP_DEPS += \ -./support/CCArray.d \ -./support/CCPointExtension.d \ -./support/CCProfiling.d \ -./support/CCUserDefault.d \ -./support/TransformUtils.d \ -./support/base64.d \ -./support/ccUtils.d - - -# Each subdirectory must supply rules for building sources it contributes -support/%.o: ../support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/support/zip_support/subdir.mk b/cocos2dx/AndroidRelease/support/zip_support/subdir.mk deleted file mode 100644 index b9107ba147..0000000000 --- a/cocos2dx/AndroidRelease/support/zip_support/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/zip_support/ZipUtils.cpp \ -../support/zip_support/ioapi.cpp \ -../support/zip_support/unzip.cpp - -OBJS += \ -./support/zip_support/ZipUtils.o \ -./support/zip_support/ioapi.o \ -./support/zip_support/unzip.o - -CPP_DEPS += \ -./support/zip_support/ZipUtils.d \ -./support/zip_support/ioapi.d \ -./support/zip_support/unzip.d - - -# Each subdirectory must supply rules for building sources it contributes -support/zip_support/%.o: ../support/zip_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/text_input_node/subdir.mk b/cocos2dx/AndroidRelease/text_input_node/subdir.mk deleted file mode 100644 index 975fdc5b69..0000000000 --- a/cocos2dx/AndroidRelease/text_input_node/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../text_input_node/CCIMEDispatcher.cpp \ -../text_input_node/CCTextFieldTTF.cpp - -OBJS += \ -./text_input_node/CCIMEDispatcher.o \ -./text_input_node/CCTextFieldTTF.o - -CPP_DEPS += \ -./text_input_node/CCIMEDispatcher.d \ -./text_input_node/CCTextFieldTTF.d - - -# Each subdirectory must supply rules for building sources it contributes -text_input_node/%.o: ../text_input_node/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/textures/subdir.mk b/cocos2dx/AndroidRelease/textures/subdir.mk deleted file mode 100644 index b65025b817..0000000000 --- a/cocos2dx/AndroidRelease/textures/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../textures/CCTexture2D.cpp \ -../textures/CCTextureAtlas.cpp \ -../textures/CCTextureCache.cpp \ -../textures/CCTexturePVR.cpp - -OBJS += \ -./textures/CCTexture2D.o \ -./textures/CCTextureAtlas.o \ -./textures/CCTextureCache.o \ -./textures/CCTexturePVR.o - -CPP_DEPS += \ -./textures/CCTexture2D.d \ -./textures/CCTextureAtlas.d \ -./textures/CCTextureCache.d \ -./textures/CCTexturePVR.d - - -# Each subdirectory must supply rules for building sources it contributes -textures/%.o: ../textures/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/subdir.mk b/cocos2dx/AndroidRelease/tileMap_parallax_nodes/subdir.mk deleted file mode 100644 index 81eb86844f..0000000000 --- a/cocos2dx/AndroidRelease/tileMap_parallax_nodes/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../tileMap_parallax_nodes/CCParallaxNode.cpp \ -../tileMap_parallax_nodes/CCTMXLayer.cpp \ -../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ -../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ -../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ -../tileMap_parallax_nodes/CCTileMapAtlas.cpp - -OBJS += \ -./tileMap_parallax_nodes/CCParallaxNode.o \ -./tileMap_parallax_nodes/CCTMXLayer.o \ -./tileMap_parallax_nodes/CCTMXObjectGroup.o \ -./tileMap_parallax_nodes/CCTMXTiledMap.o \ -./tileMap_parallax_nodes/CCTMXXMLParser.o \ -./tileMap_parallax_nodes/CCTileMapAtlas.o - -CPP_DEPS += \ -./tileMap_parallax_nodes/CCParallaxNode.d \ -./tileMap_parallax_nodes/CCTMXLayer.d \ -./tileMap_parallax_nodes/CCTMXObjectGroup.d \ -./tileMap_parallax_nodes/CCTMXTiledMap.d \ -./tileMap_parallax_nodes/CCTMXXMLParser.d \ -./tileMap_parallax_nodes/CCTileMapAtlas.d - - -# Each subdirectory must supply rules for building sources it contributes -tileMap_parallax_nodes/%.o: ../tileMap_parallax_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/AndroidRelease/touch_dispatcher/subdir.mk b/cocos2dx/AndroidRelease/touch_dispatcher/subdir.mk deleted file mode 100644 index d64b80e8b1..0000000000 --- a/cocos2dx/AndroidRelease/touch_dispatcher/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../touch_dispatcher/CCTouchDispatcher.cpp \ -../touch_dispatcher/CCTouchHandler.cpp - -OBJS += \ -./touch_dispatcher/CCTouchDispatcher.o \ -./touch_dispatcher/CCTouchHandler.o - -CPP_DEPS += \ -./touch_dispatcher/CCTouchDispatcher.d \ -./touch_dispatcher/CCTouchHandler.d - - -# Each subdirectory must supply rules for building sources it contributes -touch_dispatcher/%.o: ../touch_dispatcher/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - arm-linux-androideabi-g++ -DANDROID -DUSE_FILE32API -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libjpeg" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/android/libxml2" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/actions/subdir.mk b/cocos2dx/Debug/actions/subdir.mk deleted file mode 100644 index 1e7651aa45..0000000000 --- a/cocos2dx/Debug/actions/subdir.mk +++ /dev/null @@ -1,54 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../actions/CCAction.cpp \ -../actions/CCActionCamera.cpp \ -../actions/CCActionEase.cpp \ -../actions/CCActionGrid.cpp \ -../actions/CCActionGrid3D.cpp \ -../actions/CCActionInstant.cpp \ -../actions/CCActionInterval.cpp \ -../actions/CCActionManager.cpp \ -../actions/CCActionPageTurn3D.cpp \ -../actions/CCActionProgressTimer.cpp \ -../actions/CCActionTiledGrid.cpp - -OBJS += \ -./actions/CCAction.o \ -./actions/CCActionCamera.o \ -./actions/CCActionEase.o \ -./actions/CCActionGrid.o \ -./actions/CCActionGrid3D.o \ -./actions/CCActionInstant.o \ -./actions/CCActionInterval.o \ -./actions/CCActionManager.o \ -./actions/CCActionPageTurn3D.o \ -./actions/CCActionProgressTimer.o \ -./actions/CCActionTiledGrid.o - -CPP_DEPS += \ -./actions/CCAction.d \ -./actions/CCActionCamera.d \ -./actions/CCActionEase.d \ -./actions/CCActionGrid.d \ -./actions/CCActionGrid3D.d \ -./actions/CCActionInstant.d \ -./actions/CCActionInterval.d \ -./actions/CCActionManager.d \ -./actions/CCActionPageTurn3D.d \ -./actions/CCActionProgressTimer.d \ -./actions/CCActionTiledGrid.d - - -# Each subdirectory must supply rules for building sources it contributes -actions/%.o: ../actions/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/base_nodes/subdir.mk b/cocos2dx/Debug/base_nodes/subdir.mk deleted file mode 100644 index 0d5e2ddd1c..0000000000 --- a/cocos2dx/Debug/base_nodes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../base_nodes/CCAtlasNode.cpp \ -../base_nodes/CCNode.cpp - -OBJS += \ -./base_nodes/CCAtlasNode.o \ -./base_nodes/CCNode.o - -CPP_DEPS += \ -./base_nodes/CCAtlasNode.d \ -./base_nodes/CCNode.d - - -# Each subdirectory must supply rules for building sources it contributes -base_nodes/%.o: ../base_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/cocoa/subdir.mk b/cocos2dx/Debug/cocoa/subdir.mk deleted file mode 100644 index c27ec1e76c..0000000000 --- a/cocos2dx/Debug/cocoa/subdir.mk +++ /dev/null @@ -1,45 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../cocoa/CCAffineTransform.cpp \ -../cocoa/CCAutoreleasePool.cpp \ -../cocoa/CCData.cpp \ -../cocoa/CCGeometry.cpp \ -../cocoa/CCNS.cpp \ -../cocoa/CCObject.cpp \ -../cocoa/CCSet.cpp \ -../cocoa/CCZone.cpp - -OBJS += \ -./cocoa/CCAffineTransform.o \ -./cocoa/CCAutoreleasePool.o \ -./cocoa/CCData.o \ -./cocoa/CCGeometry.o \ -./cocoa/CCNS.o \ -./cocoa/CCObject.o \ -./cocoa/CCSet.o \ -./cocoa/CCZone.o - -CPP_DEPS += \ -./cocoa/CCAffineTransform.d \ -./cocoa/CCAutoreleasePool.d \ -./cocoa/CCData.d \ -./cocoa/CCGeometry.d \ -./cocoa/CCNS.d \ -./cocoa/CCObject.d \ -./cocoa/CCSet.d \ -./cocoa/CCZone.d - - -# Each subdirectory must supply rules for building sources it contributes -cocoa/%.o: ../cocoa/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/effects/subdir.mk b/cocos2dx/Debug/effects/subdir.mk deleted file mode 100644 index 1b2cad5f78..0000000000 --- a/cocos2dx/Debug/effects/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../effects/CCGrabber.cpp \ -../effects/CCGrid.cpp - -OBJS += \ -./effects/CCGrabber.o \ -./effects/CCGrid.o - -CPP_DEPS += \ -./effects/CCGrabber.d \ -./effects/CCGrid.d - - -# Each subdirectory must supply rules for building sources it contributes -effects/%.o: ../effects/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/keypad_dispatcher/subdir.mk b/cocos2dx/Debug/keypad_dispatcher/subdir.mk deleted file mode 100644 index 602aae8953..0000000000 --- a/cocos2dx/Debug/keypad_dispatcher/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../keypad_dispatcher/CCKeypadDelegate.cpp \ -../keypad_dispatcher/CCKeypadDispatcher.cpp - -OBJS += \ -./keypad_dispatcher/CCKeypadDelegate.o \ -./keypad_dispatcher/CCKeypadDispatcher.o - -CPP_DEPS += \ -./keypad_dispatcher/CCKeypadDelegate.d \ -./keypad_dispatcher/CCKeypadDispatcher.d - - -# Each subdirectory must supply rules for building sources it contributes -keypad_dispatcher/%.o: ../keypad_dispatcher/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/label_nodes/subdir.mk b/cocos2dx/Debug/label_nodes/subdir.mk deleted file mode 100644 index 824c5b1c1f..0000000000 --- a/cocos2dx/Debug/label_nodes/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../label_nodes/CCLabelAtlas.cpp \ -../label_nodes/CCLabelBMFont.cpp \ -../label_nodes/CCLabelTTF.cpp - -OBJS += \ -./label_nodes/CCLabelAtlas.o \ -./label_nodes/CCLabelBMFont.o \ -./label_nodes/CCLabelTTF.o - -CPP_DEPS += \ -./label_nodes/CCLabelAtlas.d \ -./label_nodes/CCLabelBMFont.d \ -./label_nodes/CCLabelTTF.d - - -# Each subdirectory must supply rules for building sources it contributes -label_nodes/%.o: ../label_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/layers_scenes_transitions_nodes/subdir.mk b/cocos2dx/Debug/layers_scenes_transitions_nodes/subdir.mk deleted file mode 100644 index 3a67ce43ae..0000000000 --- a/cocos2dx/Debug/layers_scenes_transitions_nodes/subdir.mk +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../layers_scenes_transitions_nodes/CCLayer.cpp \ -../layers_scenes_transitions_nodes/CCScene.cpp \ -../layers_scenes_transitions_nodes/CCTransition.cpp \ -../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ -../layers_scenes_transitions_nodes/CCTransitionRadial.cpp - -OBJS += \ -./layers_scenes_transitions_nodes/CCLayer.o \ -./layers_scenes_transitions_nodes/CCScene.o \ -./layers_scenes_transitions_nodes/CCTransition.o \ -./layers_scenes_transitions_nodes/CCTransitionPageTurn.o \ -./layers_scenes_transitions_nodes/CCTransitionRadial.o - -CPP_DEPS += \ -./layers_scenes_transitions_nodes/CCLayer.d \ -./layers_scenes_transitions_nodes/CCScene.d \ -./layers_scenes_transitions_nodes/CCTransition.d \ -./layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ -./layers_scenes_transitions_nodes/CCTransitionRadial.d - - -# Each subdirectory must supply rules for building sources it contributes -layers_scenes_transitions_nodes/%.o: ../layers_scenes_transitions_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/libcocos2dx-base.so.REMOVED.git-id b/cocos2dx/Debug/libcocos2dx-base.so.REMOVED.git-id deleted file mode 100644 index 9bbbf48454..0000000000 --- a/cocos2dx/Debug/libcocos2dx-base.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -0ffbc9f6a7b350e7027f65b7e4c6c64dd4e9d997 \ No newline at end of file diff --git a/cocos2dx/Debug/makefile b/cocos2dx/Debug/makefile deleted file mode 100644 index 8b674fbe18..0000000000 --- a/cocos2dx/Debug/makefile +++ /dev/null @@ -1,85 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include touch_dispatcher/subdir.mk --include tileMap_parallax_nodes/subdir.mk --include textures/subdir.mk --include text_input_node/subdir.mk --include support/zip_support/subdir.mk --include support/image_support/subdir.mk --include support/subdir.mk --include sprite_nodes/subdir.mk --include script_support/subdir.mk --include platform/subdir.mk --include platform/Linux/subdir.mk --include particle_nodes/subdir.mk --include misc_nodes/subdir.mk --include menu_nodes/subdir.mk --include layers_scenes_transitions_nodes/subdir.mk --include label_nodes/subdir.mk --include keypad_dispatcher/subdir.mk --include effects/subdir.mk --include cocoa/subdir.mk --include base_nodes/subdir.mk --include actions/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: libcocos2dx-base.so - -# Tool invocations -libcocos2dx-base.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - g++ -shared -o "libcocos2dx-base.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libcocos2dx-base.so - -@echo ' ' - -post-build: - -@echo 'move all libs into the specific folder' - -sh ../../post.sh cocos2dx-base cocos2d - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets diff --git a/cocos2dx/Debug/menu_nodes/subdir.mk b/cocos2dx/Debug/menu_nodes/subdir.mk deleted file mode 100644 index 946e3c1aab..0000000000 --- a/cocos2dx/Debug/menu_nodes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../menu_nodes/CCMenu.cpp \ -../menu_nodes/CCMenuItem.cpp - -OBJS += \ -./menu_nodes/CCMenu.o \ -./menu_nodes/CCMenuItem.o - -CPP_DEPS += \ -./menu_nodes/CCMenu.d \ -./menu_nodes/CCMenuItem.d - - -# Each subdirectory must supply rules for building sources it contributes -menu_nodes/%.o: ../menu_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/misc_nodes/subdir.mk b/cocos2dx/Debug/misc_nodes/subdir.mk deleted file mode 100644 index 2306df5032..0000000000 --- a/cocos2dx/Debug/misc_nodes/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../misc_nodes/CCMotionStreak.cpp \ -../misc_nodes/CCProgressTimer.cpp \ -../misc_nodes/CCRenderTexture.cpp \ -../misc_nodes/CCRibbon.cpp - -OBJS += \ -./misc_nodes/CCMotionStreak.o \ -./misc_nodes/CCProgressTimer.o \ -./misc_nodes/CCRenderTexture.o \ -./misc_nodes/CCRibbon.o - -CPP_DEPS += \ -./misc_nodes/CCMotionStreak.d \ -./misc_nodes/CCProgressTimer.d \ -./misc_nodes/CCRenderTexture.d \ -./misc_nodes/CCRibbon.d - - -# Each subdirectory must supply rules for building sources it contributes -misc_nodes/%.o: ../misc_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/objects.mk b/cocos2dx/Debug/objects.mk deleted file mode 100644 index 1a01a79b67..0000000000 --- a/cocos2dx/Debug/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libfreetype.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libcurl.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libxml2.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libpng.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libjpeg.a - -LIBS := -lglfw -lGL - diff --git a/cocos2dx/Debug/particle_nodes/subdir.mk b/cocos2dx/Debug/particle_nodes/subdir.mk deleted file mode 100644 index 5f6836d2ac..0000000000 --- a/cocos2dx/Debug/particle_nodes/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../particle_nodes/CCParticleExamples.cpp \ -../particle_nodes/CCParticleSystem.cpp \ -../particle_nodes/CCParticleSystemQuad.cpp - -OBJS += \ -./particle_nodes/CCParticleExamples.o \ -./particle_nodes/CCParticleSystem.o \ -./particle_nodes/CCParticleSystemQuad.o - -CPP_DEPS += \ -./particle_nodes/CCParticleExamples.d \ -./particle_nodes/CCParticleSystem.d \ -./particle_nodes/CCParticleSystemQuad.d - - -# Each subdirectory must supply rules for building sources it contributes -particle_nodes/%.o: ../particle_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/platform/Linux/subdir.mk b/cocos2dx/Debug/platform/Linux/subdir.mk deleted file mode 100644 index 2f47172fd5..0000000000 --- a/cocos2dx/Debug/platform/Linux/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/Linux/CCAplication_linux.cpp \ -../platform/Linux/CCEGLView_linux.cpp \ -../platform/Linux/CCFileUtils_Linux.cpp \ -../platform/Linux/CCImage_Linux.cpp - -OBJS += \ -./platform/Linux/CCAplication_linux.o \ -./platform/Linux/CCEGLView_linux.o \ -./platform/Linux/CCFileUtils_Linux.o \ -./platform/Linux/CCImage_Linux.o - -CPP_DEPS += \ -./platform/Linux/CCAplication_linux.d \ -./platform/Linux/CCEGLView_linux.d \ -./platform/Linux/CCFileUtils_Linux.d \ -./platform/Linux/CCImage_Linux.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/Linux/%.o: ../platform/Linux/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/platform/subdir.mk b/cocos2dx/Debug/platform/subdir.mk deleted file mode 100644 index c46551bbe1..0000000000 --- a/cocos2dx/Debug/platform/subdir.mk +++ /dev/null @@ -1,45 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/CCCommon.cpp \ -../platform/CCFileUtils.cpp \ -../platform/CCGL.cpp \ -../platform/CCImage.cpp \ -../platform/CCSAXParser.cpp \ -../platform/CCStdC.cpp \ -../platform/CCThread.cpp \ -../platform/platform.cpp - -OBJS += \ -./platform/CCCommon.o \ -./platform/CCFileUtils.o \ -./platform/CCGL.o \ -./platform/CCImage.o \ -./platform/CCSAXParser.o \ -./platform/CCStdC.o \ -./platform/CCThread.o \ -./platform/platform.o - -CPP_DEPS += \ -./platform/CCCommon.d \ -./platform/CCFileUtils.d \ -./platform/CCGL.d \ -./platform/CCImage.d \ -./platform/CCSAXParser.d \ -./platform/CCStdC.d \ -./platform/CCThread.d \ -./platform/platform.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/%.o: ../platform/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/script_support/subdir.mk b/cocos2dx/Debug/script_support/subdir.mk deleted file mode 100644 index e1570df5f2..0000000000 --- a/cocos2dx/Debug/script_support/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../script_support/CCScriptSupport.cpp - -OBJS += \ -./script_support/CCScriptSupport.o - -CPP_DEPS += \ -./script_support/CCScriptSupport.d - - -# Each subdirectory must supply rules for building sources it contributes -script_support/%.o: ../script_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/sources.mk b/cocos2dx/Debug/sources.mk deleted file mode 100644 index 6de23a9539..0000000000 --- a/cocos2dx/Debug/sources.mk +++ /dev/null @@ -1,48 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -touch_dispatcher \ -tileMap_parallax_nodes \ -textures \ -text_input_node \ -support/zip_support \ -support/image_support \ -support \ -sprite_nodes \ -script_support \ -platform \ -platform/Linux \ -particle_nodes \ -misc_nodes \ -menu_nodes \ -layers_scenes_transitions_nodes \ -label_nodes \ -keypad_dispatcher \ -effects \ -. \ -cocoa \ -base_nodes \ -actions \ - diff --git a/cocos2dx/Debug/sprite_nodes/subdir.mk b/cocos2dx/Debug/sprite_nodes/subdir.mk deleted file mode 100644 index 851ba9888b..0000000000 --- a/cocos2dx/Debug/sprite_nodes/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../sprite_nodes/CCAnimation.cpp \ -../sprite_nodes/CCAnimationCache.cpp \ -../sprite_nodes/CCSprite.cpp \ -../sprite_nodes/CCSpriteBatchNode.cpp \ -../sprite_nodes/CCSpriteFrame.cpp \ -../sprite_nodes/CCSpriteFrameCache.cpp - -OBJS += \ -./sprite_nodes/CCAnimation.o \ -./sprite_nodes/CCAnimationCache.o \ -./sprite_nodes/CCSprite.o \ -./sprite_nodes/CCSpriteBatchNode.o \ -./sprite_nodes/CCSpriteFrame.o \ -./sprite_nodes/CCSpriteFrameCache.o - -CPP_DEPS += \ -./sprite_nodes/CCAnimation.d \ -./sprite_nodes/CCAnimationCache.d \ -./sprite_nodes/CCSprite.d \ -./sprite_nodes/CCSpriteBatchNode.d \ -./sprite_nodes/CCSpriteFrame.d \ -./sprite_nodes/CCSpriteFrameCache.d - - -# Each subdirectory must supply rules for building sources it contributes -sprite_nodes/%.o: ../sprite_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/subdir.mk b/cocos2dx/Debug/subdir.mk deleted file mode 100644 index 2a196a2f94..0000000000 --- a/cocos2dx/Debug/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../CCCamera.cpp \ -../CCConfiguration.cpp \ -../CCDirector.cpp \ -../CCDrawingPrimitives.cpp \ -../CCScheduler.cpp \ -../cocos2d.cpp - -OBJS += \ -./CCCamera.o \ -./CCConfiguration.o \ -./CCDirector.o \ -./CCDrawingPrimitives.o \ -./CCScheduler.o \ -./cocos2d.o - -CPP_DEPS += \ -./CCCamera.d \ -./CCConfiguration.d \ -./CCDirector.d \ -./CCDrawingPrimitives.d \ -./CCScheduler.d \ -./cocos2d.d - - -# Each subdirectory must supply rules for building sources it contributes -%.o: ../%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/support/image_support/subdir.mk b/cocos2dx/Debug/support/image_support/subdir.mk deleted file mode 100644 index c1548d3d21..0000000000 --- a/cocos2dx/Debug/support/image_support/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/image_support/TGAlib.cpp - -OBJS += \ -./support/image_support/TGAlib.o - -CPP_DEPS += \ -./support/image_support/TGAlib.d - - -# Each subdirectory must supply rules for building sources it contributes -support/image_support/%.o: ../support/image_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/support/subdir.mk b/cocos2dx/Debug/support/subdir.mk deleted file mode 100644 index ff3b7c8beb..0000000000 --- a/cocos2dx/Debug/support/subdir.mk +++ /dev/null @@ -1,42 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/CCArray.cpp \ -../support/CCPointExtension.cpp \ -../support/CCProfiling.cpp \ -../support/CCUserDefault.cpp \ -../support/TransformUtils.cpp \ -../support/base64.cpp \ -../support/ccUtils.cpp - -OBJS += \ -./support/CCArray.o \ -./support/CCPointExtension.o \ -./support/CCProfiling.o \ -./support/CCUserDefault.o \ -./support/TransformUtils.o \ -./support/base64.o \ -./support/ccUtils.o - -CPP_DEPS += \ -./support/CCArray.d \ -./support/CCPointExtension.d \ -./support/CCProfiling.d \ -./support/CCUserDefault.d \ -./support/TransformUtils.d \ -./support/base64.d \ -./support/ccUtils.d - - -# Each subdirectory must supply rules for building sources it contributes -support/%.o: ../support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/support/zip_support/subdir.mk b/cocos2dx/Debug/support/zip_support/subdir.mk deleted file mode 100644 index 0ed4ad232e..0000000000 --- a/cocos2dx/Debug/support/zip_support/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/zip_support/ZipUtils.cpp \ -../support/zip_support/ioapi.cpp \ -../support/zip_support/unzip.cpp - -OBJS += \ -./support/zip_support/ZipUtils.o \ -./support/zip_support/ioapi.o \ -./support/zip_support/unzip.o - -CPP_DEPS += \ -./support/zip_support/ZipUtils.d \ -./support/zip_support/ioapi.d \ -./support/zip_support/unzip.d - - -# Each subdirectory must supply rules for building sources it contributes -support/zip_support/%.o: ../support/zip_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/text_input_node/subdir.mk b/cocos2dx/Debug/text_input_node/subdir.mk deleted file mode 100644 index 158b1bcc27..0000000000 --- a/cocos2dx/Debug/text_input_node/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../text_input_node/CCIMEDispatcher.cpp \ -../text_input_node/CCTextFieldTTF.cpp - -OBJS += \ -./text_input_node/CCIMEDispatcher.o \ -./text_input_node/CCTextFieldTTF.o - -CPP_DEPS += \ -./text_input_node/CCIMEDispatcher.d \ -./text_input_node/CCTextFieldTTF.d - - -# Each subdirectory must supply rules for building sources it contributes -text_input_node/%.o: ../text_input_node/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/textures/subdir.mk b/cocos2dx/Debug/textures/subdir.mk deleted file mode 100644 index 4e8c59884c..0000000000 --- a/cocos2dx/Debug/textures/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../textures/CCTexture2D.cpp \ -../textures/CCTextureAtlas.cpp \ -../textures/CCTextureCache.cpp \ -../textures/CCTexturePVR.cpp - -OBJS += \ -./textures/CCTexture2D.o \ -./textures/CCTextureAtlas.o \ -./textures/CCTextureCache.o \ -./textures/CCTexturePVR.o - -CPP_DEPS += \ -./textures/CCTexture2D.d \ -./textures/CCTextureAtlas.d \ -./textures/CCTextureCache.d \ -./textures/CCTexturePVR.d - - -# Each subdirectory must supply rules for building sources it contributes -textures/%.o: ../textures/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/tileMap_parallax_nodes/subdir.mk b/cocos2dx/Debug/tileMap_parallax_nodes/subdir.mk deleted file mode 100644 index e814684981..0000000000 --- a/cocos2dx/Debug/tileMap_parallax_nodes/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../tileMap_parallax_nodes/CCParallaxNode.cpp \ -../tileMap_parallax_nodes/CCTMXLayer.cpp \ -../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ -../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ -../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ -../tileMap_parallax_nodes/CCTileMapAtlas.cpp - -OBJS += \ -./tileMap_parallax_nodes/CCParallaxNode.o \ -./tileMap_parallax_nodes/CCTMXLayer.o \ -./tileMap_parallax_nodes/CCTMXObjectGroup.o \ -./tileMap_parallax_nodes/CCTMXTiledMap.o \ -./tileMap_parallax_nodes/CCTMXXMLParser.o \ -./tileMap_parallax_nodes/CCTileMapAtlas.o - -CPP_DEPS += \ -./tileMap_parallax_nodes/CCParallaxNode.d \ -./tileMap_parallax_nodes/CCTMXLayer.d \ -./tileMap_parallax_nodes/CCTMXObjectGroup.d \ -./tileMap_parallax_nodes/CCTMXTiledMap.d \ -./tileMap_parallax_nodes/CCTMXXMLParser.d \ -./tileMap_parallax_nodes/CCTileMapAtlas.d - - -# Each subdirectory must supply rules for building sources it contributes -tileMap_parallax_nodes/%.o: ../tileMap_parallax_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Debug/touch_dispatcher/subdir.mk b/cocos2dx/Debug/touch_dispatcher/subdir.mk deleted file mode 100644 index c538f8ed2a..0000000000 --- a/cocos2dx/Debug/touch_dispatcher/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../touch_dispatcher/CCTouchDispatcher.cpp \ -../touch_dispatcher/CCTouchHandler.cpp - -OBJS += \ -./touch_dispatcher/CCTouchDispatcher.o \ -./touch_dispatcher/CCTouchHandler.o - -CPP_DEPS += \ -./touch_dispatcher/CCTouchDispatcher.d \ -./touch_dispatcher/CCTouchHandler.d - - -# Each subdirectory must supply rules for building sources it contributes -touch_dispatcher/%.o: ../touch_dispatcher/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O0 -g3 -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/actions/subdir.mk b/cocos2dx/Release/actions/subdir.mk deleted file mode 100644 index 63a3118fb9..0000000000 --- a/cocos2dx/Release/actions/subdir.mk +++ /dev/null @@ -1,54 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../actions/CCAction.cpp \ -../actions/CCActionCamera.cpp \ -../actions/CCActionEase.cpp \ -../actions/CCActionGrid.cpp \ -../actions/CCActionGrid3D.cpp \ -../actions/CCActionInstant.cpp \ -../actions/CCActionInterval.cpp \ -../actions/CCActionManager.cpp \ -../actions/CCActionPageTurn3D.cpp \ -../actions/CCActionProgressTimer.cpp \ -../actions/CCActionTiledGrid.cpp - -OBJS += \ -./actions/CCAction.o \ -./actions/CCActionCamera.o \ -./actions/CCActionEase.o \ -./actions/CCActionGrid.o \ -./actions/CCActionGrid3D.o \ -./actions/CCActionInstant.o \ -./actions/CCActionInterval.o \ -./actions/CCActionManager.o \ -./actions/CCActionPageTurn3D.o \ -./actions/CCActionProgressTimer.o \ -./actions/CCActionTiledGrid.o - -CPP_DEPS += \ -./actions/CCAction.d \ -./actions/CCActionCamera.d \ -./actions/CCActionEase.d \ -./actions/CCActionGrid.d \ -./actions/CCActionGrid3D.d \ -./actions/CCActionInstant.d \ -./actions/CCActionInterval.d \ -./actions/CCActionManager.d \ -./actions/CCActionPageTurn3D.d \ -./actions/CCActionProgressTimer.d \ -./actions/CCActionTiledGrid.d - - -# Each subdirectory must supply rules for building sources it contributes -actions/%.o: ../actions/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/base_nodes/subdir.mk b/cocos2dx/Release/base_nodes/subdir.mk deleted file mode 100644 index 7554f67250..0000000000 --- a/cocos2dx/Release/base_nodes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../base_nodes/CCAtlasNode.cpp \ -../base_nodes/CCNode.cpp - -OBJS += \ -./base_nodes/CCAtlasNode.o \ -./base_nodes/CCNode.o - -CPP_DEPS += \ -./base_nodes/CCAtlasNode.d \ -./base_nodes/CCNode.d - - -# Each subdirectory must supply rules for building sources it contributes -base_nodes/%.o: ../base_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/cocoa/subdir.mk b/cocos2dx/Release/cocoa/subdir.mk deleted file mode 100644 index 0d5dbaee2a..0000000000 --- a/cocos2dx/Release/cocoa/subdir.mk +++ /dev/null @@ -1,45 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../cocoa/CCAffineTransform.cpp \ -../cocoa/CCAutoreleasePool.cpp \ -../cocoa/CCData.cpp \ -../cocoa/CCGeometry.cpp \ -../cocoa/CCNS.cpp \ -../cocoa/CCObject.cpp \ -../cocoa/CCSet.cpp \ -../cocoa/CCZone.cpp - -OBJS += \ -./cocoa/CCAffineTransform.o \ -./cocoa/CCAutoreleasePool.o \ -./cocoa/CCData.o \ -./cocoa/CCGeometry.o \ -./cocoa/CCNS.o \ -./cocoa/CCObject.o \ -./cocoa/CCSet.o \ -./cocoa/CCZone.o - -CPP_DEPS += \ -./cocoa/CCAffineTransform.d \ -./cocoa/CCAutoreleasePool.d \ -./cocoa/CCData.d \ -./cocoa/CCGeometry.d \ -./cocoa/CCNS.d \ -./cocoa/CCObject.d \ -./cocoa/CCSet.d \ -./cocoa/CCZone.d - - -# Each subdirectory must supply rules for building sources it contributes -cocoa/%.o: ../cocoa/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/effects/subdir.mk b/cocos2dx/Release/effects/subdir.mk deleted file mode 100644 index e30c92bdf8..0000000000 --- a/cocos2dx/Release/effects/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../effects/CCGrabber.cpp \ -../effects/CCGrid.cpp - -OBJS += \ -./effects/CCGrabber.o \ -./effects/CCGrid.o - -CPP_DEPS += \ -./effects/CCGrabber.d \ -./effects/CCGrid.d - - -# Each subdirectory must supply rules for building sources it contributes -effects/%.o: ../effects/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/keypad_dispatcher/subdir.mk b/cocos2dx/Release/keypad_dispatcher/subdir.mk deleted file mode 100644 index c98f7a1a96..0000000000 --- a/cocos2dx/Release/keypad_dispatcher/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../keypad_dispatcher/CCKeypadDelegate.cpp \ -../keypad_dispatcher/CCKeypadDispatcher.cpp - -OBJS += \ -./keypad_dispatcher/CCKeypadDelegate.o \ -./keypad_dispatcher/CCKeypadDispatcher.o - -CPP_DEPS += \ -./keypad_dispatcher/CCKeypadDelegate.d \ -./keypad_dispatcher/CCKeypadDispatcher.d - - -# Each subdirectory must supply rules for building sources it contributes -keypad_dispatcher/%.o: ../keypad_dispatcher/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/label_nodes/subdir.mk b/cocos2dx/Release/label_nodes/subdir.mk deleted file mode 100644 index 3adfc75574..0000000000 --- a/cocos2dx/Release/label_nodes/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../label_nodes/CCLabelAtlas.cpp \ -../label_nodes/CCLabelBMFont.cpp \ -../label_nodes/CCLabelTTF.cpp - -OBJS += \ -./label_nodes/CCLabelAtlas.o \ -./label_nodes/CCLabelBMFont.o \ -./label_nodes/CCLabelTTF.o - -CPP_DEPS += \ -./label_nodes/CCLabelAtlas.d \ -./label_nodes/CCLabelBMFont.d \ -./label_nodes/CCLabelTTF.d - - -# Each subdirectory must supply rules for building sources it contributes -label_nodes/%.o: ../label_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/layers_scenes_transitions_nodes/subdir.mk b/cocos2dx/Release/layers_scenes_transitions_nodes/subdir.mk deleted file mode 100644 index c22fe85276..0000000000 --- a/cocos2dx/Release/layers_scenes_transitions_nodes/subdir.mk +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../layers_scenes_transitions_nodes/CCLayer.cpp \ -../layers_scenes_transitions_nodes/CCScene.cpp \ -../layers_scenes_transitions_nodes/CCTransition.cpp \ -../layers_scenes_transitions_nodes/CCTransitionPageTurn.cpp \ -../layers_scenes_transitions_nodes/CCTransitionRadial.cpp - -OBJS += \ -./layers_scenes_transitions_nodes/CCLayer.o \ -./layers_scenes_transitions_nodes/CCScene.o \ -./layers_scenes_transitions_nodes/CCTransition.o \ -./layers_scenes_transitions_nodes/CCTransitionPageTurn.o \ -./layers_scenes_transitions_nodes/CCTransitionRadial.o - -CPP_DEPS += \ -./layers_scenes_transitions_nodes/CCLayer.d \ -./layers_scenes_transitions_nodes/CCScene.d \ -./layers_scenes_transitions_nodes/CCTransition.d \ -./layers_scenes_transitions_nodes/CCTransitionPageTurn.d \ -./layers_scenes_transitions_nodes/CCTransitionRadial.d - - -# Each subdirectory must supply rules for building sources it contributes -layers_scenes_transitions_nodes/%.o: ../layers_scenes_transitions_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/libcocos2dx-base.so.REMOVED.git-id b/cocos2dx/Release/libcocos2dx-base.so.REMOVED.git-id deleted file mode 100644 index f860105318..0000000000 --- a/cocos2dx/Release/libcocos2dx-base.so.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -0f68c17cc75a926c7c3b1b2189f23894cf5b2e2d \ No newline at end of file diff --git a/cocos2dx/Release/makefile b/cocos2dx/Release/makefile deleted file mode 100644 index 8b674fbe18..0000000000 --- a/cocos2dx/Release/makefile +++ /dev/null @@ -1,85 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include touch_dispatcher/subdir.mk --include tileMap_parallax_nodes/subdir.mk --include textures/subdir.mk --include text_input_node/subdir.mk --include support/zip_support/subdir.mk --include support/image_support/subdir.mk --include support/subdir.mk --include sprite_nodes/subdir.mk --include script_support/subdir.mk --include platform/subdir.mk --include platform/Linux/subdir.mk --include particle_nodes/subdir.mk --include misc_nodes/subdir.mk --include menu_nodes/subdir.mk --include layers_scenes_transitions_nodes/subdir.mk --include label_nodes/subdir.mk --include keypad_dispatcher/subdir.mk --include effects/subdir.mk --include cocoa/subdir.mk --include base_nodes/subdir.mk --include actions/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: libcocos2dx-base.so - -# Tool invocations -libcocos2dx-base.so: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' - g++ -shared -o "libcocos2dx-base.so" $(OBJS) $(USER_OBJS) $(LIBS) - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libcocos2dx-base.so - -@echo ' ' - -post-build: - -@echo 'move all libs into the specific folder' - -sh ../../post.sh cocos2dx-base cocos2d - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets diff --git a/cocos2dx/Release/menu_nodes/subdir.mk b/cocos2dx/Release/menu_nodes/subdir.mk deleted file mode 100644 index faa611400c..0000000000 --- a/cocos2dx/Release/menu_nodes/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../menu_nodes/CCMenu.cpp \ -../menu_nodes/CCMenuItem.cpp - -OBJS += \ -./menu_nodes/CCMenu.o \ -./menu_nodes/CCMenuItem.o - -CPP_DEPS += \ -./menu_nodes/CCMenu.d \ -./menu_nodes/CCMenuItem.d - - -# Each subdirectory must supply rules for building sources it contributes -menu_nodes/%.o: ../menu_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/misc_nodes/subdir.mk b/cocos2dx/Release/misc_nodes/subdir.mk deleted file mode 100644 index 9ee157725c..0000000000 --- a/cocos2dx/Release/misc_nodes/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../misc_nodes/CCMotionStreak.cpp \ -../misc_nodes/CCProgressTimer.cpp \ -../misc_nodes/CCRenderTexture.cpp \ -../misc_nodes/CCRibbon.cpp - -OBJS += \ -./misc_nodes/CCMotionStreak.o \ -./misc_nodes/CCProgressTimer.o \ -./misc_nodes/CCRenderTexture.o \ -./misc_nodes/CCRibbon.o - -CPP_DEPS += \ -./misc_nodes/CCMotionStreak.d \ -./misc_nodes/CCProgressTimer.d \ -./misc_nodes/CCRenderTexture.d \ -./misc_nodes/CCRibbon.d - - -# Each subdirectory must supply rules for building sources it contributes -misc_nodes/%.o: ../misc_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/objects.mk b/cocos2dx/Release/objects.mk deleted file mode 100644 index 1a01a79b67..0000000000 --- a/cocos2dx/Release/objects.mk +++ /dev/null @@ -1,8 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libfreetype.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libcurl.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libxml2.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libpng.a /home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libraries/libjpeg.a - -LIBS := -lglfw -lGL - diff --git a/cocos2dx/Release/particle_nodes/subdir.mk b/cocos2dx/Release/particle_nodes/subdir.mk deleted file mode 100644 index 8920433c5f..0000000000 --- a/cocos2dx/Release/particle_nodes/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../particle_nodes/CCParticleExamples.cpp \ -../particle_nodes/CCParticleSystem.cpp \ -../particle_nodes/CCParticleSystemQuad.cpp - -OBJS += \ -./particle_nodes/CCParticleExamples.o \ -./particle_nodes/CCParticleSystem.o \ -./particle_nodes/CCParticleSystemQuad.o - -CPP_DEPS += \ -./particle_nodes/CCParticleExamples.d \ -./particle_nodes/CCParticleSystem.d \ -./particle_nodes/CCParticleSystemQuad.d - - -# Each subdirectory must supply rules for building sources it contributes -particle_nodes/%.o: ../particle_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/platform/Linux/subdir.mk b/cocos2dx/Release/platform/Linux/subdir.mk deleted file mode 100644 index c19d81f6ef..0000000000 --- a/cocos2dx/Release/platform/Linux/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/Linux/CCAplication_linux.cpp \ -../platform/Linux/CCEGLView_linux.cpp \ -../platform/Linux/CCFileUtils_Linux.cpp \ -../platform/Linux/CCImage_Linux.cpp - -OBJS += \ -./platform/Linux/CCAplication_linux.o \ -./platform/Linux/CCEGLView_linux.o \ -./platform/Linux/CCFileUtils_Linux.o \ -./platform/Linux/CCImage_Linux.o - -CPP_DEPS += \ -./platform/Linux/CCAplication_linux.d \ -./platform/Linux/CCEGLView_linux.d \ -./platform/Linux/CCFileUtils_Linux.d \ -./platform/Linux/CCImage_Linux.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/Linux/%.o: ../platform/Linux/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/platform/subdir.mk b/cocos2dx/Release/platform/subdir.mk deleted file mode 100644 index 09d2f9dc14..0000000000 --- a/cocos2dx/Release/platform/subdir.mk +++ /dev/null @@ -1,45 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../platform/CCCommon.cpp \ -../platform/CCFileUtils.cpp \ -../platform/CCGL.cpp \ -../platform/CCImage.cpp \ -../platform/CCSAXParser.cpp \ -../platform/CCStdC.cpp \ -../platform/CCThread.cpp \ -../platform/platform.cpp - -OBJS += \ -./platform/CCCommon.o \ -./platform/CCFileUtils.o \ -./platform/CCGL.o \ -./platform/CCImage.o \ -./platform/CCSAXParser.o \ -./platform/CCStdC.o \ -./platform/CCThread.o \ -./platform/platform.o - -CPP_DEPS += \ -./platform/CCCommon.d \ -./platform/CCFileUtils.d \ -./platform/CCGL.d \ -./platform/CCImage.d \ -./platform/CCSAXParser.d \ -./platform/CCStdC.d \ -./platform/CCThread.d \ -./platform/platform.d - - -# Each subdirectory must supply rules for building sources it contributes -platform/%.o: ../platform/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/script_support/subdir.mk b/cocos2dx/Release/script_support/subdir.mk deleted file mode 100644 index e443478cfd..0000000000 --- a/cocos2dx/Release/script_support/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../script_support/CCScriptSupport.cpp - -OBJS += \ -./script_support/CCScriptSupport.o - -CPP_DEPS += \ -./script_support/CCScriptSupport.d - - -# Each subdirectory must supply rules for building sources it contributes -script_support/%.o: ../script_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/sources.mk b/cocos2dx/Release/sources.mk deleted file mode 100644 index 6de23a9539..0000000000 --- a/cocos2dx/Release/sources.mk +++ /dev/null @@ -1,48 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -C_UPPER_SRCS := -C_SRCS := -S_UPPER_SRCS := -OBJ_SRCS := -ASM_SRCS := -CXX_SRCS := -C++_SRCS := -CC_SRCS := -OBJS := -C++_DEPS := -C_DEPS := -CC_DEPS := -LIBRARIES := -CPP_DEPS := -CXX_DEPS := -C_UPPER_DEPS := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -touch_dispatcher \ -tileMap_parallax_nodes \ -textures \ -text_input_node \ -support/zip_support \ -support/image_support \ -support \ -sprite_nodes \ -script_support \ -platform \ -platform/Linux \ -particle_nodes \ -misc_nodes \ -menu_nodes \ -layers_scenes_transitions_nodes \ -label_nodes \ -keypad_dispatcher \ -effects \ -. \ -cocoa \ -base_nodes \ -actions \ - diff --git a/cocos2dx/Release/sprite_nodes/subdir.mk b/cocos2dx/Release/sprite_nodes/subdir.mk deleted file mode 100644 index 14da15e351..0000000000 --- a/cocos2dx/Release/sprite_nodes/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../sprite_nodes/CCAnimation.cpp \ -../sprite_nodes/CCAnimationCache.cpp \ -../sprite_nodes/CCSprite.cpp \ -../sprite_nodes/CCSpriteBatchNode.cpp \ -../sprite_nodes/CCSpriteFrame.cpp \ -../sprite_nodes/CCSpriteFrameCache.cpp - -OBJS += \ -./sprite_nodes/CCAnimation.o \ -./sprite_nodes/CCAnimationCache.o \ -./sprite_nodes/CCSprite.o \ -./sprite_nodes/CCSpriteBatchNode.o \ -./sprite_nodes/CCSpriteFrame.o \ -./sprite_nodes/CCSpriteFrameCache.o - -CPP_DEPS += \ -./sprite_nodes/CCAnimation.d \ -./sprite_nodes/CCAnimationCache.d \ -./sprite_nodes/CCSprite.d \ -./sprite_nodes/CCSpriteBatchNode.d \ -./sprite_nodes/CCSpriteFrame.d \ -./sprite_nodes/CCSpriteFrameCache.d - - -# Each subdirectory must supply rules for building sources it contributes -sprite_nodes/%.o: ../sprite_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/subdir.mk b/cocos2dx/Release/subdir.mk deleted file mode 100644 index b74612e005..0000000000 --- a/cocos2dx/Release/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../CCCamera.cpp \ -../CCConfiguration.cpp \ -../CCDirector.cpp \ -../CCDrawingPrimitives.cpp \ -../CCScheduler.cpp \ -../cocos2d.cpp - -OBJS += \ -./CCCamera.o \ -./CCConfiguration.o \ -./CCDirector.o \ -./CCDrawingPrimitives.o \ -./CCScheduler.o \ -./cocos2d.o - -CPP_DEPS += \ -./CCCamera.d \ -./CCConfiguration.d \ -./CCDirector.d \ -./CCDrawingPrimitives.d \ -./CCScheduler.d \ -./cocos2d.d - - -# Each subdirectory must supply rules for building sources it contributes -%.o: ../%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/support/image_support/subdir.mk b/cocos2dx/Release/support/image_support/subdir.mk deleted file mode 100644 index 223cef975f..0000000000 --- a/cocos2dx/Release/support/image_support/subdir.mk +++ /dev/null @@ -1,24 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/image_support/TGAlib.cpp - -OBJS += \ -./support/image_support/TGAlib.o - -CPP_DEPS += \ -./support/image_support/TGAlib.d - - -# Each subdirectory must supply rules for building sources it contributes -support/image_support/%.o: ../support/image_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/support/subdir.mk b/cocos2dx/Release/support/subdir.mk deleted file mode 100644 index 645d16fd0a..0000000000 --- a/cocos2dx/Release/support/subdir.mk +++ /dev/null @@ -1,42 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/CCArray.cpp \ -../support/CCPointExtension.cpp \ -../support/CCProfiling.cpp \ -../support/CCUserDefault.cpp \ -../support/TransformUtils.cpp \ -../support/base64.cpp \ -../support/ccUtils.cpp - -OBJS += \ -./support/CCArray.o \ -./support/CCPointExtension.o \ -./support/CCProfiling.o \ -./support/CCUserDefault.o \ -./support/TransformUtils.o \ -./support/base64.o \ -./support/ccUtils.o - -CPP_DEPS += \ -./support/CCArray.d \ -./support/CCPointExtension.d \ -./support/CCProfiling.d \ -./support/CCUserDefault.d \ -./support/TransformUtils.d \ -./support/base64.d \ -./support/ccUtils.d - - -# Each subdirectory must supply rules for building sources it contributes -support/%.o: ../support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/support/zip_support/subdir.mk b/cocos2dx/Release/support/zip_support/subdir.mk deleted file mode 100644 index 8e1c6fbef6..0000000000 --- a/cocos2dx/Release/support/zip_support/subdir.mk +++ /dev/null @@ -1,30 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../support/zip_support/ZipUtils.cpp \ -../support/zip_support/ioapi.cpp \ -../support/zip_support/unzip.cpp - -OBJS += \ -./support/zip_support/ZipUtils.o \ -./support/zip_support/ioapi.o \ -./support/zip_support/unzip.o - -CPP_DEPS += \ -./support/zip_support/ZipUtils.d \ -./support/zip_support/ioapi.d \ -./support/zip_support/unzip.d - - -# Each subdirectory must supply rules for building sources it contributes -support/zip_support/%.o: ../support/zip_support/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/text_input_node/subdir.mk b/cocos2dx/Release/text_input_node/subdir.mk deleted file mode 100644 index 82a3b07027..0000000000 --- a/cocos2dx/Release/text_input_node/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../text_input_node/CCIMEDispatcher.cpp \ -../text_input_node/CCTextFieldTTF.cpp - -OBJS += \ -./text_input_node/CCIMEDispatcher.o \ -./text_input_node/CCTextFieldTTF.o - -CPP_DEPS += \ -./text_input_node/CCIMEDispatcher.d \ -./text_input_node/CCTextFieldTTF.d - - -# Each subdirectory must supply rules for building sources it contributes -text_input_node/%.o: ../text_input_node/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/textures/subdir.mk b/cocos2dx/Release/textures/subdir.mk deleted file mode 100644 index 4f29b4769e..0000000000 --- a/cocos2dx/Release/textures/subdir.mk +++ /dev/null @@ -1,33 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../textures/CCTexture2D.cpp \ -../textures/CCTextureAtlas.cpp \ -../textures/CCTextureCache.cpp \ -../textures/CCTexturePVR.cpp - -OBJS += \ -./textures/CCTexture2D.o \ -./textures/CCTextureAtlas.o \ -./textures/CCTextureCache.o \ -./textures/CCTexturePVR.o - -CPP_DEPS += \ -./textures/CCTexture2D.d \ -./textures/CCTextureAtlas.d \ -./textures/CCTextureCache.d \ -./textures/CCTexturePVR.d - - -# Each subdirectory must supply rules for building sources it contributes -textures/%.o: ../textures/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/tileMap_parallax_nodes/subdir.mk b/cocos2dx/Release/tileMap_parallax_nodes/subdir.mk deleted file mode 100644 index fb0158ccaf..0000000000 --- a/cocos2dx/Release/tileMap_parallax_nodes/subdir.mk +++ /dev/null @@ -1,39 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../tileMap_parallax_nodes/CCParallaxNode.cpp \ -../tileMap_parallax_nodes/CCTMXLayer.cpp \ -../tileMap_parallax_nodes/CCTMXObjectGroup.cpp \ -../tileMap_parallax_nodes/CCTMXTiledMap.cpp \ -../tileMap_parallax_nodes/CCTMXXMLParser.cpp \ -../tileMap_parallax_nodes/CCTileMapAtlas.cpp - -OBJS += \ -./tileMap_parallax_nodes/CCParallaxNode.o \ -./tileMap_parallax_nodes/CCTMXLayer.o \ -./tileMap_parallax_nodes/CCTMXObjectGroup.o \ -./tileMap_parallax_nodes/CCTMXTiledMap.o \ -./tileMap_parallax_nodes/CCTMXXMLParser.o \ -./tileMap_parallax_nodes/CCTileMapAtlas.o - -CPP_DEPS += \ -./tileMap_parallax_nodes/CCParallaxNode.d \ -./tileMap_parallax_nodes/CCTMXLayer.d \ -./tileMap_parallax_nodes/CCTMXObjectGroup.d \ -./tileMap_parallax_nodes/CCTMXTiledMap.d \ -./tileMap_parallax_nodes/CCTMXXMLParser.d \ -./tileMap_parallax_nodes/CCTileMapAtlas.d - - -# Each subdirectory must supply rules for building sources it contributes -tileMap_parallax_nodes/%.o: ../tileMap_parallax_nodes/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/cocos2dx/Release/touch_dispatcher/subdir.mk b/cocos2dx/Release/touch_dispatcher/subdir.mk deleted file mode 100644 index 68a7f7ef4d..0000000000 --- a/cocos2dx/Release/touch_dispatcher/subdir.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -CPP_SRCS += \ -../touch_dispatcher/CCTouchDispatcher.cpp \ -../touch_dispatcher/CCTouchHandler.cpp - -OBJS += \ -./touch_dispatcher/CCTouchDispatcher.o \ -./touch_dispatcher/CCTouchHandler.o - -CPP_DEPS += \ -./touch_dispatcher/CCTouchDispatcher.d \ -./touch_dispatcher/CCTouchHandler.d - - -# Each subdirectory must supply rules for building sources it contributes -touch_dispatcher/%.o: ../touch_dispatcher/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' - g++ -DLINUX -I"/home/laschweinski/git/cocos2d-x/cocos2dx" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libfreetype2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/include" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libpng" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libxml2" -I"/home/laschweinski/git/cocos2d-x/cocos2dx/platform/third_party/linux/libjpeg" -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/post.sh b/post.sh index b7d9b1bac2..d6573ef609 100644 --- a/post.sh +++ b/post.sh @@ -1,8 +1,15 @@ #!/bin/bash -echo $1 $2 -test -e ../Debug/lib$1.so&& cp ../Debug/lib$1.so ../../lib/linux/Debug/lib$2.so -test -e ../Release/lib$1.so&& cp ../Release/lib$1.so ../../lib/linux/Release/lib$2.so - -test -e ../AndroidDebug/lib$1.so&& cp ../AndroidDebug/lib$1.so ../../lib/android/Debug/lib$2.so -test -e ../AndroidRelease/lib$1.so&& cp ../AndroidRelease/lib$1.so ../../lib/android/Release/lib$2.so +echo $1 $2 $3 +pwd +libDir=linux +modeDir=Debug +if echo $3|grep -E "Android"; then + libDir=android +fi +if echo $3|grep -E "Release"; then + modeDir=Release +fi +echo "mode: $modeDir" +echo "mode: $libDir" +test -e ../$3/lib$1.so&& cp ../$3/lib$1.so ../../../lib/$libDir/$modeDir/lib$2.so diff --git a/template/android/mycopy_files.sh b/template/android/mycopy_files.sh index edf3bd2686..5268f5560f 100644 --- a/template/android/mycopy_files.sh +++ b/template/android/mycopy_files.sh @@ -7,8 +7,9 @@ APP_DIR=`pwd`/$5 HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloWorld NDK_ROOT=$3 PACKAGE_PATH=$4 +projName=$5 -echo $APP_DIR +echo $APP_DIR $5 # xxx.yyy.zzz -> xxx/yyy/zzz convert_package_path_to_dir(){ @@ -31,6 +32,7 @@ move_files_into_android(){ mv $file $APP_DIR/android fi done + rm -r $APP_DIR/android/asset } #copy linux's @@ -42,19 +44,19 @@ move_files_into_linux(){ cp $file $APP_DIR/Linux fi done + + cp $HELLOWORLD_ROOT/Linux/postCompiled.sh $APP_DIR/Linux } #copy eclipse configures move_eclipse_configures_into(){ - for file in `ls -a $HELLOWORLD_ROOT/ | grep -E '\..*project' ` + for file in `ls -a $HELLOWORLD_ROOT/Linux/ | grep -E '\..*project' ` do - cp $HELLOWORLD_ROOT/$file $APP_DIR/ + cp $HELLOWORLD_ROOT/Linux/$file $APP_DIR/Linux/ done -} - -#copy shell script -copy_shells(){ - cp $HELLOWORLD_ROOT/postCompiled.sh $APP_DIR/ + mv $APP_DIR/Linux/.project $APP_DIR/Linux/.project1 + sed "s/HelloWorld/$projName/" $APP_DIR/Linux/.project1 > $APP_DIR/Linux/.project + rm $APP_DIR/Linux/.project1 } #copy main sources @@ -125,7 +127,6 @@ modify_layout(){ move_files_into_android move_files_into_linux move_eclipse_configures_into -copy_shells copy_cpp_h_from_helloworld copy_resouces copy_src_and_jni From 8f5c327937badc9056a63ce353423c5e886ee04d Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Wed, 7 Sep 2011 12:44:03 +0800 Subject: [PATCH 28/31] add all eclipse project files to the corresponding directory --- CocosDenshion/proj.linux/.cproject | 294 ++++++++++++++++++++ CocosDenshion/proj.linux/.project | 105 +++++++ HelloWorld/Linux/.cproject | 376 +++++++++++++++++++++++++ HelloWorld/Linux/.project | 95 +++++++ cocos2dx/proj.linux/.cproject | 422 +++++++++++++++++++++++++++++ cocos2dx/proj.linux/.project | 215 +++++++++++++++ 6 files changed, 1507 insertions(+) create mode 100644 CocosDenshion/proj.linux/.cproject create mode 100644 CocosDenshion/proj.linux/.project create mode 100644 HelloWorld/Linux/.cproject create mode 100644 HelloWorld/Linux/.project create mode 100644 cocos2dx/proj.linux/.cproject create mode 100644 cocos2dx/proj.linux/.project diff --git a/CocosDenshion/proj.linux/.cproject b/CocosDenshion/proj.linux/.cproject new file mode 100644 index 0000000000..ef37dd945a --- /dev/null +++ b/CocosDenshion/proj.linux/.cproject @@ -0,0 +1,294 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<?fileVersion 4.0.0?> + +<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> + <storageModule moduleId="org.eclipse.cdt.core.settings"> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1982681102"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1982681102" moduleId="org.eclipse.cdt.core.settings" name="Debug"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/Debug"/> + <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1982681102" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../../post.sh ${ProjName} cocosdenshion ${ConfigName}"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1982681102." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1290289406" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.1343594495" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/CocosDenshion/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.2041927999" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool id="cdt.managedbuild.tool.gnu.archiver.base.1293331295" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2092876171" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.2020537008" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.886209200" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1002280254" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1604049990" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1178240227" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.206236808" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.828037565" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.985313341" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.370598124" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1145844969" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> + <option defaultValue="true" id="gnu.c.link.option.shared.1822605485" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1767253018" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option id="gnu.cpp.link.option.libs.956474372" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="fmodex"/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.430688089" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1207468004" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1192863353" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.2047527740" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="android|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.509246766"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.509246766" moduleId="org.eclipse.cdt.core.settings" name="Release"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/Release"/> + <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.509246766" name="Release" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../../post.sh ${ProjName} cocosdenshion ${ConfigName}"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.release.509246766." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.305868874" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.506287391" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> + <builder buildPath="${workspace_loc:/CocosDenshion/Release}" id="cdt.managedbuild.target.gnu.builder.exe.release.1316417033" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> + <tool id="cdt.managedbuild.tool.gnu.archiver.base.1125358518" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.222121229" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> + <option id="gnu.cpp.compiler.exe.release.option.optimization.level.1962013303" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.release.option.debugging.level.2015755429" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1414683978" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1557365568" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1919066836" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> + <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1295172282" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.release.option.debugging.level.1006696632" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.92938039" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/third_party/fmod/api/inc}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.757092405" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.release.490094345" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> + <option defaultValue="true" id="gnu.c.link.option.shared.2114715478" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1107958294" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> + <option id="gnu.cpp.link.option.libs.1450744481" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="fmodex"/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.1840009551" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1952243970" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.86394856" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.895909947" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="android|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209" moduleId="org.eclipse.cdt.core.settings" name="AndroidDebug"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/AndroidDebug"/> + <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209" name="AndroidDebug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../../post.sh ${ProjName} cocosdenshion ${ConfigName}"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1982681102.1621062209." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1558765061" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.620879821" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/CocosDenshion/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.507120743" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.40387952" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.792840741" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.976541662" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.1307745860" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.438026184" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.2045722816" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1567615028" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.879455147" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.1476208622" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.554440625" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.260627685" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1900603638" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> + <option defaultValue="true" id="gnu.c.link.option.shared.1038390402" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.303615758" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option id="gnu.cpp.link.option.libs.1196370704" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="log"/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.1009537507" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.331207899" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1169174011" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.776530056" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="third_party|Linux|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575" moduleId="org.eclipse.cdt.core.settings" name="AndroidRelease"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/CocosDenshion"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/CocosDenshion/AndroidRelease"/> + <entry flags="RESOLVED" kind="libraryFile" name="CocosDenshion"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575" name="AndroidRelease" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move output libs to a specific libs" postbuildStep="sh ../../../post.sh ${ProjName} cocosdenshion ${ConfigName}"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.release.509246766.1769340575." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.885182269" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.1280043208" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> + <builder buildPath="${workspace_loc:/CocosDenshion/Release}" id="cdt.managedbuild.target.gnu.builder.exe.release.474969838" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.509102503" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1702337749" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> + <option id="gnu.cpp.compiler.exe.release.option.optimization.level.44964931" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.release.option.debugging.level.2138571216" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1983104201" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1493650421" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1390354356" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> + <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.923425099" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.release.option.debugging.level.1422867368" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.1675694653" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.858170289" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.release.168343506" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> + <option defaultValue="true" id="gnu.c.link.option.shared.2128797843" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.2083694616" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> + <option id="gnu.cpp.link.option.libs.1657717164" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="log"/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.21289368" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.258929024" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.1157573136" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.980689040" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="third_party|Linux|third_party/fmod/tools|third_party/fmod/fmoddesignerapi|third_party/fmod/examples|third_party/fmod/documentation|wophone|win32|proj.wophone|proj.win32|proj.airplay|iphone|airplay" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <project id="CocosDenshion.cdt.managedbuild.target.gnu.exe.346390339" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/> + </storageModule> + <storageModule moduleId="scannerConfiguration"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1982681102;cdt.managedbuild.config.gnu.exe.debug.1982681102.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1178240227;cdt.managedbuild.tool.gnu.c.compiler.input.370598124"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1982681102;cdt.managedbuild.config.gnu.exe.debug.1982681102.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2092876171;cdt.managedbuild.tool.gnu.cpp.compiler.input.1604049990"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.509246766;cdt.managedbuild.config.gnu.exe.release.509246766.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.1919066836;cdt.managedbuild.tool.gnu.c.compiler.input.757092405"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.509246766;cdt.managedbuild.config.gnu.exe.release.509246766.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.222121229;cdt.managedbuild.tool.gnu.cpp.compiler.input.1557365568"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + </storageModule> + <storageModule moduleId="refreshScope"/> +</cproject> diff --git a/CocosDenshion/proj.linux/.project b/CocosDenshion/proj.linux/.project new file mode 100644 index 0000000000..04957769c7 --- /dev/null +++ b/CocosDenshion/proj.linux/.project @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>CocosDenshion</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> + <triggers>clean,full,incremental,</triggers> + <arguments> + <dictionary> + <key>?name?</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.append_environment</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.autoBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildArguments</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildCommand</key> + <value>make</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildLocation</key> + <value>${workspace_loc:/CocosDenshion/Debug}</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.cleanBuildTarget</key> + <value>clean</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.contents</key> + <value>org.eclipse.cdt.make.core.activeConfigSettings</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableAutoBuild</key> + <value>false</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableCleanBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableFullBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.fullBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.stopOnError</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> + <value>true</value> + </dictionary> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> + <triggers>full,incremental,</triggers> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.cdt.core.cnature</nature> + <nature>org.eclipse.cdt.core.ccnature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> + </natures> + <linkedResources> + <link> + <name>Linux</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/Linux</locationURI> + </link> + <link> + <name>android</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/android</locationURI> + </link> + <link> + <name>include</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/include</locationURI> + </link> + <link> + <name>third_party</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/third_party</locationURI> + </link> + </linkedResources> +</projectDescription> diff --git a/HelloWorld/Linux/.cproject b/HelloWorld/Linux/.cproject new file mode 100644 index 0000000000..ca82a962ae --- /dev/null +++ b/HelloWorld/Linux/.cproject @@ -0,0 +1,376 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<?fileVersion 4.0.0?> + +<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> + <storageModule moduleId="org.eclipse.cdt.core.settings"> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1378309016"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1378309016" moduleId="org.eclipse.cdt.core.settings" name="Debug"> + <macros> + <stringMacro name="cocos2dx_loc" type="VALUE_TEXT" value="/home/laschweinski/git/cocos2d-x"/> + </macros> + <externalSettings/> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1378309016" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1378309016." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1538958685" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.519149464" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/HelloCocos2dx/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.533408716" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.archiver.base.610675027" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.986170120" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.513215504" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.354795965" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.577331571" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/cocos2dx""/> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.753894218" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1499791735" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1024548975" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.1846873676" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.624794682" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.141168982" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx"/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.1586206751" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1184297872" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1033696081" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"/> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1383466696" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option id="gnu.cpp.link.option.libs.1391251808" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="cocos2d"/> + <listOptionValue builtIn="false" value="z"/> + <listOptionValue builtIn="false" value="cocosdenshion"/> + </option> + <option id="gnu.cpp.link.option.paths.1730426040" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/lib/linux/Debug/""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.338357910" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1908755862" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.1360047451" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="wophone|win32|airplay|ios|android|android/jni" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.1261731462"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.1261731462" moduleId="org.eclipse.cdt.core.settings" name="Release"> + <macros> + <stringMacro name="cocos2dx_loc" type="VALUE_TEXT" value="/home/laschweinski/git/cocos2d-x"/> + </macros> + <externalSettings/> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.1261731462" name="Release" parent="cdt.managedbuild.config.gnu.exe.release"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.release.1261731462." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.1286487413" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.549294927" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> + <builder buildPath="${workspace_loc:/HelloCocos2dx/Release}" id="cdt.managedbuild.target.gnu.builder.exe.release.1313183802" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.archiver.base.151631864" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1347395052" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> + <option id="gnu.cpp.compiler.exe.release.option.optimization.level.1579660092" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.release.option.debugging.level.67257659" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1175073911" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/cocos2dx""/> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.1649765609" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.627062533" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1992070152" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> + <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.925598500" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.release.option.debugging.level.1434439101" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.92708570" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx"/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.1314682529" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1476095646" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Debug/" id="cdt.managedbuild.tool.gnu.c.linker.exe.release.1136815621" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"/> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -Wl,-rpath,${cocos2dx_loc}/lib/linux/Release" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1566686420" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> + <option id="gnu.cpp.link.option.libs.956118225" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="cocos2d"/> + <listOptionValue builtIn="false" value="z"/> + <listOptionValue builtIn="false" value="cocosdenshion"/> + </option> + <option id="gnu.cpp.link.option.paths.510724007" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/lib/linux/Release/""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.970027608" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.770212797" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.2041720683" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="wophone|win32|airplay|ios|android|android/jni" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448" moduleId="org.eclipse.cdt.core.settings" name="AndroidDebug"> + <macros> + <stringMacro name="cocos2dx_loc" type="VALUE_TEXT" value="/home/laschweinski/git/cocos2d-x"/> + </macros> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/HelloCocos2dx"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/HelloWorld"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/HelloCocos2dx/AndroidDebug"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/HelloWorld/AndroidDebug"/> + <entry flags="RESOLVED" kind="libraryFile" name="HelloCocos2dx"/> + <entry flags="RESOLVED" kind="libraryFile" name="HelloWorld"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448" name="AndroidDebug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move required lib into android/libs automatically" postbuildStep="sh ../postCompiled.sh ${ConfigName} ${ProjName} ${cocos2dx_loc}"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.891597002" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.1175507817" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/HelloCocos2dx/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.2103810488" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.998791186" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1818259119" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.647901347" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.1442997034" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1516129513" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/cocos2dx""/> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.1589537277" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="ANDROID"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.810275929" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.175957853" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.114873492" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.1551373981" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.449757136" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx"/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.1622166484" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="ANDROID"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.838160662" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.2118477626" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> + <option defaultValue="true" id="gnu.c.link.option.shared.152142838" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1254507739" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option id="gnu.cpp.link.option.libs.2115744134" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="cocos2d"/> + <listOptionValue builtIn="false" value="cocosdenshion"/> + </option> + <option id="gnu.cpp.link.option.paths.1036583050" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/lib/android/Debug/""/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.26636318" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.83157690" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.155839540" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.1547088128" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="wophone|win32|airplay|ios|Linux" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403" moduleId="org.eclipse.cdt.core.settings" name="AndroidRelease"> + <macros> + <stringMacro name="cocos2dx_loc" type="VALUE_TEXT" value="/home/laschweinski/git/cocos2d-x"/> + </macros> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/HelloCocos2dx"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/HelloWorld"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/HelloCocos2dx/AndroidRelease"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/HelloWorld/AndroidRelease"/> + <entry flags="RESOLVED" kind="libraryFile" name="HelloCocos2dx"/> + <entry flags="RESOLVED" kind="libraryFile" name="HelloWorld"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403" name="AndroidRelease" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move required lib into android/libs automatically" postbuildStep="sh ../postCompiled.sh ${ConfigName} ${ProjName} ${cocos2dx_loc}"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403." name="/" resourcePath=""> + <toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.952577400" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.400831122" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/HelloCocos2dx/Debug}" id="cdt.managedbuild.target.gnu.builder.exe.debug.2089617317" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.archiver.base.1512592708" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.942164708" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.1919445545" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.1865018121" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.661752474" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/cocos2dx""/> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.1175103885" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="ANDROID"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1074068007" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-gcc" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1116079203" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.2050135148" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.1078024265" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.2081737176" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/Classes}""/> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/CocosDenshion/include""/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/include"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx/platform"/> + <listOptionValue builtIn="false" value="${cocos2dx_loc}/cocos2dx"/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.262900511" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="ANDROID"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1941427790" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.756044676" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> + <option defaultValue="true" id="gnu.c.link.option.shared.549647408" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="arm-linux-androideabi-g++" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1769711845" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option id="gnu.cpp.link.option.libs.1975754001" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="cocos2d"/> + <listOptionValue builtIn="false" value="cocosdenshion"/> + </option> + <option id="gnu.cpp.link.option.paths.41168718" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> + <listOptionValue builtIn="false" value=""${cocos2dx_loc}/lib/android/Release/""/> + </option> + <option defaultValue="true" id="gnu.cpp.link.option.shared.1819279818" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.863158828" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1290961042" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.1011610564" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="wophone|win32|airplay|ios|Linux" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <project id="HelloCocos2dx.cdt.managedbuild.target.gnu.exe.1681361206" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/> + </storageModule> + <storageModule moduleId="refreshScope"/> + <storageModule moduleId="scannerConfiguration"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403;cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1116079203;cdt.managedbuild.tool.gnu.c.compiler.input.1941427790"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016;cdt.managedbuild.config.gnu.exe.debug.1378309016.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.986170120;cdt.managedbuild.tool.gnu.cpp.compiler.input.1499791735"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016;cdt.managedbuild.config.gnu.exe.debug.1378309016.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1024548975;cdt.managedbuild.tool.gnu.c.compiler.input.1184297872"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403;cdt.managedbuild.config.gnu.exe.debug.1378309016.1046894403.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.942164708;cdt.managedbuild.tool.gnu.cpp.compiler.input.1074068007"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1261731462;cdt.managedbuild.config.gnu.exe.release.1261731462.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1347395052;cdt.managedbuild.tool.gnu.cpp.compiler.input.627062533"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1261731462;cdt.managedbuild.config.gnu.exe.release.1261731462.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.1992070152;cdt.managedbuild.tool.gnu.c.compiler.input.1476095646"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448;cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1818259119;cdt.managedbuild.tool.gnu.cpp.compiler.input.810275929"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448;cdt.managedbuild.config.gnu.exe.debug.1378309016.708057448.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.175957853;cdt.managedbuild.tool.gnu.c.compiler.input.838160662"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + </storageModule> +</cproject> diff --git a/HelloWorld/Linux/.project b/HelloWorld/Linux/.project new file mode 100644 index 0000000000..dd7c417d4f --- /dev/null +++ b/HelloWorld/Linux/.project @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>HelloWorld</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> + <triggers>clean,full,incremental,</triggers> + <arguments> + <dictionary> + <key>?name?</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.append_environment</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.autoBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildArguments</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildCommand</key> + <value>make</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildLocation</key> + <value>${workspace_loc:/HelloCocos2dx/Debug}</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.cleanBuildTarget</key> + <value>clean</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.contents</key> + <value>org.eclipse.cdt.make.core.activeConfigSettings</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableAutoBuild</key> + <value>false</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableCleanBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableFullBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.fullBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.stopOnError</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> + <value>true</value> + </dictionary> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> + <triggers>full,incremental,</triggers> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.cdt.core.cnature</nature> + <nature>org.eclipse.cdt.core.ccnature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> + </natures> + <linkedResources> + <link> + <name>Classes</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/Classes</locationURI> + </link> + <link> + <name>android</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/android</locationURI> + </link> + </linkedResources> +</projectDescription> diff --git a/cocos2dx/proj.linux/.cproject b/cocos2dx/proj.linux/.cproject new file mode 100644 index 0000000000..23026871e6 --- /dev/null +++ b/cocos2dx/proj.linux/.cproject @@ -0,0 +1,422 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<?fileVersion 4.0.0?> + +<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> + <storageModule moduleId="org.eclipse.cdt.core.settings"> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.502995704"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.502995704" moduleId="org.eclipse.cdt.core.settings" name="Debug"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/cocos2dx-base"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/Debug"/> + <entry flags="RESOLVED" kind="libraryFile" name="cocos2dx-base"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.debug.502995704" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move all libs into the specific folder" postbuildStep="sh ../../../post.sh ${ProjName} cocos2d ${ConfigName}" preannouncebuildStep="" prebuildStep=""> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.502995704." name="/" resourcePath=""> + <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.debug.1381795813" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.debug.493450185" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/cocos2dx-base/Debug}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.debug.148088968" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.archiver.base.1953133549" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2063289710" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.1363689121" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.182720845" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1224978101" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libfreetype2}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libpng}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libxml2}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libjpeg}""/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.954744053" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <option id="gnu.cpp.compiler.option.warnings.allwarn.1620989551" name="All warnings (-Wall)" superClass="gnu.cpp.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.966305124" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.452615323" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.1079128222" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.703039623" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.500257262" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libjpeg}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libpng}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libfreetype2}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libxml2}""/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.1531770269" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <option id="gnu.c.compiler.option.warnings.allwarn.1446204747" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.697502414" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1826952880" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> + <option defaultValue="true" id="gnu.c.link.option.shared.978860202" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1429401820" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option defaultValue="true" id="gnu.cpp.link.option.shared.1563119377" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" value="true" valueType="boolean"/> + <option id="gnu.cpp.link.option.libs.1265275896" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="glfw"/> + <listOptionValue builtIn="false" value="GL"/> + </option> + <option id="gnu.cpp.link.option.soname.2012475291" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> + <option id="gnu.cpp.link.option.userobjs.1360463693" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libfreetype.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libcurl.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libxml2.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libpng.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libjpeg.a}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.620370737" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.debug.857245124" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.673491520" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="platform/airplay|platform (copy)|platform/wophone|particle_nodes/CCParticleSystemPoint.cpp|proj.wophone|platform/ios|proj.win32|platform/android|platform/win32|proj.airplay|platform/third_party" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.1270689208"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.1270689208" moduleId="org.eclipse.cdt.core.settings" name="Release"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/cocos2dx-base"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/Release"/> + <entry flags="RESOLVED" kind="libraryFile" name="cocos2dx-base"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.release.1270689208" name="Release" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move all libs into the specific folder" postbuildStep="sh ../../../post.sh ${ProjName} cocos2d ${ConfigName}" preannouncebuildStep="" prebuildStep=""> + <folderInfo id="cdt.managedbuild.config.gnu.exe.release.1270689208." name="/" resourcePath=""> + <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.release.1907181202" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> + <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.release.294936983" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> + <builder buildPath="${workspace_loc:/cocos2dx-base/Release}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.release.1974622272" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.archiver.base.958073991" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1336291657" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> + <option id="gnu.cpp.compiler.exe.release.option.optimization.level.1498871898" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.release.option.debugging.level.1985273019" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1571711257" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libfreetype2}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libpng}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libxml2}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libjpeg}""/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.1432872181" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1506297979" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.984270671" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> + <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1465078999" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.release.option.debugging.level.519142307" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.1095324729" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libjpeg}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libpng}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libfreetype2}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libxml2}""/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.1479035749" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="LINUX"/> + </option> + <option id="gnu.c.compiler.option.warnings.allwarn.2077117046" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.191330176" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.c.linker.exe.release.1375796638" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> + <option defaultValue="true" id="gnu.c.link.option.shared.10185576" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1659743626" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> + <option defaultValue="true" id="gnu.cpp.link.option.shared.1422544016" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" value="true" valueType="boolean"/> + <option id="gnu.cpp.link.option.libs.1080426232" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="glfw"/> + <listOptionValue builtIn="false" value="GL"/> + </option> + <option id="gnu.cpp.link.option.soname.1066283521" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> + <option id="gnu.cpp.link.option.userobjs.394630625" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libfreetype.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libcurl.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libxml2.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libpng.a}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libjpeg.a}""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.319060310" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.release.1254214954" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.43527139" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="platform/airplay|platform (copy)|platform/wophone|particle_nodes/CCParticleSystemPoint.cpp|proj.wophone|platform/ios|proj.win32|platform/android|platform/win32|proj.airplay|platform/third_party" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526" moduleId="org.eclipse.cdt.core.settings" name="AndroidDebug"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/cocos2dx-base"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/androidDebug"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/AndroidDebug"/> + <entry flags="RESOLVED" kind="libraryFile" name="cocos2dx-base"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526" name="AndroidDebug" parent="cdt.managedbuild.config.gnu.exe.debug" postannouncebuildStep="move all libs into the specific folder" postbuildStep="sh ../../../post.sh ${ProjName} cocos2d ${ConfigName}" preannouncebuildStep="" prebuildStep="arm-linux-androideabi-g++"> + <folderInfo id="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526." name="/" resourcePath=""> + <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.debug.55615126" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug"> + <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.debug.289263445" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/> + <builder buildPath="${workspace_loc:/cocos2dx-base/Debug}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.debug.1312719223" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/> + <tool id="cdt.managedbuild.tool.gnu.archiver.base.1051422256" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1024625311" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug"> + <option id="gnu.cpp.compiler.exe.debug.option.optimization.level.1890339371" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.debug.option.debugging.level.598132003" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.1360460941" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libjpeg}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libpng}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libxml2}""/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.1788036206" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="ANDROID"/> + <listOptionValue builtIn="false" value="USE_FILE32API"/> + </option> + <option id="gnu.cpp.compiler.option.warnings.allwarn.183315535" name="All warnings (-Wall)" superClass="gnu.cpp.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1920645677" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.870071077" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug"> + <option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.208937313" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.debug.option.debugging.level.1295665520" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.162614966" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libjpeg}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libpng}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libxml2}""/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.1608881664" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="ANDROID"/> + <listOptionValue builtIn="false" value="USE_FILE32API"/> + </option> + <option id="gnu.c.compiler.option.warnings.allwarn.905428726" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.132105612" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.843553932" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"> + <option defaultValue="true" id="gnu.c.link.option.shared.1868588214" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.698024693" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"> + <option defaultValue="true" id="gnu.cpp.link.option.shared.1270683226" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" value="true" valueType="boolean"/> + <option id="gnu.cpp.link.option.libs.1246376061" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="GLESv1_CM"/> + <listOptionValue builtIn="false" value="log"/> + <listOptionValue builtIn="false" value="z"/> + </option> + <option id="gnu.cpp.link.option.soname.1993381493" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> + <option id="gnu.cpp.link.option.userobjs.614766409" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> + <listOptionValue builtIn="false" value="../../platform/third_party/android/libraries/libcurl.a"/> + <listOptionValue builtIn="false" value="../../platform/third_party/android/libraries/libpng.a"/> + <listOptionValue builtIn="false" value="../../platform/third_party/android/libraries/libxml2.a"/> + <listOptionValue builtIn="false" value="../../platform/third_party/android/libraries/libjpeg.a"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1778443215" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.debug.780981785" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.658384811" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="platform/android/CCThread_android.cpp|platform/android/CCImage_android.cpp|particle_nodes/CCParticleSystemPoint.cpp|proj.wophone|platform/ios|proj.win32|platform/win32|proj.airplay|platform/third_party|platform/airplay|platform (copy)|platform/wophone|platform/android/CCFileUtils_android.cpp|platform/Linux" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047" moduleId="org.eclipse.cdt.core.settings" name="AndroidRelease"> + <externalSettings> + <externalSetting> + <entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/cocos2dx-base"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/Release"/> + <entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/cocos2dx-base/AndroidRelease"/> + <entry flags="RESOLVED" kind="libraryFile" name="cocos2dx-base"/> + </externalSetting> + </externalSettings> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="so" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047" name="AndroidRelease" parent="cdt.managedbuild.config.gnu.exe.release" postannouncebuildStep="move all libs into the specific folder" postbuildStep="sh ../../../post.sh ${ProjName} cocos2d ${ConfigName}" preannouncebuildStep="" prebuildStep=""> + <folderInfo id="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047." name="/" resourcePath=""> + <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.release.1122072085" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> + <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.release.890244578" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> + <builder buildPath="${workspace_loc:/cocos2dx-base/Release}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.release.867010258" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> + <tool id="cdt.managedbuild.tool.gnu.archiver.base.1061870949" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> + <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1742516529" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> + <option id="gnu.cpp.compiler.exe.release.option.optimization.level.289795823" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> + <option id="gnu.cpp.compiler.exe.release.option.debugging.level.824050416" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.include.paths.540511999" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libjpeg}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libpng}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libxml2}""/> + </option> + <option id="gnu.cpp.compiler.option.preprocessor.def.307242920" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="ANDROID"/> + <listOptionValue builtIn="false" value="USE_FILE32API"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1036435822" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/> + </tool> + <tool command="arm-linux-androideabi-gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.518312421" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release"> + <option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1174848276" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" valueType="enumerated"/> + <option id="gnu.c.compiler.exe.release.option.debugging.level.1788869001" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" value="gnu.c.debugging.level.none" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.917488555" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value="../../"/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/include}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libjpeg}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libpng}""/> + <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/android/libxml2}""/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.1513047276" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="ANDROID"/> + <listOptionValue builtIn="false" value="USE_FILE32API"/> + </option> + <option id="gnu.c.compiler.option.warnings.allwarn.506945632" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn" value="false" valueType="boolean"/> + <inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1602098267" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/> + </tool> + <tool id="cdt.managedbuild.tool.gnu.c.linker.exe.release.215019684" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"> + <option defaultValue="true" id="gnu.c.link.option.shared.438827097" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/> + </tool> + <tool command="arm-linux-androideabi-g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.1349397535" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release"> + <option defaultValue="true" id="gnu.cpp.link.option.shared.401181609" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" value="true" valueType="boolean"/> + <option id="gnu.cpp.link.option.libs.1515809509" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs"> + <listOptionValue builtIn="false" value="GLESv1_CM"/> + <listOptionValue builtIn="false" value="stdc++"/> + <listOptionValue builtIn="false" value="log"/> + <listOptionValue builtIn="false" value="z"/> + </option> + <option id="gnu.cpp.link.option.soname.2039202857" name="Shared object name (-Wl,-soname=)" superClass="gnu.cpp.link.option.soname" value="" valueType="string"/> + <option id="gnu.cpp.link.option.userobjs.857042882" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> + <listOptionValue builtIn="false" value="../../platform/third_party/android/libraries/libcurl.a"/> + <listOptionValue builtIn="false" value="../../platform/third_party/android/libraries/libpng.a"/> + <listOptionValue builtIn="false" value="../../platform/third_party/android/libraries/libxml2.a"/> + <listOptionValue builtIn="false" value="../../platform/third_party/android/libraries/libjpeg.a"/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.787272563" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.assembler.exe.release.809967425" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release"> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.498886492" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry excluding="platform/android/CCThread_android.cpp|platform/android/CCImage_android.cpp|particle_nodes/CCParticleSystemPoint.cpp|proj.wophone|platform/ios|proj.win32|platform/win32|proj.airplay|platform/third_party|platform/airplay|platform (copy)|platform/wophone|platform/android/CCFileUtils_android.cpp|platform/Linux" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <project id="cocos2dx-base.cdt.managedbuild.target.gnu.exe.634598992" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/> + </storageModule> + <storageModule moduleId="refreshScope" versionNumber="1"> + <resource resourceType="PROJECT" workspacePath="/cocos2dx-base"/> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/> + <storageModule moduleId="scannerConfiguration"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1270689208;cdt.managedbuild.config.gnu.exe.release.1270689208.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1336291657;cdt.managedbuild.tool.gnu.cpp.compiler.input.1506297979"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526;cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1024625311;cdt.managedbuild.tool.gnu.cpp.compiler.input.1920645677"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1270689208;cdt.managedbuild.config.gnu.exe.release.1270689208.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.984270671;cdt.managedbuild.tool.gnu.c.compiler.input.191330176"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047;cdt.managedbuild.config.gnu.exe.release.1270689208.232480047.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.518312421;cdt.managedbuild.tool.gnu.c.compiler.input.1602098267"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.502995704;cdt.managedbuild.config.gnu.exe.debug.502995704.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.452615323;cdt.managedbuild.tool.gnu.c.compiler.input.697502414"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.502995704;cdt.managedbuild.config.gnu.exe.debug.502995704.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2063289710;cdt.managedbuild.tool.gnu.cpp.compiler.input.966305124"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1270689208.232480047;cdt.managedbuild.config.gnu.exe.release.1270689208.232480047.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1742516529;cdt.managedbuild.tool.gnu.cpp.compiler.input.1036435822"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/> + </scannerConfigBuildInfo> + <scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526;cdt.managedbuild.config.gnu.exe.debug.502995704.1534655526.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.870071077;cdt.managedbuild.tool.gnu.c.compiler.input.132105612"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> + </scannerConfigBuildInfo> + </storageModule> +</cproject> diff --git a/cocos2dx/proj.linux/.project b/cocos2dx/proj.linux/.project new file mode 100644 index 0000000000..93752497b5 --- /dev/null +++ b/cocos2dx/proj.linux/.project @@ -0,0 +1,215 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>cocos2dx-base</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> + <triggers>clean,full,incremental,</triggers> + <arguments> + <dictionary> + <key>?name?</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.append_environment</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.autoBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildArguments</key> + <value></value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildCommand</key> + <value>make</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.buildLocation</key> + <value>${workspace_loc:/cocos2dx-base/Debug}</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.cleanBuildTarget</key> + <value>clean</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.contents</key> + <value>org.eclipse.cdt.make.core.activeConfigSettings</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableAutoBuild</key> + <value>false</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableCleanBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.enableFullBuild</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.fullBuildTarget</key> + <value>all</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.stopOnError</key> + <value>true</value> + </dictionary> + <dictionary> + <key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> + <value>true</value> + </dictionary> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> + <triggers>full,incremental,</triggers> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.cdt.core.cnature</nature> + <nature>org.eclipse.cdt.core.ccnature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> + </natures> + <linkedResources> + <link> + <name>CCCamera.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/CCCamera.cpp</locationURI> + </link> + <link> + <name>CCConfiguration.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/CCConfiguration.cpp</locationURI> + </link> + <link> + <name>CCConfiguration.h</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/CCConfiguration.h</locationURI> + </link> + <link> + <name>CCDirector.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/CCDirector.cpp</locationURI> + </link> + <link> + <name>CCDrawingPrimitives.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/CCDrawingPrimitives.cpp</locationURI> + </link> + <link> + <name>CCScheduler.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/CCScheduler.cpp</locationURI> + </link> + <link> + <name>actions</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/actions</locationURI> + </link> + <link> + <name>base_nodes</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/base_nodes</locationURI> + </link> + <link> + <name>cocoa</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/cocoa</locationURI> + </link> + <link> + <name>cocos2d.cpp</name> + <type>1</type> + <locationURI>PARENT-1-PROJECT_LOC/cocos2d.cpp</locationURI> + </link> + <link> + <name>effects</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/effects</locationURI> + </link> + <link> + <name>include</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/include</locationURI> + </link> + <link> + <name>keypad_dispatcher</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/keypad_dispatcher</locationURI> + </link> + <link> + <name>label_nodes</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/label_nodes</locationURI> + </link> + <link> + <name>layers_scenes_transitions_nodes</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/layers_scenes_transitions_nodes</locationURI> + </link> + <link> + <name>menu_nodes</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/menu_nodes</locationURI> + </link> + <link> + <name>misc_nodes</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/misc_nodes</locationURI> + </link> + <link> + <name>particle_nodes</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/particle_nodes</locationURI> + </link> + <link> + <name>platform</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/platform</locationURI> + </link> + <link> + <name>script_support</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/script_support</locationURI> + </link> + <link> + <name>sprite_nodes</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/sprite_nodes</locationURI> + </link> + <link> + <name>support</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/support</locationURI> + </link> + <link> + <name>text_input_node</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/text_input_node</locationURI> + </link> + <link> + <name>textures</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/textures</locationURI> + </link> + <link> + <name>tileMap_parallax_nodes</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/tileMap_parallax_nodes</locationURI> + </link> + <link> + <name>touch_dispatcher</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/touch_dispatcher</locationURI> + </link> + </linkedResources> +</projectDescription> From d016f05f92275a51bcbc2fa4fdb91b4a7f5fbd48 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Thu, 15 Sep 2011 18:24:41 +0800 Subject: [PATCH 29/31] use relative path instead of the workspace_loc --- cocos2dx/proj.linux/.cproject | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cocos2dx/proj.linux/.cproject b/cocos2dx/proj.linux/.cproject index 23026871e6..c4b28b15d3 100644 --- a/cocos2dx/proj.linux/.cproject +++ b/cocos2dx/proj.linux/.cproject @@ -121,7 +121,7 @@ <folderInfo id="cdt.managedbuild.config.gnu.exe.release.1270689208." name="/" resourcePath=""> <toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.exe.release.1907181202" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release"> <targetPlatform binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.exe.release.294936983" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/> - <builder buildPath="${workspace_loc:/cocos2dx-base/Release}" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.release.1974622272" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> + <builder buildPath="" errorParsers="org.eclipse.cdt.core.GmakeErrorParser;org.eclipse.cdt.core.CWDLocator" id="cdt.managedbuild.target.gnu.builder.exe.release.1974622272" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/> <tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.archiver.base.958073991" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/> <tool command="g++" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1336291657" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release"> <option id="gnu.cpp.compiler.exe.release.option.optimization.level.1498871898" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/> @@ -419,4 +419,7 @@ <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/> </scannerConfigBuildInfo> </storageModule> + <storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"> + <buildTargets/> + </storageModule> </cproject> From b9ce266ee32a53e7ab8e69c537c9be52e2c514a9 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Thu, 15 Sep 2011 18:25:06 +0800 Subject: [PATCH 30/31] the same as the last one --- tests/test.linux/.cproject | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/test.linux/.cproject b/tests/test.linux/.cproject index 8c1c262115..f46ca7e2fe 100644 --- a/tests/test.linux/.cproject +++ b/tests/test.linux/.cproject @@ -67,12 +67,12 @@ <listOptionValue builtIn="false" value="cocosdenshion"/> </option> <option id="gnu.cpp.link.option.paths.335055881" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/lib/linux/Debug}""/> + <listOptionValue builtIn="false" value="../../../lib/linux/Debug/"/> </option> <option id="gnu.cpp.link.option.userobjs.1021852674" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/Box2D/lib/linux/libBox2D.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/linux/libraries/libcurl.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/chipmunk/lib/linux/libchipmunk.a}""/> + <listOptionValue builtIn="false" value="../../../Box2D/lib/linux/libBox2D.a"/> + <listOptionValue builtIn="false" value="../../../cocos2dx/platform/third_party/linux/libraries/libcurl.a"/> + <listOptionValue builtIn="false" value="../../../chipmunk/lib/linux/libchipmunk.a"/> </option> <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.280033790" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> @@ -155,12 +155,12 @@ <listOptionValue builtIn="false" value="cocosdenshion"/> </option> <option id="gnu.cpp.link.option.paths.2032137429" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths"> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/lib/linux/Release}""/> + <listOptionValue builtIn="false" value="../../../lib/linux/Release/"/> </option> <option id="gnu.cpp.link.option.userobjs.1558283777" name="Other objects" superClass="gnu.cpp.link.option.userobjs" valueType="userObjs"> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/Box2D/lib/linux/libBox2D.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2dx-base/platform/third_party/linux/libraries/libcurl.a}""/> - <listOptionValue builtIn="false" value=""${workspace_loc:/cocos2d-x/chipmunk/lib/linux/libchipmunk.a}""/> + <listOptionValue builtIn="false" value="../../../Box2D/lib/linux/libBox2D.a"/> + <listOptionValue builtIn="false" value="../../../cocos2dx/platform/third_party/linux/libraries/libcurl.a"/> + <listOptionValue builtIn="false" value="../../../chipmunk/lib/linux/libchipmunk.a"/> </option> <inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1573978538" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input"> <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> From a4bfa976b35ccc957252a7a37f9957a8716d8683 Mon Sep 17 00:00:00 2001 From: laschweinski <laschweinski@laschweinski-desktop.(none)> Date: Fri, 16 Sep 2011 10:23:57 +0800 Subject: [PATCH 31/31] change the base resource path --- tests/AppDelegate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/AppDelegate.cpp b/tests/AppDelegate.cpp index b33d5c744b..4c8948e799 100644 --- a/tests/AppDelegate.cpp +++ b/tests/AppDelegate.cpp @@ -72,7 +72,7 @@ bool AppDelegate::initInstance() || ! pMainWnd->Create("cocos2d: tests", 480, 320, 480, 320)); //set the base resource folder pay attention to add "/" - CCFileUtils::setResourcePath("Res/"); + CCFileUtils::setResourcePath("../Res/"); #endif // CC_PLATFORM_LINUX